Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/src/corelib/global/qnamespace.h

    r769 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 201 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation ([email protected])
     
    9191    Q_FLAGS(WindowFlags WindowStates InputMethodHints)
    9292    Q_ENUMS(ConnectionType)
     93
     94
     95
     96
    9397#endif // (defined(Q_MOC_RUN) || defined(QT_JAMBI_RUN))
    9498
     
    147151        LeftButton       = 0x00000001,
    148152        RightButton      = 0x00000002,
    149         MidButton        = 0x00000004,
     153        MidButton        = 0x00000004, // ### Qt 5: remove me
     154        MiddleButton     = MidButton,
    150155        XButton1         = 0x00000008,
    151156        XButton2         = 0x00000010,
     
    236241        TextForceLeftToRight = 0x20000,
    237242        TextForceRightToLeft = 0x40000,
    238         TextLongestVariant = 0x80000
     243        TextLongestVariant = 0x80000,
     244        TextBypassShaping = 0x100000
    239245
    240246#if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN)
     
    503509        WA_MergeSoftkeysRecursively =  125,
    504510
     511
     512
     513
     514
     515
     516
     517
     518
     519
     520
     521
     522
     523
     524
     525
     526
     527
     528
    505529        // Add new attributes before this line
    506530        WA_AttributeCount
     
    518542        AA_MacDontSwapCtrlAndMeta = 7,
    519543        AA_S60DontConstructApplicationPanes = 8,
     544
    520545
    521546        // Add new attributes before this line
     
    936961        Key_MediaNext  = 0x01000083,
    937962        Key_MediaRecord = 0x01000084,
     963
     964
    938965        Key_HomePage  = 0x01000090,
    939966        Key_Favorites  = 0x01000091,
     
    10521079        Key_ContrastAdjust = 0x0100010d,
    10531080
     1081
     1082
     1083
    10541084        Key_MediaLast = 0x0100ffff,
    10551085
     
    10751105        Key_Context3 = 0x01100002,
    10761106        Key_Context4 = 0x01100003,
    1077         Key_Call = 0x01100004,
    1078         Key_Hangup = 0x01100005,
     1107        Key_Call = 0x01100004,
     1108        Key_Hangup = 0x01100005,
    10791109        Key_Flip = 0x01100006,
     1110
     1111
     1112
     1113
     1114
     1115
    10801116
    10811117        Key_unknown = 0x01ffffff
     
    12381274        OpenHandCursor,
    12391275        ClosedHandCursor,
    1240         LastCursor = ClosedHandCursor,
     1276        DragCopyCursor,
     1277        DragMoveCursor,
     1278        DragLinkCursor,
     1279        LastCursor = DragLinkCursor,
    12411280        BitmapCursor = 24,
    12421281        CustomCursor = 25
     
    15351574    enum LayoutDirection {
    15361575        LeftToRight,
    1537         RightToLeft
     1576        RightToLeft,
     1577        LayoutDirectionAuto
    15381578    };
    15391579
     
    17021742    Q_DECLARE_FLAGS(TouchPointStates, TouchPointState)
    17031743
     1744
    17041745    enum GestureState
    17051746    {
     
    17271768    {
    17281769        DontStartGestureOnChildren = 0x01,
    1729         ReceivePartialGestures     = 0x02
     1770        ReceivePartialGestures     = 0x02,
     1771        IgnoredGesturesPropagateToParent = 0x04
    17301772    };
    17311773    Q_DECLARE_FLAGS(GestureFlags, GestureFlag)
     1774
    17321775
    17331776    enum NavigationMode
     
    17591802Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::InputMethodHints)
    17601803Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::TouchPointStates)
     1804
    17611805Q_DECLARE_OPERATORS_FOR_FLAGS(Qt::GestureFlags)
     1806
    17621807
    17631808typedef bool (*qInternalCallback)(void **);
Note: See TracChangeset for help on using the changeset viewer.