mainwindow.h
上传用户:dsfsafq
上传日期:2022-06-05
资源大小:47k
文件大小:1k
源码类别:

多媒体

开发平台:

Visual C++

  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QtGui>
  4. #include "transcodingthread.h"
  5. namespace Ui
  6. {
  7.     class MainWindowClass;
  8. }
  9. class MainWindow : public QMainWindow
  10. {
  11.     Q_OBJECT
  12. public:
  13.     MainWindow(QWidget *parent = 0);
  14.     ~MainWindow();
  15. signals:
  16.     void updateProgress(int);
  17. private:
  18.     QString inputfile;
  19.     QString outputfile;
  20.     QProgressDialog *progress;
  21.     Ui::MainWindowClass *ui;
  22. private slots:
  23.     void on_lineInputFile_textChanged(QString );
  24.     void on_lineOutputFile_textChanged(QString );
  25.     void on_btnConvert_clicked();
  26.     void on_btnSelectOutput_clicked();
  27.     void on_btnLoadInput_clicked();
  28.     void updateProgress(QString);
  29. };
  30. #endif // MAINWINDOW_H