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