src/corelib/global/qnamespace.h
changeset 33 3e2da88830cd
parent 30 5dc02b23752f
equal deleted inserted replaced
30:5dc02b23752f 33:3e2da88830cd
    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 {
  1552         ToolButtonFollowStyle
  1562         ToolButtonFollowStyle
  1553     };
  1563     };
  1554 
  1564 
  1555     enum LayoutDirection {
  1565     enum LayoutDirection {
  1556         LeftToRight,
  1566         LeftToRight,
  1557         RightToLeft
  1567         RightToLeft,
       
  1568         LayoutDirectionAuto
  1558     };
  1569     };
  1559 
  1570 
  1560     enum AnchorPoint {
  1571     enum AnchorPoint {
  1561         AnchorLeft = 0,
  1572         AnchorLeft = 0,
  1562         AnchorHorizontalCenter,
  1573         AnchorHorizontalCenter,
  1717 
  1728 
  1718         TouchPointPrimary    = 0x10
  1729         TouchPointPrimary    = 0x10
  1719     };
  1730     };
  1720     Q_DECLARE_FLAGS(TouchPointStates, TouchPointState)
  1731     Q_DECLARE_FLAGS(TouchPointStates, TouchPointState)
  1721 
  1732 
       
  1733 #ifndef QT_NO_GESTURES
  1722     enum GestureState
  1734     enum GestureState
  1723     {
  1735     {
  1724         NoGesture,
  1736         NoGesture,
  1725         GestureStarted  = 1,
  1737         GestureStarted  = 1,
  1726         GestureUpdated  = 2,
  1738         GestureUpdated  = 2,
  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: