88 Q_FLAGS(KeyboardModifiers MouseButtons) |
88 Q_FLAGS(KeyboardModifiers MouseButtons) |
89 Q_ENUMS(WindowType WindowState WindowModality WidgetAttribute ApplicationAttribute) |
89 Q_ENUMS(WindowType WindowState WindowModality WidgetAttribute ApplicationAttribute) |
90 Q_ENUMS(InputMethodHint) |
90 Q_ENUMS(InputMethodHint) |
91 Q_FLAGS(WindowFlags WindowStates InputMethodHints) |
91 Q_FLAGS(WindowFlags WindowStates InputMethodHints) |
92 Q_ENUMS(ConnectionType) |
92 Q_ENUMS(ConnectionType) |
|
93 #ifndef QT_NO_GESTURES |
|
94 Q_ENUMS(GestureState) |
|
95 #endif |
93 #endif // (defined(Q_MOC_RUN) || defined(QT_JAMBI_RUN)) |
96 #endif // (defined(Q_MOC_RUN) || defined(QT_JAMBI_RUN)) |
94 |
97 |
95 #if defined(Q_MOC_RUN) |
98 #if defined(Q_MOC_RUN) |
96 public: |
99 public: |
97 #endif |
100 #endif |
234 TextIncludeTrailingSpaces = 0x08000000, |
237 TextIncludeTrailingSpaces = 0x08000000, |
235 TextHideMnemonic = 0x8000, |
238 TextHideMnemonic = 0x8000, |
236 TextJustificationForced = 0x10000, |
239 TextJustificationForced = 0x10000, |
237 TextForceLeftToRight = 0x20000, |
240 TextForceLeftToRight = 0x20000, |
238 TextForceRightToLeft = 0x40000, |
241 TextForceRightToLeft = 0x40000, |
239 TextLongestVariant = 0x80000 |
242 TextLongestVariant = 0x80000, |
|
243 TextBypassShaping = 0x100000 |
240 |
244 |
241 #if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN) |
245 #if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN) |
242 ,SingleLine = TextSingleLine, |
246 ,SingleLine = TextSingleLine, |
243 DontClip = TextDontClip, |
247 DontClip = TextDontClip, |
244 ExpandTabs = TextExpandTabs, |
248 ExpandTabs = TextExpandTabs, |
945 #if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN) |
949 #if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN) |
946 Key_MediaPrev = Key_MediaPrevious, |
950 Key_MediaPrev = Key_MediaPrevious, |
947 #endif |
951 #endif |
948 Key_MediaNext = 0x01000083, |
952 Key_MediaNext = 0x01000083, |
949 Key_MediaRecord = 0x01000084, |
953 Key_MediaRecord = 0x01000084, |
|
954 Key_MediaPause = 0x1000085, |
|
955 Key_MediaTogglePlayPause = 0x1000086, |
950 Key_HomePage = 0x01000090, |
956 Key_HomePage = 0x01000090, |
951 Key_Favorites = 0x01000091, |
957 Key_Favorites = 0x01000091, |
952 Key_Search = 0x01000092, |
958 Key_Search = 0x01000092, |
953 Key_Standby = 0x01000093, |
959 Key_Standby = 0x01000093, |
954 Key_OpenUrl = 0x01000094, |
960 Key_OpenUrl = 0x01000094, |
1087 // Device keys |
1093 // Device keys |
1088 Key_Context1 = 0x01100000, |
1094 Key_Context1 = 0x01100000, |
1089 Key_Context2 = 0x01100001, |
1095 Key_Context2 = 0x01100001, |
1090 Key_Context3 = 0x01100002, |
1096 Key_Context3 = 0x01100002, |
1091 Key_Context4 = 0x01100003, |
1097 Key_Context4 = 0x01100003, |
1092 Key_Call = 0x01100004, |
1098 Key_Call = 0x01100004, // set absolute state to in a call (do not toggle state) |
1093 Key_Hangup = 0x01100005, |
1099 Key_Hangup = 0x01100005, // set absolute state to hang up (do not toggle state) |
1094 Key_Flip = 0x01100006, |
1100 Key_Flip = 0x01100006, |
1095 Key_Camera = 0x01100007, |
1101 Key_ToggleCallHangup = 0x01100007, // a toggle key for answering, or hanging up, based on current call state |
1096 Key_CameraFocus = 0x01100008, |
1102 Key_VoiceDial = 0x01100008, |
|
1103 Key_LastNumberRedial = 0x01100009, |
|
1104 |
|
1105 Key_Camera = 0x01100020, |
|
1106 Key_CameraFocus = 0x01100021, |
1097 |
1107 |
1098 Key_unknown = 0x01ffffff |
1108 Key_unknown = 0x01ffffff |
1099 }; |
1109 }; |
1100 |
1110 |
1101 enum ArrowType { |
1111 enum ArrowType { |
1746 DontStartGestureOnChildren = 0x01, |
1758 DontStartGestureOnChildren = 0x01, |
1747 ReceivePartialGestures = 0x02, |
1759 ReceivePartialGestures = 0x02, |
1748 IgnoredGesturesPropagateToParent = 0x04 |
1760 IgnoredGesturesPropagateToParent = 0x04 |
1749 }; |
1761 }; |
1750 Q_DECLARE_FLAGS(GestureFlags, GestureFlag) |
1762 Q_DECLARE_FLAGS(GestureFlags, GestureFlag) |
|
1763 #endif // QT_NO_GESTURES |
1751 |
1764 |
1752 enum NavigationMode |
1765 enum NavigationMode |
1753 { |
1766 { |
1754 NavigationModeNone, |
1767 NavigationModeNone, |
1755 NavigationModeKeypadTabOrder, |
1768 NavigationModeKeypadTabOrder, |
1775 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::ItemFlags) |
1788 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::ItemFlags) |
1776 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::MatchFlags) |
1789 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::MatchFlags) |
1777 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::TextInteractionFlags) |
1790 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::TextInteractionFlags) |
1778 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::InputMethodHints) |
1791 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::InputMethodHints) |
1779 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::TouchPointStates) |
1792 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::TouchPointStates) |
|
1793 #ifndef QT_NO_GESTURES |
1780 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::GestureFlags) |
1794 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::GestureFlags) |
|
1795 #endif |
1781 |
1796 |
1782 typedef bool (*qInternalCallback)(void **); |
1797 typedef bool (*qInternalCallback)(void **); |
1783 |
1798 |
1784 class Q_CORE_EXPORT QInternal { |
1799 class Q_CORE_EXPORT QInternal { |
1785 public: |
1800 public: |