This commit is contained in:
lostjared
2017-02-01 14:49:31 -08:00
parent 3f6d473b10
commit 3536e67c72
2 changed files with 12 additions and 0 deletions

View File

@@ -4,10 +4,20 @@ CaptureCamera::CaptureCamera(QWidget *parent) : QDialog(parent) {
setFixedSize(640, 480);
setWindowTitle("Capture from Webcam");
setWindowIcon(QPixmap(":/images/icon.png"));
createControls();
}
void CaptureCamera::createControls() {
}
CaptureVideo::CaptureVideo(QWidget *parent) : QDialog(parent) {
setFixedSize(640, 480);
setWindowTitle(("Capture from Video"));
setWindowIcon(QPixmap(":/images/icon.png"));
createControls();
}
void CaptureVideo::createControls() {
}

View File

@@ -8,12 +8,14 @@ class CaptureCamera : public QDialog {
Q_OBJECT
public:
CaptureCamera(QWidget *parent = 0);
void createControls();
};
class CaptureVideo : public QDialog {
Q_OBJECT
public:
CaptureVideo(QWidget *parent = 0);
void createControls();
};