summaryrefslogtreecommitdiffstats
path: root/mainwindow.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2009-09-26 22:25:02 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2009-09-26 22:25:02 -0400
commit2f0ace0e367489eb20a75a69c95d463fcb04830f (patch)
tree0d84316b9ecb04bc0becc8670e55bb7d946f33ab /mainwindow.h
parentMore HandBrake progress (diff)
downloadAnyRip-2f0ace0e367489eb20a75a69c95d463fcb04830f.tar.xz
AnyRip-2f0ace0e367489eb20a75a69c95d463fcb04830f.zip
More gui work and dvd loading.
Diffstat (limited to 'mainwindow.h')
-rw-r--r--mainwindow.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/mainwindow.h b/mainwindow.h
index cc78ddd..18ac521 100644
--- a/mainwindow.h
+++ b/mainwindow.h
@@ -2,6 +2,7 @@
#define MAINWINDOW_H
#include <QWidget>
+#include <QMap>
#include "dvddrive.h"
class QVBoxLayout;
class QPushButton;
@@ -17,13 +18,10 @@ public:
private:
QVBoxLayout *m_videoGuis;
QVBoxLayout *m_jobGuis;
- QPushButton *m_currentlyInserted;
VideoQueue *m_queue;
void addVideo(Video *video);
private slots:
- void dvdAdded();
- void dvdRemoved();
- void newVideoFromDVD();
+ void newVideoFromDVD(QString name, QMap<int, QString> titles);
void runningJob(Job *job);
void completedJob(bool success);
};