diff options
author | sr55 <[email protected]> | 2011-06-20 14:48:07 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-06-20 14:48:07 +0000 |
commit | 2625067e6983ff27d139352178662926020d37d3 (patch) | |
tree | 0c5109b384e207a24f58c1fbbf38fbf4131f3964 /qt4/qhandbrakewizard.h | |
parent | e0c8edc314676abedea13620f017f43e01788077 (diff) |
Remove the qt4 directory. Nothing useful has come from this code and too much time has passed with no-one dedicating the time it requires to be useful.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4066 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'qt4/qhandbrakewizard.h')
-rw-r--r-- | qt4/qhandbrakewizard.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/qt4/qhandbrakewizard.h b/qt4/qhandbrakewizard.h deleted file mode 100644 index ea4de6263..000000000 --- a/qt4/qhandbrakewizard.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef QHANDBRAKEWIZARD_H -#define QHANDBRAKEWIZARD_H - -#include <QtGui> - -typedef class QHandBrake; -typedef class FaderWidget; -typedef class ScanWidget; -typedef class EncodeWidget; - -class QHandBrakeWizard : public QStackedWidget -{ - Q_OBJECT -public: - QHandBrakeWizard(QStackedWidget *parent = 0); - -public slots: - void activateScanPage(); - void activateEncodePage(); - - void fadeInWidget(QWidget *); - -private: - QPointer<QHandBrake> qhb; - QPointer<FaderWidget> faderWidget; - QPointer<ScanWidget> scanWidget; - QPointer<EncodeWidget> encodeWidget; -}; - -class Magic : public QObject -{ - Q_OBJECT -public: - Magic(QWidget *w, QHandBrakeWizard *q, QObject *p = 0); - -protected: - bool eventFilter(QObject *o, QEvent *e); - QWidget *m; - - friend class QHandBrakeWizard; - QHandBrakeWizard *qm; -}; - -#endif // QHANDBRAKEWIZARD_H |