Commit f44eb5c5 authored by Nico Vertriest's avatar Nico Vertriest Committed by Jani Heikkinen
Browse files

Doc: Solved link and autolink errs qnamespace.qdoc


Task-number: QTBUG-40362
Change-Id: I81166dc3a54427e2d2d81f640162f6c338947849
Reviewed-by: default avatarMartin Smith <martin.smith@digia.com>
Showing with 12 additions and 11 deletions
...@@ -134,7 +134,7 @@ ...@@ -134,7 +134,7 @@
\value AA_MacDontSwapCtrlAndMeta On Mac OS X by default, Qt swaps the \value AA_MacDontSwapCtrlAndMeta On Mac OS X by default, Qt swaps the
Control and Meta (Command) keys (i.e., whenever Control is pressed, Qt Control and Meta (Command) keys (i.e., whenever Control is pressed, Qt
sends Meta, and whenever Meta is pressed Control is sent). When this sends Meta, and whenever Meta is pressed Control is sent). When this
attribute is true, Qt will not do the flip. QKeySequence::StandardShortcuts attribute is true, Qt will not do the flip. \l QKeySequence::StandardKey
will also flip accordingly (i.e., QKeySequence::Copy will be will also flip accordingly (i.e., QKeySequence::Copy will be
Command+C on the keyboard regardless of the value set, though what is output for Command+C on the keyboard regardless of the value set, though what is output for
QKeySequence::toString(QKeySequence::PortableText) will be different). QKeySequence::toString(QKeySequence::PortableText) will be different).
...@@ -144,7 +144,7 @@ ...@@ -144,7 +144,7 @@
to be consistent in pixels-per-point across devices rather than to be consistent in pixels-per-point across devices rather than
defining 1 point as 1/72 inch. defining 1 point as 1/72 inch.
\value AA_X11InitThreads Calls XInitThreads() as part of the QApplication \value AA_X11InitThreads Calls \c XInitThreads() as part of the QApplication
construction in order to make Xlib calls thread-safe. This construction in order to make Xlib calls thread-safe. This
attribute must be set before QApplication is constructed. attribute must be set before QApplication is constructed.
...@@ -159,10 +159,11 @@ ...@@ -159,10 +159,11 @@
\value AA_UseHighDpiPixmaps Make QIcon::pixmap() generate high-dpi pixmaps \value AA_UseHighDpiPixmaps Make QIcon::pixmap() generate high-dpi pixmaps
that can be larger than the requested size. Such pixmaps will have that can be larger than the requested size. Such pixmaps will have
devicePixelRatio set to a value higher than 1. After setting this \l {QPixmap::devicePixelRatio}{devicePixelRatio()} set to a value higher than 1.
attribute application code that uses pixmap sizes in layout geometry
calculations should typically divide by QPixmap::devicePixelRatio() After setting this attribute, application code that uses pixmap
to get device-independent layout geometry. sizes in layout geometry calculations should typically divide by
\l {QPixmap::devicePixelRatio}{devicePixelRatio()} to get device-independent layout geometry.
\value AA_ForceRasterWidgets Make top-level widgets use pure raster surfaces, \value AA_ForceRasterWidgets Make top-level widgets use pure raster surfaces,
and do not support non-native GL-based child widgets. and do not support non-native GL-based child widgets.
...@@ -182,7 +183,7 @@ ...@@ -182,7 +183,7 @@
\l{http://www.mesa3d.org/llvmpipe.html}{Mesa llvmpipe}, providing \l{http://www.mesa3d.org/llvmpipe.html}{Mesa llvmpipe}, providing
OpenGL 2.1. The value may have no effect if no such OpenGL OpenGL 2.1. The value may have no effect if no such OpenGL
implementation is available. The default name of this library is implementation is available. The default name of this library is
opengl32sw.dll and can be overridden by setting the environment \c opengl32sw.dll and can be overridden by setting the environment
variable \e QT_OPENGL_DLL. See the platform-specific pages, for variable \e QT_OPENGL_DLL. See the platform-specific pages, for
instance \l{Qt for Windows}, for more information. This value has instance \l{Qt for Windows}, for more information. This value has
been added in Qt 5.4. been added in Qt 5.4.
...@@ -221,7 +222,7 @@ ...@@ -221,7 +222,7 @@
\value AllButtons This value corresponds to a mask of all \value AllButtons This value corresponds to a mask of all
possible mouse buttons. Use to set the 'acceptedButtons' possible mouse buttons. Use to set the 'acceptedButtons'
property of a mouseArea to accept ALL mouse buttons. property of a MouseArea to accept ALL mouse buttons.
\value LeftButton The left button is pressed, or an event refers \value LeftButton The left button is pressed, or an event refers
to the left button. (The left button may be the right button on to the left button. (The left button may be the right button on
...@@ -2443,7 +2444,7 @@ ...@@ -2443,7 +2444,7 @@
\value ImhExclusiveInputMask This mask yields nonzero if any of the exclusive flags are used. \value ImhExclusiveInputMask This mask yields nonzero if any of the exclusive flags are used.
\note If several exclusive flags are ORed together, the resulting character set will \note If several exclusive flags are OR-ed together, the resulting character set will
consist of the union of the specified sets. For instance specifying \c ImhNumbersOnly and consist of the union of the specified sets. For instance specifying \c ImhNumbersOnly and
\c ImhUppercaseOnly would yield a set consisting of numbers and uppercase letters. \c ImhUppercaseOnly would yield a set consisting of numbers and uppercase letters.
...@@ -2969,8 +2970,8 @@ ...@@ -2969,8 +2970,8 @@
This enum provides additional information concerning a QMouseEvent. This enum provides additional information concerning a QMouseEvent.
\value MouseEventCreatedDoubleClick Indicates that Qt has created a \value MouseEventCreatedDoubleClick Indicates that Qt has created a
MouseButtonDblClick event from this event. The flag is set in the causing \l {QEvent::MouseButtonDblClick}{MouseButtonDblClick} event from this event. The flag is set in the causing
MouseButtonPress, and not in the resulting MouseButtonDblCLick. \l {QEvent::MouseButtonPress}{MouseButtonPress}, and not in the resulting \l {QEvent::MouseButtonDblClick}{MouseButtonDblClick}.
\omitvalue MouseEventFlagMask \omitvalue MouseEventFlagMask
*/ */
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment