mainwindow.h
上传用户:dsfsafq
上传日期:2022-06-05
资源大小:47k
文件大小:1k
- #ifndef MAINWINDOW_H
- #define MAINWINDOW_H
- #include <QtGui>
- #include "transcodingthread.h"
- namespace Ui
- {
- class MainWindowClass;
- }
- class MainWindow : public QMainWindow
- {
- Q_OBJECT
- public:
- MainWindow(QWidget *parent = 0);
- ~MainWindow();
- signals:
- void updateProgress(int);
- private:
- QString inputfile;
- QString outputfile;
- QProgressDialog *progress;
- Ui::MainWindowClass *ui;
- private slots:
- void on_lineInputFile_textChanged(QString );
- void on_lineOutputFile_textChanged(QString );
- void on_btnConvert_clicked();
- void on_btnSelectOutput_clicked();
- void on_btnLoadInput_clicked();
- void updateProgress(QString);
- };
- #endif // MAINWINDOW_H