qguiapplication.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QGUIAPPLICATION_H
  40. #define QGUIAPPLICATION_H
  41. #include <QtCore/qcoreapplication.h>
  42. #include <QtGui/qwindowdefs.h>
  43. #include <QtGui/qinputmethod.h>
  44. #include <QtCore/qlocale.h>
  45. #include <QtCore/qpoint.h>
  46. #include <QtCore/qsize.h>
  47. QT_BEGIN_NAMESPACE
  48. class QSessionManager;
  49. class QGuiApplicationPrivate;
  50. class QPlatformNativeInterface;
  51. class QPlatformIntegration;
  52. class QPalette;
  53. class QScreen;
  54. class QStyleHints;
  55. #if defined(qApp)
  56. #undef qApp
  57. #endif
  58. #define qApp (static_cast<QGuiApplication *>(QCoreApplication::instance()))
  59. #if defined(qGuiApp)
  60. #undef qGuiApp
  61. #endif
  62. #define qGuiApp (static_cast<QGuiApplication *>(QCoreApplication::instance()))
  63. class Q_GUI_EXPORT QGuiApplication : public QCoreApplication
  64. {
  65. Q_OBJECT
  66. Q_PROPERTY(QIcon windowIcon READ windowIcon WRITE setWindowIcon)
  67. Q_PROPERTY(QString applicationDisplayName READ applicationDisplayName WRITE setApplicationDisplayName)
  68. Q_PROPERTY(QString desktopFileName READ desktopFileName WRITE setDesktopFileName)
  69. Q_PROPERTY(Qt::LayoutDirection layoutDirection READ layoutDirection WRITE setLayoutDirection NOTIFY layoutDirectionChanged)
  70. Q_PROPERTY(QString platformName READ platformName STORED false)
  71. Q_PROPERTY(bool quitOnLastWindowClosed READ quitOnLastWindowClosed WRITE setQuitOnLastWindowClosed)
  72. Q_PROPERTY(QScreen *primaryScreen READ primaryScreen NOTIFY primaryScreenChanged STORED false)
  73. public:
  74. #ifdef Q_QDOC
  75. QGuiApplication(int &argc, char **argv);
  76. #else
  77. QGuiApplication(int &argc, char **argv, int = ApplicationFlags);
  78. #endif
  79. virtual ~QGuiApplication();
  80. static void setApplicationDisplayName(const QString &name);
  81. static QString applicationDisplayName();
  82. static void setDesktopFileName(const QString &name);
  83. static QString desktopFileName();
  84. static QWindowList allWindows();
  85. static QWindowList topLevelWindows();
  86. static QWindow *topLevelAt(const QPoint &pos);
  87. static void setWindowIcon(const QIcon &icon);
  88. static QIcon windowIcon();
  89. static QString platformName();
  90. static QWindow *modalWindow();
  91. static QWindow *focusWindow();
  92. static QObject *focusObject();
  93. static QScreen *primaryScreen();
  94. static QList<QScreen *> screens();
  95. qreal devicePixelRatio() const;
  96. #ifndef QT_NO_CURSOR
  97. static QCursor *overrideCursor();
  98. static void setOverrideCursor(const QCursor &);
  99. static void changeOverrideCursor(const QCursor &);
  100. static void restoreOverrideCursor();
  101. #endif
  102. static QFont font();
  103. static void setFont(const QFont &);
  104. #ifndef QT_NO_CLIPBOARD
  105. static QClipboard *clipboard();
  106. #endif
  107. static QPalette palette();
  108. static void setPalette(const QPalette &pal);
  109. static Qt::KeyboardModifiers keyboardModifiers();
  110. static Qt::KeyboardModifiers queryKeyboardModifiers();
  111. static Qt::MouseButtons mouseButtons();
  112. static void setLayoutDirection(Qt::LayoutDirection direction);
  113. static Qt::LayoutDirection layoutDirection();
  114. static inline bool isRightToLeft() { return layoutDirection() == Qt::RightToLeft; }
  115. static inline bool isLeftToRight() { return layoutDirection() == Qt::LeftToRight; }
  116. static QStyleHints *styleHints();
  117. static void setDesktopSettingsAware(bool on);
  118. static bool desktopSettingsAware();
  119. static QInputMethod *inputMethod();
  120. static QPlatformNativeInterface *platformNativeInterface();
  121. static QFunctionPointer platformFunction(const QByteArray &function);
  122. static void setQuitOnLastWindowClosed(bool quit);
  123. static bool quitOnLastWindowClosed();
  124. static Qt::ApplicationState applicationState();
  125. static int exec();
  126. bool notify(QObject *, QEvent *) Q_DECL_OVERRIDE;
  127. #ifndef QT_NO_SESSIONMANAGER
  128. // session management
  129. bool isSessionRestored() const;
  130. QString sessionId() const;
  131. QString sessionKey() const;
  132. bool isSavingSession() const;
  133. static bool isFallbackSessionManagementEnabled();
  134. static void setFallbackSessionManagementEnabled(bool);
  135. #endif
  136. static void sync();
  137. Q_SIGNALS:
  138. void fontDatabaseChanged();
  139. void screenAdded(QScreen *screen);
  140. void screenRemoved(QScreen *screen);
  141. void primaryScreenChanged(QScreen *screen);
  142. void lastWindowClosed();
  143. void focusObjectChanged(QObject *focusObject);
  144. void focusWindowChanged(QWindow *focusWindow);
  145. void applicationStateChanged(Qt::ApplicationState state);
  146. void layoutDirectionChanged(Qt::LayoutDirection direction);
  147. #ifndef QT_NO_SESSIONMANAGER
  148. void commitDataRequest(QSessionManager &sessionManager);
  149. void saveStateRequest(QSessionManager &sessionManager);
  150. #endif
  151. void paletteChanged(const QPalette &pal);
  152. protected:
  153. bool event(QEvent *) Q_DECL_OVERRIDE;
  154. bool compressEvent(QEvent *, QObject *receiver, QPostEventList *) Q_DECL_OVERRIDE;
  155. QGuiApplication(QGuiApplicationPrivate &p);
  156. private:
  157. Q_DISABLE_COPY(QGuiApplication)
  158. Q_DECLARE_PRIVATE(QGuiApplication)
  159. Q_PRIVATE_SLOT(d_func(), void _q_updateFocusObject(QObject *object))
  160. #ifndef QT_NO_GESTURES
  161. friend class QGestureManager;
  162. #endif
  163. friend class QFontDatabasePrivate;
  164. friend class QPlatformIntegration;
  165. #ifndef QT_NO_SESSIONMANAGER
  166. friend class QPlatformSessionManager;
  167. #endif
  168. };
  169. QT_END_NAMESPACE
  170. #endif // QGUIAPPLICATION_H