cutter/src/CutterApplication.h

29 lines
467 B
C
Raw Normal View History

#ifndef CUTTERAPPLICATION_H
#define CUTTERAPPLICATION_H
#include <QEvent>
#include <QApplication>
#include "MainWindow.h"
class CutterApplication : public QApplication
{
Q_OBJECT
public:
CutterApplication(int &argc, char **argv);
2018-02-27 13:06:04 +00:00
~CutterApplication();
2018-02-27 13:06:04 +00:00
MainWindow *getMainWindow() { return mainWindow; }
protected:
bool event(QEvent *e);
private:
bool m_FileAlreadyDropped;
2018-02-27 13:06:04 +00:00
MainWindow *mainWindow;
};
#endif // CUTTERAPPLICATION_H