Changeset 846 for trunk/src/corelib/global/qnamespace.h
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/corelib/global/qnamespace.h
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 201 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation ([email protected]) … … 91 91 Q_FLAGS(WindowFlags WindowStates InputMethodHints) 92 92 Q_ENUMS(ConnectionType) 93 94 95 96 93 97 #endif // (defined(Q_MOC_RUN) || defined(QT_JAMBI_RUN)) 94 98 … … 147 151 LeftButton = 0x00000001, 148 152 RightButton = 0x00000002, 149 MidButton = 0x00000004, 153 MidButton = 0x00000004, // ### Qt 5: remove me 154 MiddleButton = MidButton, 150 155 XButton1 = 0x00000008, 151 156 XButton2 = 0x00000010, … … 236 241 TextForceLeftToRight = 0x20000, 237 242 TextForceRightToLeft = 0x40000, 238 TextLongestVariant = 0x80000 243 TextLongestVariant = 0x80000, 244 TextBypassShaping = 0x100000 239 245 240 246 #if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN) … … 503 509 WA_MergeSoftkeysRecursively = 125, 504 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 505 529 // Add new attributes before this line 506 530 WA_AttributeCount … … 518 542 AA_MacDontSwapCtrlAndMeta = 7, 519 543 AA_S60DontConstructApplicationPanes = 8, 544 520 545 521 546 // Add new attributes before this line … … 936 961 Key_MediaNext = 0x01000083, 937 962 Key_MediaRecord = 0x01000084, 963 964 938 965 Key_HomePage = 0x01000090, 939 966 Key_Favorites = 0x01000091, … … 1052 1079 Key_ContrastAdjust = 0x0100010d, 1053 1080 1081 1082 1083 1054 1084 Key_MediaLast = 0x0100ffff, 1055 1085 … … 1075 1105 Key_Context3 = 0x01100002, 1076 1106 Key_Context4 = 0x01100003, 1077 Key_Call = 0x01100004, 1078 Key_Hangup = 0x01100005, 1107 Key_Call = 0x01100004, 1108 Key_Hangup = 0x01100005, 1079 1109 Key_Flip = 0x01100006, 1110 1111 1112 1113 1114 1115 1080 1116 1081 1117 Key_unknown = 0x01ffffff … … 1238 1274 OpenHandCursor, 1239 1275 ClosedHandCursor, 1240 LastCursor = ClosedHandCursor, 1276 DragCopyCursor, 1277 DragMoveCursor, 1278 DragLinkCursor, 1279 LastCursor = DragLinkCursor, 1241 1280 BitmapCursor = 24, 1242 1281 CustomCursor = 25 … … 1535 1574 enum LayoutDirection { 1536 1575 LeftToRight, 1537 RightToLeft 1576 RightToLeft, 1577 LayoutDirectionAuto 1538 1578 }; 1539 1579 … … 1702 1742 Q_DECLARE_FLAGS(TouchPointStates, TouchPointState) 1703 1743 1744 1704 1745 enum GestureState 1705 1746 { … … 1727 1768 { 1728 1769 DontStartGestureOnChildren = 0x01, 1729 ReceivePartialGestures = 0x02 1770 ReceivePartialGestures = 0x02, 1771 IgnoredGesturesPropagateToParent = 0x04 1730 1772 }; 1731 1773 Q_DECLARE_FLAGS(GestureFlags, GestureFlag) 1774 1732 1775 1733 1776 enum NavigationMode … … 1759 1802 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::InputMethodHints) 1760 1803 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::TouchPointStates) 1804 1761 1805 Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::GestureFlags) 1806 1762 1807 1763 1808 typedef bool (*qInternalCallback)(void **);
Note:
See TracChangeset
for help on using the changeset viewer.