cutter/src/CutterApplication.h

55 lines
999 B
C
Raw Normal View History

#ifndef CUTTERAPPLICATION_H
#define CUTTERAPPLICATION_H
#include <QEvent>
#include <QApplication>
#include <QList>
#include <QProxyStyle>
#include "core/MainWindow.h"
class CutterApplication : public QApplication
{
Q_OBJECT
public:
CutterApplication(int &argc, char **argv);
2018-02-27 13:06:04 +00:00
~CutterApplication();
2018-03-21 20:32:32 +00:00
MainWindow *getMainWindow()
{
return mainWindow;
}
protected:
bool event(QEvent *e);
private:
/*!
* \brief Load and translations depending on Language settings
* \return true on success
*/
bool loadTranslations();
private:
bool m_FileAlreadyDropped;
2018-02-27 13:06:04 +00:00
MainWindow *mainWindow;
};
/*!
* \brief CutterProxyStyle is used to force shortcuts displaying in context menu
*/
class CutterProxyStyle : public QProxyStyle
{
Q_OBJECT
public:
/*!
* \brief it is enough to get notification about QMenu polishing to force shortcut displaying
*/
void polish(QWidget *widget) override;
};
#endif // CUTTERAPPLICATION_H