mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-18 04:39:59 +01:00
working on chroma window
This commit is contained in:
@@ -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() {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user