This repository has been archived on 2020-09-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
libs/qcd_utils/pult/cdpultwindow.h

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