summaryrefslogtreecommitdiffstats
path: root/videogui.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2009-10-02 01:02:06 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2009-10-02 01:02:46 -0400
commit9805164f8879564e2db847c8b08377a7ace042b9 (patch)
tree0ae566e94c3490834932c8186126f1123db98239 /videogui.h
parentSizing fixes. (diff)
downloadAnyRip-9805164f8879564e2db847c8b08377a7ace042b9.tar.xz
AnyRip-9805164f8879564e2db847c8b08377a7ace042b9.zip
Better termination conditions. StatusLabel.
Diffstat (limited to 'videogui.h')
-rw-r--r--videogui.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/videogui.h b/videogui.h
index dfbb1d2..0986309 100644
--- a/videogui.h
+++ b/videogui.h
@@ -3,7 +3,7 @@
#include <QGroupBox>
#include "video.h"
-class QCheckBox;
+class StatusLabel;
class QComboBox;
class Video;
@@ -13,12 +13,12 @@ class VideoGui : public QGroupBox
public:
VideoGui(Video *video);
private:
- QCheckBox *m_imageCheck;
- QCheckBox *m_encodeCheck;
- QCheckBox *m_uploadCheck;
- QCheckBox *m_titleLoadCheck;
- QCheckBox *m_subtitleCheck;
- QCheckBox *m_posterCheck;
+ StatusLabel *m_imageStatus;
+ StatusLabel *m_encodeStatus;
+ StatusLabel *m_uploadStatus;
+ StatusLabel *m_titleLoadStatus;
+ StatusLabel *m_subtitleStatus;
+ StatusLabel *m_posterStatus;
QComboBox *m_titleSelector;
Video *m_video;
private slots: