summaryrefslogtreecommitdiffstats
path: root/qt4/encodewidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt4/encodewidget.h')
-rw-r--r--qt4/encodewidget.h22
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