X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fqt4%2Fqt4.hpp;h=f9a46636caed4c609cb662f9136fd7e29cc7f85c;hb=2573062f8b833f39b2d528617bf52f0ed77125fc;hp=2a0e00420523594bcb04a4d6ece8af79e46f20a9;hpb=747e569007af4f30ccf147873a01dd30ea16f7de;p=vlc diff --git a/modules/gui/qt4/qt4.hpp b/modules/gui/qt4/qt4.hpp old mode 100644 new mode 100755 index 2a0e004205..f9a46636ca --- a/modules/gui/qt4/qt4.hpp +++ b/modules/gui/qt4/qt4.hpp @@ -48,6 +48,19 @@ class DialogsProvider; class VideoWidget; class QSettings; +#if defined(Q_WS_WIN) +#include + +class WinQtApp : public QApplication +{ +public: + WinQtApp ( int & argc, char ** argv, bool GUIenabled ) : QApplication( argc, argv, GUIenabled ) {} + ~WinQtApp() {} +protected: + bool winEventFilter(MSG *msg, long *result); +}; +#endif /* Q_WS_WIN */ + struct intf_sys_t { QApplication *p_app;