| | |
| | | #ifndef COREWINDOWAGENT_H |
| | | #define COREWINDOWAGENT_H |
| | | |
| | | #include <memory> |
| | | |
| | | #include <QtCore/QObject> |
| | | |
| | | #include <QWKCore/qwkcoreglobal.h> |
| | |
| | | Q_OBJECT |
| | | Q_DECLARE_PRIVATE(CoreWindowAgent) |
| | | public: |
| | | ~CoreWindowAgent(); |
| | | ~CoreWindowAgent() override; |
| | | |
| | | enum SystemButton { |
| | | Unknown, |
| | |
| | | void raise(); |
| | | |
| | | protected: |
| | | CoreWindowAgent(CoreWindowAgentPrivate &d, QObject *parent = nullptr); |
| | | explicit CoreWindowAgent(CoreWindowAgentPrivate &d, QObject *parent = nullptr); |
| | | |
| | | QScopedPointer<CoreWindowAgentPrivate> d_ptr; |
| | | const std::unique_ptr<CoreWindowAgentPrivate> d_ptr; |
| | | }; |
| | | |
| | | } |