mirror of
https://github.com/JDM170/radio_recorder
synced 2025-12-10 05:57:20 +07:00
Initial
This commit is contained in:
35
mainwindow.h
Normal file
35
mainwindow.h
Normal file
@@ -0,0 +1,35 @@
|
||||
#ifndef MAINWINDOW_H
|
||||
#define MAINWINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QProcess>
|
||||
#include <QFileDialog>
|
||||
//#include <QMessageBox>
|
||||
|
||||
namespace Ui {
|
||||
class MainWindow;
|
||||
}
|
||||
|
||||
class MainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MainWindow(QWidget *parent = 0);
|
||||
~MainWindow();
|
||||
|
||||
private:
|
||||
QString secondToTime(int);
|
||||
|
||||
private slots:
|
||||
void on_pushButton_clicked();
|
||||
void slotStartedStdout();
|
||||
void slotFinishedStdout(int);
|
||||
|
||||
private:
|
||||
Ui::MainWindow *ui;
|
||||
QProcess *my_proc;
|
||||
// QMessageBox *box;
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_H
|
||||
Reference in New Issue
Block a user