adding dialog windows

This commit is contained in:
lostjared
2017-02-01 14:44:26 -08:00
parent 6527ebf2bb
commit 3f6d473b10
5 changed files with 38 additions and 3 deletions

View File

@@ -1 +1,13 @@
#include "new_dialog.h"
CaptureCamera::CaptureCamera(QWidget *parent) : QDialog(parent) {
setFixedSize(640, 480);
setWindowTitle("Capture from Webcam");
setWindowIcon(QPixmap(":/images/icon.png"));
}
CaptureVideo::CaptureVideo(QWidget *parent) : QDialog(parent) {
setFixedSize(640, 480);
setWindowTitle(("Capture from Video"));
setWindowIcon(QPixmap(":/images/icon.png"));
}