1305 to the window's _NET_WM_WINDOW_TYPE X11 window property. See
1306 http://standards.freedesktop.org/wm-spec/ for more details. This attribute
1307 has no effect on non-X11 platforms. \b Note: Qt automatically sets this
1308 attribute for the QComboBox pop-up.
1309
1310 \value WA_X11NetWmWindowTypeDND Adds _NET_WM_WINDOW_TYPE_DND to
1311 the window's _NET_WM_WINDOW_TYPE X11 window property. See
1312 http://standards.freedesktop.org/wm-spec/ for more details. This attribute
1313 has no effect on non-X11 platforms. \b Note: Qt automatically sets this
1314 attribute on the feedback widget used during a drag.
1315
1316 \value WA_AcceptTouchEvents Allows touch events (see QTouchEvent)
1317 to be sent to the widget. Must be set on all widgets that can
1318 handle touch events. Without this attribute set, events from a
1319 touch device will be sent as mouse events.
1320
1321 \value WA_TouchPadAcceptSingleTouchEvents Allows touchpad single
1322 touch events to be sent to the widget.
1323
1324 \value WA_X11DoNotAcceptFocus Asks the window manager to not give focus
1325 to this top level window. This attribute has no effect on non-X11
1326 platforms.
1327
1328 \value [since 5.4] WA_AlwaysStackOnTop Forces QOpenGLWidget and
1329 QQuickWidget to be drawn last, on top of other widgets. Ignored for other
1330 type of widgets. Setting this attribute breaks the stacking order, but
1331 allows having a semi-transparent OpenGL widget with other widgets visible
1332 underneath. It is strongly recommended to call \l{QWidget::}{update()} on the widget's
1333 top-level window after enabling or disabling this attribute.
1334
1335 \value WA_ContentsMarginsRespectsSafeArea A QWidget respects the safe
1336 area margins of a window by incorporating the margins into its contents'
1337 margins by default. This means, that a QLayout will use the content area
1338 of a widget for its layout, unless the Qt::WA_LayoutOnEntireRect attribute
1339 is set. This along with a contents margin of 0 can be used on the actual
1340 layout, to allow for example a background image to underlay the status bar and other
1341 system areas on an iOS device, while still allowing child widgets of
1342 that background to be inset based on the safe area.
1343
1344 \omitvalue WA_LaidOut
1345 \omitvalue WA_WState_Visible
1346 \omitvalue WA_WState_Hidden
1347 \omitvalue WA_PendingUpdate
1348 \omitvalue WA_InvalidSize
1349 \omitvalue WA_GrabbedShortcut
1350 \omitvalue WA_SetWindowIcon
1351 \omitvalue WA_SetLayoutDirection
1352 \omitvalue WA_ForceUpdatesDisabled
1353 \omitvalue WA_WState_Created
1354 \omitvalue WA_WState_CompressKeys
1355 \omitvalue WA_WState_InPaintEvent
1356 \omitvalue WA_WState_Reparented
1357 \omitvalue WA_WState_ConfigPending
1358 \omitvalue WA_WState_Polished
1359 \omitvalue WA_WState_OwnSizePolicy
1360 \omitvalue WA_WState_ExplicitShowHide
1361 \omitvalue WA_InputMethodTransparent
1362 \omitvalue WA_DropSiteRegistered
1363 \omitvalue WA_NoX11EventCompression
1364 \omitvalue WA_TintedBackground
1365 \omitvalue WA_X11OpenGLOverlay
1366 \omitvalue WA_CanHostQMdiSubWindowTitleBar
1367 \omitvalue WA_X11BypassTransientForHint
1368 \omitvalue WA_DontShowOnScreen
1369 \omitvalue WA_SetWindowModality
1370 \omitvalue WA_WState_WindowOpacitySet
1371 \omitvalue WA_WState_AcceptedTouchBeginEvent
1372 \omitvalue WA_StyleSheet
1373 \omitvalue WA_AttributeCount
1374*/
1375
1376/*! \typedef Qt::HANDLE
1377
1378 A handle type for system objects, defined as \c{void *}
1379 on all platforms.
1380*/
1381
1382/*!
1383 \enum Qt::Key
1384
1385 The key names used by Qt.
1386
1387 \value Key_Escape
1388 \value Key_Tab
1389 \value Key_Backtab
1390 \value Key_Backspace
1391 \value Key_Return
1392 \value Key_Enter Typically located on the keypad.
1393 \value Key_Insert
1394 \value Key_Delete
1395 \value Key_Pause The Pause/Break key (\b Note: Not related to pausing media)
1396 \value Key_Print
1397 \value Key_SysReq
1398 \value Key_Clear Corresponds to the \b Clear key on selected Apple
1399 keyboard models. On other systems it is commonly mapped
1400 to the numeric keypad key \b 5, when \b {Num Lock} is
1401 \c off.
1402 \value Key_Home
1403 \value Key_End
1404 \value Key_Left
1405 \value Key_Up
1406 \value Key_Right
1407 \value Key_Down
1408 \value Key_PageUp
1409 \value Key_PageDown
1410 \value Key_Shift
1411 \value Key_Control On \macos, this corresponds to the Command keys.
1412 \value Key_Meta On \macos, this corresponds to the Control keys.
1413 On Windows keyboards, this key is mapped to the
1414 Windows key.
1415 \value Key_Alt
1416 \value Key_AltGr On Windows, when the \c KeyDown event for this key is
1417 sent, the Ctrl+Alt modifiers are also set.
1418 \value Key_CapsLock
1419 \value Key_NumLock
1420 \value Key_ScrollLock
1421 \value Key_F1
1422 \value Key_F2
1423 \value Key_F3
1424 \value Key_F4
1425 \value Key_F5
1426 \value Key_F6
1427 \value Key_F7
1428 \value Key_F8
1429 \value Key_F9
1430 \value Key_F10
1431 \value Key_F11
1432 \value Key_F12
1433 \value Key_F13
1434 \value Key_F14
1435 \value Key_F15
1436 \value Key_F16
1437 \value Key_F17
1438 \value Key_F18
1439 \value Key_F19
1440 \value Key_F20
1441 \value Key_F21
1442 \value Key_F22
1443 \value Key_F23
1444 \value Key_F24
1445 \value Key_F25
1446 \value Key_F26
1447 \value Key_F27
1448 \value Key_F28
1449 \value Key_F29
1450 \value Key_F30
1451 \value Key_F31
1452 \value Key_F32
1453 \value Key_F33
1454 \value Key_F34
1455 \value Key_F35
1456 \value Key_Super_L
1457 \value Key_Super_R
1458 \value Key_Menu
1459 \value Key_Hyper_L
1460 \value Key_Hyper_R
1461 \value Key_Help
1462 \value Key_Direction_L
1463 \value Key_Direction_R
1464
1465 \value Key_Space
1466 \value Key_Any
1467 \value Key_Exclam
1468 \value Key_QuoteDbl
1469 \value Key_NumberSign
1470 \value Key_Dollar
1471 \value Key_Percent
1472 \value Key_Ampersand
1473 \value Key_Apostrophe
1474 \value Key_ParenLeft
1475 \value Key_ParenRight
1476 \value Key_Asterisk
1477 \value Key_Plus
1478 \value Key_Comma
1479 \value Key_Minus
1480 \value Key_Period
1481 \value Key_Slash
1482 \value Key_0
1483 \value Key_1
1484 \value Key_2
1485 \value Key_3
1486 \value Key_4
1487 \value Key_5
1488 \value Key_6
1489 \value Key_7
1490 \value Key_8
1491 \value Key_9
1492 \value Key_Colon
1493 \value Key_Semicolon
1494 \value Key_Less
1495 \value Key_Equal
1496 \value Key_Greater
1497 \value Key_Question
1498 \value Key_At
1499 \value Key_A
1500 \value Key_B
1501 \value Key_C
1502 \value Key_D
1503 \value Key_E
1504 \value Key_F
1505 \value Key_G
1506 \value Key_H
1507 \value Key_I
1508 \value Key_J
1509 \value Key_K
1510 \value Key_L
1511 \value Key_M
1512 \value Key_N
1513 \value Key_O
1514 \value Key_P
1515 \value Key_Q
1516 \value Key_R
1517 \value Key_S
1518 \value Key_T
1519 \value Key_U
1520 \value Key_V
1521 \value Key_W
1522 \value Key_X
1523 \value Key_Y
1524 \value Key_Z
1525 \value Key_BracketLeft
1526 \value Key_Backslash
1527 \value Key_BracketRight
1528 \value Key_AsciiCircum
1529 \value Key_Underscore
1530 \value Key_QuoteLeft
1531 \value Key_BraceLeft
1532 \value Key_Bar
1533 \value Key_BraceRight
1534 \value Key_AsciiTilde
1535 \value Key_nobreakspace
1536 \value Key_exclamdown
1537 \value Key_cent
1538 \value Key_sterling
1539 \value Key_currency
1540 \value Key_yen
1541 \value Key_brokenbar
1542 \value Key_section
1543 \value Key_diaeresis
1544 \value Key_copyright
1545 \value Key_ordfeminine
1546 \value Key_guillemotleft
1547 \value Key_notsign
1548 \value Key_hyphen
1549 \value Key_registered
1550 \value Key_macron
1551 \value Key_degree
1552 \value Key_plusminus
1553 \value Key_twosuperior
1554 \value Key_threesuperior
1555 \value Key_acute
1556 \value [since 6.7] Key_micro
1557 \value Key_mu Deprecated alias for Key_micro
1558 \value Key_paragraph
1559 \value Key_periodcentered
1560 \value Key_cedilla
1561 \value Key_onesuperior
1562 \value Key_masculine
1563 \value Key_guillemotright
1564 \value Key_onequarter
1565 \value Key_onehalf
1566 \value Key_threequarters
1567 \value Key_questiondown
1568 \value Key_Agrave
1569 \value Key_Aacute
1570 \value Key_Acircumflex
1571 \value Key_Atilde
1572 \value Key_Adiaeresis
1573 \value Key_Aring
1574 \value Key_AE
1575 \value Key_Ccedilla
1576 \value Key_Egrave
1577 \value Key_Eacute
1578 \value Key_Ecircumflex
1579 \value Key_Ediaeresis
1580 \value Key_Igrave
1581 \value Key_Iacute
1582 \value Key_Icircumflex
1583 \value Key_Idiaeresis
1584 \value Key_ETH
1585 \value Key_Ntilde
1586 \value Key_Ograve
1587 \value Key_Oacute
1588 \value Key_Ocircumflex
1589 \value Key_Otilde
1590 \value Key_Odiaeresis
1591 \value Key_multiply
1592 \value Key_Ooblique
1593 \value Key_Ugrave
1594 \value Key_Uacute
1595 \value Key_Ucircumflex
1596 \value Key_Udiaeresis
1597 \value Key_Yacute
1598 \value Key_THORN
1599 \value Key_ssharp
1600 \value Key_division
1601 \value Key_ydiaeresis
1602
1603 \value Key_Multi_key
1604 \value Key_Codeinput
1605 \value Key_SingleCandidate
1606 \value Key_MultipleCandidate
1607 \value Key_PreviousCandidate
1608 \value Key_Mode_switch
1609 \value Key_Kanji
1610 \value Key_Muhenkan
1611 \value Key_Henkan
1612 \value Key_Romaji
1613 \value Key_Hiragana
1614 \value Key_Katakana
1615 \value Key_Hiragana_Katakana
1616 \value Key_Zenkaku
1617 \value Key_Hankaku
1618 \value Key_Zenkaku_Hankaku
1619 \value Key_Touroku
1620 \value Key_Massyo
1621 \value Key_Kana_Lock
1622 \value Key_Kana_Shift
1623 \value Key_Eisu_Shift
1624 \value Key_Eisu_toggle
1625 \value Key_Hangul
1626 \value Key_Hangul_Start
1627 \value Key_Hangul_End
1628 \value Key_Hangul_Hanja
1629 \value Key_Hangul_Jamo
1630 \value Key_Hangul_Romaja
1631 \value Key_Hangul_Jeonja
1632 \value Key_Hangul_Banja
1633 \value Key_Hangul_PreHanja
1634 \value Key_Hangul_PostHanja
1635 \value Key_Hangul_Special
1636 \value Key_Dead_Grave
1637 \value Key_Dead_Acute
1638 \value Key_Dead_Circumflex
1639 \value Key_Dead_Tilde
1640 \value Key_Dead_Macron
1641 \value Key_Dead_Breve
1642 \value Key_Dead_Abovedot
1643 \value Key_Dead_Diaeresis
1644 \value Key_Dead_Abovering
1645 \value Key_Dead_Doubleacute
1646 \value Key_Dead_Caron
1647 \value Key_Dead_Cedilla
1648 \value Key_Dead_Ogonek
1649 \value Key_Dead_Iota
1650 \value Key_Dead_Voiced_Sound
1651 \value Key_Dead_Semivoiced_Sound
1652 \value Key_Dead_Belowdot
1653 \value Key_Dead_Hook
1654 \value Key_Dead_Horn
1655 \value Key_Dead_Stroke
1656 \value Key_Dead_Abovecomma
1657 \value Key_Dead_Abovereversedcomma
1658 \value Key_Dead_Doublegrave
1659 \value Key_Dead_Belowring
1660 \value Key_Dead_Belowmacron
1661 \value Key_Dead_Belowcircumflex
1662 \value Key_Dead_Belowtilde
1663 \value Key_Dead_Belowbreve
1664 \value Key_Dead_Belowdiaeresis
1665 \value Key_Dead_Invertedbreve
1666 \value Key_Dead_Belowcomma
1667 \value Key_Dead_Currency
1668 \value Key_Dead_a
1669 \value Key_Dead_A
1670 \value Key_Dead_e
1671 \value Key_Dead_E
1672 \value Key_Dead_i
1673 \value Key_Dead_I
1674 \value Key_Dead_o
1675 \value Key_Dead_O
1676 \value Key_Dead_u
1677 \value Key_Dead_U
1678 \value Key_Dead_Small_Schwa
1679 \value Key_Dead_Capital_Schwa
1680 \value Key_Dead_Greek
1681 \value Key_Dead_Lowline
1682 \value Key_Dead_Aboveverticalline
1683 \value Key_Dead_Belowverticalline
1684 \value Key_Dead_Longsolidusoverlay
1685 \value Key_Back
1686 \value Key_Forward
1687 \value Key_Stop
1688 \value Key_Refresh
1689 \value Key_VolumeDown
1690 \value Key_VolumeMute
1691 \value Key_VolumeUp
1692 \value Key_BassBoost
1693 \value Key_BassUp
1694 \value Key_BassDown
1695 \value Key_TrebleUp
1696 \value Key_TrebleDown
1697 \value Key_MediaPlay A key setting the state of the media player to play
1698 \value Key_MediaStop A key setting the state of the media player to stop
1699 \value Key_MediaPrevious
1700 \value Key_MediaNext
1701 \value Key_MediaRecord
1702 \value Key_MediaPause A key setting the state of the media player to pause (\b Note: not the pause/break key)
1703 \value Key_MediaTogglePlayPause A key to toggle the play/pause state in the media player (rather than setting an absolute state)
1704 \value Key_HomePage
1705 \value Key_Favorites
1706 \value Key_Search
1707 \value Key_Standby
1708 \value Key_OpenUrl
1709 \value Key_LaunchMail
1710 \value Key_LaunchMedia
1711 \value Key_Launch0
1712 \value Key_Launch1
1713 \value Key_Launch2
1714 \value Key_Launch3
1715 \value Key_Launch4
1716 \value Key_Launch5
1717 \value Key_Launch6
1718 \value Key_Launch7
1719 \value Key_Launch8
1720 \value Key_Launch9
1721 \value Key_LaunchA
1722 \value Key_LaunchB
1723 \value Key_LaunchC
1724 \value Key_LaunchD
1725 \value Key_LaunchE
1726 \value Key_LaunchF
1727 \value Key_LaunchG
1728 \value Key_LaunchH
1729 \value Key_MonBrightnessUp
1730 \value Key_MonBrightnessDown
1731 \value Key_KeyboardLightOnOff
1732 \value Key_KeyboardBrightnessUp
1733 \value Key_KeyboardBrightnessDown
1734 \value Key_PowerOff
1735 \value Key_WakeUp
1736 \value Key_Eject
1737 \value Key_ScreenSaver
1738 \value Key_WWW
1739 \value Key_Memo
1740 \value Key_LightBulb
1741 \value Key_Shop
1742 \value Key_History
1743 \value Key_AddFavorite
1744 \value Key_HotLinks
1745 \value Key_BrightnessAdjust
1746 \value Key_Finance
1747 \value Key_Community
1748 \value Key_AudioRewind
1749 \value Key_BackForward
1750 \value Key_ApplicationLeft
1751 \value Key_ApplicationRight
1752 \value Key_Book
1753 \value Key_CD
1754 \value Key_Calculator
1755 \value Key_ToDoList
1756 \value Key_ClearGrab
1757 \value Key_Close
1758 \value Key_Copy
1759 \value Key_Cut
1760 \value Key_Display
1761 \value Key_DOS
1762 \value Key_Documents
1763 \value Key_Excel
1764 \value Key_Explorer
1765 \value Key_Game
1766 \value Key_Go
1767 \value Key_iTouch
1768 \value Key_LogOff
1769 \value Key_Market
1770 \value Key_Meeting
1771 \value Key_MenuKB
1772 \value Key_MenuPB
1773 \value Key_MySites
1774 \value Key_News
1775 \value Key_OfficeHome
1776 \value Key_Option
1777 \value Key_Paste
1778 \value Key_Phone
1779 \value Key_Calendar
1780 \value Key_Reply
1781 \value Key_Reload
1782 \value Key_RotateWindows
1783 \value Key_RotationPB
1784 \value Key_RotationKB
1785 \value Key_Save
1786 \value Key_Send
1787 \value Key_Spell
1788 \value Key_SplitScreen
1789 \value Key_Support
1790 \value Key_TaskPane
1791 \value Key_Terminal
1792 \value Key_Tools
1793 \value Key_Travel
1794 \value Key_Video
1795 \value Key_Word
1796 \value Key_Xfer
1797 \value Key_ZoomIn
1798 \value Key_ZoomOut
1799 \value Key_Away
1800 \value Key_Messenger
1801 \value Key_WebCam
1802 \value Key_MailForward
1803 \value Key_Pictures
1804 \value Key_Music
1805 \value Key_Battery
1806 \value Key_Bluetooth
1807 \value Key_WLAN
1808 \value Key_UWB
1809 \value Key_AudioForward
1810 \value Key_AudioRepeat
1811 \value Key_AudioRandomPlay
1812 \value Key_Subtitle
1813 \value Key_AudioCycleTrack
1814 \value Key_Time
1815 \value Key_Hibernate
1816 \value Key_View
1817 \value Key_TopMenu
1818 \value Key_PowerDown
1819 \value Key_Suspend
1820 \value Key_ContrastAdjust
1821 \value Key_TouchpadToggle
1822 \value Key_TouchpadOn
1823 \value Key_TouchpadOff
1824 \value Key_MicMute
1825 \value Key_Red
1826 \value Key_Green
1827 \value Key_Yellow
1828 \value Key_Blue
1829 \value Key_ChannelUp
1830 \value Key_ChannelDown
1831 \value Key_Guide
1832 \value Key_Info
1833 \value Key_Settings
1834 \value Key_MicVolumeUp
1835 \value Key_MicVolumeDown
1836 \value Key_Keyboard
1837 \value Key_New
1838 \value Key_Open
1839 \value Key_Find
1840 \value Key_Undo
1841 \value Key_Redo
1842 \value Key_MediaLast
1843 \value Key_unknown
1844
1845 \value Key_Call A key to answer or initiate a call (see Qt::Key_ToggleCallHangup for a key to toggle current call state)
1846 \value Key_Camera A key to activate the camera shutter. On Windows Runtime, the environment variable QT_QPA_ENABLE_CAMERA_KEYS must be set to receive the event.
1847 \value Key_CameraFocus A key to focus the camera. On Windows Runtime, the environment variable QT_QPA_ENABLE_CAMERA_KEYS must be set to receive the event.
1848 \value Key_Context1
1849 \value Key_Context2
1850 \value Key_Context3
1851 \value Key_Context4
1852 \value Key_Flip
1853 \value Key_Hangup A key to end an ongoing call (see Qt::Key_ToggleCallHangup for a key to toggle current call state)
1854 \value Key_No
1855 \value Key_Select
1856 \value Key_Yes
1857 \value Key_ToggleCallHangup A key to toggle the current call state (ie. either answer, or hangup) depending on current call state
1858 \value Key_VoiceDial
1859 \value Key_LastNumberRedial
1860
1861 \value Key_Execute
1862 \value Key_Printer
1863 \value Key_Play
1864 \value Key_Sleep
1865 \value Key_Zoom
1866 \value Key_Exit
1867 \value Key_Cancel
1868
1869 \sa QKeyEvent::key()
1870*/
1871
1872/*!
1873 \enum Qt::HitTestAccuracy
1874
1875 This enum contains the types of accuracy that can be used by the
1876 QTextDocument class when testing for mouse clicks on text documents.
1877
1878 \value ExactHit The point at which input occurred must coincide
1879 exactly with input-sensitive parts of the document.
1880 \value FuzzyHit The point at which input occurred can lie close to
1881 input-sensitive parts of the document.
1882*/
1883
1884/*!
1885 \enum Qt::WhiteSpaceMode
1886
1887 This enum describes the types of whitespace mode that are used by
1888 the QTextDocument class to meet the requirements of different kinds
1889 of textual information.
1890
1891 \value WhiteSpaceNormal The whitespace mode used to display
1892 normal word wrapped text in paragraphs.
1893 \value WhiteSpacePre A preformatted text mode in which
1894 whitespace is reproduced exactly.
1895 \value WhiteSpaceNoWrap
1896
1897 \omitvalue WhiteSpaceModeUndefined
1898*/
1899
1900/*!
1901 \enum Qt::CheckState
1902
1903 This enum describes the state of checkable items, controls, and widgets.
1904
1905 \value Unchecked The item is unchecked.
1906 \value PartiallyChecked The item is partially checked. Items in hierarchical models
1907 may be partially checked if some, but not all, of their
2939 This enum specifies the behavior of a modal window. A modal window
2940 is one that blocks input to other windows. Note that windows that
2941 are children of a modal window are not blocked.
2942
2943 The values are:
2944 \value NonModal The window is not modal and does not block input to other windows.
2945 \value WindowModal The window is modal to a single window hierarchy and blocks input to its parent window, all grandparent windows, and all siblings of its parent and grandparent windows.
2946 \value ApplicationModal The window is modal to the application and blocks input to all windows.
2947
2948 \sa QWidget::windowModality, QDialog
2949*/
2950
2951/*!
2952 \enum Qt::TextInteractionFlag
2953
2954 This enum specifies how a text displaying widget reacts to user input.
2955
2956 \value NoTextInteraction No interaction with the text is possible.
2957 \value TextSelectableByMouse Text can be selected with the mouse and copied to the clipboard using
2958 a context menu or standard keyboard shortcuts.
2959 \value TextSelectableByKeyboard Text can be selected with the cursor keys on the keyboard. A text cursor is shown.
2960 \value LinksAccessibleByMouse Links can be highlighted and activated with the mouse.
2961 \value LinksAccessibleByKeyboard Links can be focused using tab and activated with enter.
2962 \value TextEditable The text is fully editable.
2963
2964 \value TextEditorInteraction The default for a text editor.
2965 \value TextBrowserInteraction The default for QTextBrowser.
2966*/
2967
2968/*!
2969 \enum Qt::MaskMode
2970
2971 This enum specifies the behavior of the
2972 QPixmap::createMaskFromColor() and QImage::createMaskFromColor()
2973 functions.
2974
2975 \value MaskInColor Creates a mask where all pixels matching the given color are opaque.
2976 \value MaskOutColor Creates a mask where all pixels matching the given color are transparent.
2977*/
2978
2979/*!
2980 \enum Qt::DockWidgetAreaSizes
2981 \internal
2982*/
2983
2984/*!
2985 \enum Qt::ToolBarAreaSizes
2986 \internal
2987*/
2988
2989/*!
2990 \enum Qt::EventPriority
2991
2992 This enum can be used to specify event priorities.
2993
2994 \value HighEventPriority Events with this priority are sent before
2995 events with NormalEventPriority or LowEventPriority.
2996
2997 \value NormalEventPriority Events with this priority are sent
2998 after events with HighEventPriority, but before events with
2999 LowEventPriority.
3000
3001 \value LowEventPriority Events with this priority are sent after
3002 events with HighEventPriority or NormalEventPriority.
3003
3004 Note that these values are provided purely for convenience, since
3005 event priorities can be any value between \c INT_MAX and \c
3006 INT_MIN, inclusive. For example, you can define custom priorities
3007 as being relative to each other:
3008
3009 \snippet code/doc_src_qnamespace.cpp 1
3010
3011 \sa QCoreApplication::postEvent()
3012*/
3013/*!
3014 \enum Qt::SizeHint
3015 \since 4.4
3016
3017 This enum is used by QGraphicsLayoutItem::sizeHint()
3018
3019 \value MinimumSize is used to specify the minimum size of a graphics layout item.
3020 \value PreferredSize is used to specify the preferred size of a graphics layout item.
3021 \value MaximumSize is used to specify the maximum size of a graphics layout item.
3022 \value MinimumDescent is used to specify the minimum descent of a text string in a graphics layout item.
3023 \omitvalue NSizeHints
3024
3025 \sa QGraphicsLayoutItem::sizeHint()
3026*/
3027
3028/*!
3029 \enum Qt::SizeMode
3030 \since 4.4
3031
3032 This enum is used by QPainter::drawRoundedRect() and QPainterPath::addRoundedRect()
3033 functions to specify the radii of rectangle corners with respect to the dimensions
3034 of the bounding rectangles specified.
3035
3036 \value AbsoluteSize Specifies the size using absolute measurements.
3037 \value RelativeSize Specifies the size relative to the bounding rectangle,
3038 typically using percentage measurements.
3039*/
3040
3041/*!
3042 \enum Qt::WindowFrameSection
3043 \since 4.4
3044
3045 This enum is used to describe parts of a window frame. It is returned by
3046 QGraphicsWidget::windowFrameSectionAt() to describe what section of the window
3047 frame is under the mouse.
3048
3049 \value NoSection
3050 \value LeftSection
3051 \value TopLeftSection
3052 \value TopSection
3053 \value TopRightSection
3054 \value RightSection
3055 \value BottomRightSection
3056 \value BottomSection
3057 \value BottomLeftSection
3058 \value TitleBarArea
3059
3060 \sa QGraphicsWidget::windowFrameEvent()
3061 \sa QGraphicsWidget::paintWindowFrame()
3062 \sa QGraphicsWidget::windowFrameSectionAt()
3063
3064*/
3065
3066/*!
3067 \enum Qt::TileRule
3068 \since 4.6
3069
3070 This enum describes how to repeat or stretch the parts of an image
3071 when drawing.
3072
3073 \value StretchTile Scale the image to fit to the available area.
3074
3075 \value RepeatTile Repeat the image until there is no more space. May
3076 crop the last image.
3077
3078 \value RoundTile Similar to Repeat, but scales the image down to
3079 ensure that the last tile is not cropped.
3080*/
3081
3082/*!
3083 \enum Qt::Initialization
3084 \internal
3085*/
3086
3087/*!
3088 \enum Qt::Disambiguated_t
3089 \internal
3090*/
3091
3092/*!
3093 \enum Qt::CoordinateSystem
3094 \since 4.6
3095
3096 This enum specifies the coordinate system.
3097
3098 \value DeviceCoordinates Coordinates are relative to the top-left corner
3099 of the object's paint device.
3100
3101 \value LogicalCoordinates Coordinates are relative to the top-left corner
3102 of the object.
3103*/
3104
3105/*! \enum Qt::TouchPointState
3106 \since 4.6
3107
3108 This enum represents the state of a touch point at the time a
3109 QTouchEvent occurred.
3110
3111 \value TouchPointUnknownState The state of the touch point is not known.
3112 \value TouchPointPressed The touch point is now pressed.
3113 \value TouchPointMoved The touch point moved.
3114 \value TouchPointStationary The touch point did not move.
3115 \value TouchPointReleased The touch point was released.
3116*/
3117
3118/*!
3119 \enum Qt::GestureState
3120 \since 4.6
3121
3122 This enum type describes the state of a gesture.
3123
3124 \value NoGesture No gesture has been detected.
3125 \value GestureStarted A continuous gesture has started.
3126 \value GestureUpdated A gesture continues.
3127 \value GestureFinished A gesture has finished.
3128 \value GestureCanceled A gesture was canceled.
3129
3130 \sa QGesture
3131*/
3132
3133/*!
3134 \enum Qt::GestureType
3135 \since 4.6
3136
3137 This enum type describes the standard gestures.
3138
3139 \value TapGesture A Tap gesture.
3140 \value TapAndHoldGesture A Tap-And-Hold (Long-Tap) gesture.
3141 \value PanGesture A Pan gesture.
3142 \value PinchGesture A Pinch gesture.
3143 \value SwipeGesture A Swipe gesture.
3144 \value CustomGesture A flag that can be used to test if the gesture is a
3145 user-defined gesture ID.
3146 \omitvalue LastGestureType
3147
3148 User-defined gestures are registered with the
3149 QGestureRecognizer::registerRecognizer() function which generates a custom
3150 gesture ID with the Qt::CustomGesture flag set.