qkeysequence.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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 QKEYSEQUENCE_H
  40. #define QKEYSEQUENCE_H
  41. #include <QtCore/qnamespace.h>
  42. #include <QtCore/qstring.h>
  43. #include <QtCore/qobjectdefs.h>
  44. QT_BEGIN_NAMESPACE
  45. #ifndef QT_NO_SHORTCUT
  46. class QKeySequence;
  47. /*****************************************************************************
  48. QKeySequence stream functions
  49. *****************************************************************************/
  50. #ifndef QT_NO_DATASTREAM
  51. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &in, const QKeySequence &ks);
  52. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &out, QKeySequence &ks);
  53. #endif
  54. #ifdef Q_QDOC
  55. void qt_set_sequence_auto_mnemonic(bool b);
  56. #endif
  57. class QVariant;
  58. class QKeySequencePrivate;
  59. Q_GUI_EXPORT Q_DECL_PURE_FUNCTION uint qHash(const QKeySequence &key, uint seed = 0) Q_DECL_NOTHROW;
  60. class Q_GUI_EXPORT QKeySequence
  61. {
  62. Q_GADGET
  63. public:
  64. enum StandardKey {
  65. UnknownKey,
  66. HelpContents,
  67. WhatsThis,
  68. Open,
  69. Close,
  70. Save,
  71. New,
  72. Delete,
  73. Cut,
  74. Copy,
  75. Paste,
  76. Undo,
  77. Redo,
  78. Back,
  79. Forward,
  80. Refresh,
  81. ZoomIn,
  82. ZoomOut,
  83. Print,
  84. AddTab,
  85. NextChild,
  86. PreviousChild,
  87. Find,
  88. FindNext,
  89. FindPrevious,
  90. Replace,
  91. SelectAll,
  92. Bold,
  93. Italic,
  94. Underline,
  95. MoveToNextChar,
  96. MoveToPreviousChar,
  97. MoveToNextWord,
  98. MoveToPreviousWord,
  99. MoveToNextLine,
  100. MoveToPreviousLine,
  101. MoveToNextPage,
  102. MoveToPreviousPage,
  103. MoveToStartOfLine,
  104. MoveToEndOfLine,
  105. MoveToStartOfBlock,
  106. MoveToEndOfBlock,
  107. MoveToStartOfDocument,
  108. MoveToEndOfDocument,
  109. SelectNextChar,
  110. SelectPreviousChar,
  111. SelectNextWord,
  112. SelectPreviousWord,
  113. SelectNextLine,
  114. SelectPreviousLine,
  115. SelectNextPage,
  116. SelectPreviousPage,
  117. SelectStartOfLine,
  118. SelectEndOfLine,
  119. SelectStartOfBlock,
  120. SelectEndOfBlock,
  121. SelectStartOfDocument,
  122. SelectEndOfDocument,
  123. DeleteStartOfWord,
  124. DeleteEndOfWord,
  125. DeleteEndOfLine,
  126. InsertParagraphSeparator,
  127. InsertLineSeparator,
  128. SaveAs,
  129. Preferences,
  130. Quit,
  131. FullScreen,
  132. Deselect,
  133. DeleteCompleteLine,
  134. Backspace,
  135. Cancel
  136. };
  137. Q_ENUM(StandardKey)
  138. enum SequenceFormat {
  139. NativeText,
  140. PortableText
  141. };
  142. QKeySequence();
  143. QKeySequence(const QString &key, SequenceFormat format = NativeText);
  144. QKeySequence(int k1, int k2 = 0, int k3 = 0, int k4 = 0);
  145. QKeySequence(const QKeySequence &ks);
  146. QKeySequence(StandardKey key);
  147. ~QKeySequence();
  148. int count() const;
  149. bool isEmpty() const;
  150. enum SequenceMatch {
  151. NoMatch,
  152. PartialMatch,
  153. ExactMatch
  154. };
  155. QString toString(SequenceFormat format = PortableText) const;
  156. static QKeySequence fromString(const QString &str, SequenceFormat format = PortableText);
  157. static QList<QKeySequence> listFromString(const QString &str, SequenceFormat format = PortableText);
  158. static QString listToString(const QList<QKeySequence> &list, SequenceFormat format = PortableText);
  159. SequenceMatch matches(const QKeySequence &seq) const;
  160. static QKeySequence mnemonic(const QString &text);
  161. static QList<QKeySequence> keyBindings(StandardKey key);
  162. #if QT_DEPRECATED_SINCE(5, 0)
  163. QT_DEPRECATED operator QString() const { return toString(QKeySequence::NativeText); }
  164. QT_DEPRECATED operator int() const { if (1 <= count()) return operator [](0); return 0; }
  165. #endif
  166. operator QVariant() const;
  167. int operator[](uint i) const;
  168. QKeySequence &operator=(const QKeySequence &other);
  169. #ifdef Q_COMPILER_RVALUE_REFS
  170. QKeySequence &operator=(QKeySequence &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  171. #endif
  172. void swap(QKeySequence &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  173. bool operator==(const QKeySequence &other) const;
  174. inline bool operator!= (const QKeySequence &other) const
  175. { return !(*this == other); }
  176. bool operator< (const QKeySequence &ks) const;
  177. inline bool operator> (const QKeySequence &other) const
  178. { return other < *this; }
  179. inline bool operator<= (const QKeySequence &other) const
  180. { return !(other < *this); }
  181. inline bool operator>= (const QKeySequence &other) const
  182. { return !(*this < other); }
  183. bool isDetached() const;
  184. private:
  185. static int decodeString(const QString &ks);
  186. static QString encodeString(int key);
  187. int assign(const QString &str);
  188. int assign(const QString &str, SequenceFormat format);
  189. void setKey(int key, int index);
  190. QKeySequencePrivate *d;
  191. friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &in, const QKeySequence &ks);
  192. friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &in, QKeySequence &ks);
  193. friend Q_GUI_EXPORT uint qHash(const QKeySequence &key, uint seed) Q_DECL_NOTHROW;
  194. friend class QShortcutMap;
  195. friend class QShortcut;
  196. public:
  197. typedef QKeySequencePrivate * DataPtr;
  198. inline DataPtr &data_ptr() { return d; }
  199. };
  200. Q_DECLARE_SHARED(QKeySequence)
  201. #ifndef QT_NO_DEBUG_STREAM
  202. Q_GUI_EXPORT QDebug operator<<(QDebug, const QKeySequence &);
  203. #endif
  204. #else
  205. class Q_GUI_EXPORT QKeySequence
  206. {
  207. public:
  208. QKeySequence() {}
  209. QKeySequence(int) {}
  210. };
  211. #endif // QT_NO_SHORTCUT
  212. QT_END_NAMESPACE
  213. #endif // QKEYSEQUENCE_H