summaryrefslogtreecommitdiffstats
path: root/qt4/encodewidget.h
blob: 869dea5e1e9f17f9435f378685b3dd619de13316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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