Qx v0.5.7
Qt Extensions Library
Loading...
Searching...
No Matches
qx-winguievent.h
1#ifndef QX_WINGUIEVENT_H
2#define QX_WINGUIEVENT_H
3
4// Shared Lib Support
5#include "qx/windows-gui/qx_windows-gui_export.h"
6
7// Qt Includes
8#include <QEvent>
9
10namespace Qx
11{
12
13class QX_WINDOWS_GUI_EXPORT WinGuiEvent : public QEvent
14{
15//-Class Members------------------------------------------------------------------------------------------------------
16public:
17 // Types
18 static inline const int TaskbarButtonCreated = QEvent::registerEventType();
19
20//-Constructor-------------------------------------------------------------------------------------------------------
21public:
22 explicit WinGuiEvent(int type);
23};
24
25}
26
27#endif // QX_WINGUIEVENT_H
The WinGuiEvent class encapsulates messages that are sent directly to an application window by the sy...
Definition qx-winguievent.h:14
The Qx namespace is the main namespace through which all non-global functionality of the Qx library i...
Definition qx-processwaiter.cpp:5
int registerEventType(int hint)