* hide start screen when opening with project file * added project icon file to bundle and file type association to plist * listen for file open events from double click or drag and drop * fixed crashes in window handling
16 lines
229 B
C++
16 lines
229 B
C++
#ifndef QT_APPLICATION_H
|
|
#define QT_APPLICATION_H
|
|
|
|
#include <QApplication>
|
|
|
|
class QtApplication
|
|
: public QApplication
|
|
{
|
|
public:
|
|
QtApplication(int& argc, char** argv);
|
|
|
|
bool event(QEvent *event);
|
|
};
|
|
|
|
#endif // QT_APPLICATION_H
|