34 lines
710 B
C++
34 lines
710 B
C++
#ifndef CDPULTWINDOW_H
|
|
#define CDPULTWINDOW_H
|
|
|
|
#include "emainwindow.h"
|
|
|
|
|
|
namespace Ui {
|
|
class CDPultWindow;
|
|
}
|
|
|
|
class CDPultWindow : public EMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CDPultWindow(QWidget *parent = 0);
|
|
~CDPultWindow();
|
|
|
|
private:
|
|
void closeEvent(QCloseEvent * );
|
|
void timerEvent(QTimerEvent *);
|
|
void reset(bool full = false);
|
|
bool load(const QString & path);
|
|
bool save(const QString & path);
|
|
void loadingSession(QPIConfig & conf);
|
|
void savingSession(QPIConfig & conf);
|
|
void addToErrorList(QString msg);
|
|
QString loadFilter() {return "CD file(*.dat)";}
|
|
QString saveFilter() {return "CD file(*.dat)";}
|
|
Ui::CDPultWindow *ui;
|
|
};
|
|
|
|
#endif // CDPULTWINDOW_H
|