working on chroma window

This commit is contained in:
lostjared
2018-11-07 11:32:11 -08:00
parent 073293416c
commit ffd8f851b5
5 changed files with 29 additions and 0 deletions

View File

@@ -3,9 +3,19 @@
ChromaWindow::ChromaWindow(QWidget *parent) : QDialog(parent) {
setFixedSize(800, 600);
setWindowTitle(tr("Chroma Key"));
setWindowIcon(QPixmap(":/images/icon.png"));
createControls();
color_dialog = new QColorDialog(this);
}
void ChromaWindow::createControls() {
button_select = new QPushButton("Select Color", this);
connect(button_select, SIGNAL(clicked()), this, SLOT(openColorSelect()));
}
void ChromaWindow::openColorSelect() {
}