diff options
author | clee <[email protected]> | 2007-03-29 09:31:13 +0000 |
---|---|---|
committer | clee <[email protected]> | 2007-03-29 09:31:13 +0000 |
commit | ceb981ea2c7406fac18dee17382976428a12b374 (patch) | |
tree | d8f421576aff6d75e0e4e82e2a3833437af2233b /qt4/encodewidget.h | |
parent | 42b83d67aac7b196b636f8d3b77be5017676fa3b (diff) |
Importing the first (very much not-yet-ready-for-primetime) version of the Qt4 GUI for HandBrake into trunk.
Note: This is NOT fit for release yet.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@462 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'qt4/encodewidget.h')
-rw-r--r-- | qt4/encodewidget.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/qt4/encodewidget.h b/qt4/encodewidget.h new file mode 100644 index 000000000..869dea5e1 --- /dev/null +++ b/qt4/encodewidget.h @@ -0,0 +1,22 @@ +#ifndef ENCODEWIDGET_H +#define ENCODEWIDGET_H + +#include <QtGui> + +#include "ui_encodewidget.h" + +class EncodeWidget : public QWidget, private Ui::EncodeWidget +{ + Q_OBJECT +public: + EncodeWidget( QWidget *parent = 0 ); + +signals: + void convert(); + +public slots: + void setModel( QStandardItemModel *m ); + void changed(); +}; + +#endif // ENCODEWIDGET_H |