![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <qquicklabsplatformmenuitem_p.h>
Public Slots | |
void | toggle () |
\qmlmethod void Qt.labs.platform::MenuItem::toggle() | |
Public Slots inherited from QObject | |
void | deleteLater () |
\threadsafe |
Signals | |
void | triggered () |
void | hovered () |
void | menuChanged () |
void | subMenuChanged () |
void | groupChanged () |
void | enabledChanged () |
void | visibleChanged () |
void | separatorChanged () |
void | checkableChanged () |
void | checkedChanged () |
void | roleChanged () |
void | textChanged () |
void | shortcutChanged () |
void | fontChanged () |
Q_REVISION (1, 1) void iconChanged() | |
Signals inherited from QObject | |
void | destroyed (QObject *=nullptr) |
This signal is emitted immediately before the object obj is destroyed, after any instances of QPointer have been notified, and cannot be blocked. | |
void | objectNameChanged (const QString &objectName, QPrivateSignal) |
This signal is emitted after the object's name has been changed. |
Public Member Functions | |
QQuickLabsPlatformMenuItem (QObject *parent=nullptr) | |
A native menu item. | |
~QQuickLabsPlatformMenuItem () | |
QPlatformMenuItem * | handle () const |
QPlatformMenuItem * | create () |
void | sync () |
QQuickLabsPlatformMenu * | menu () const |
\readonly \qmlproperty Menu Qt.labs.platform::MenuItem::menu | |
void | setMenu (QQuickLabsPlatformMenu *menu) |
QQuickLabsPlatformMenu * | subMenu () const |
\readonly \qmlproperty Menu Qt.labs.platform::MenuItem::subMenu | |
void | setSubMenu (QQuickLabsPlatformMenu *menu) |
QQuickLabsPlatformMenuItemGroup * | group () const |
\qmlproperty MenuItemGroup Qt.labs.platform::MenuItem::group | |
void | setGroup (QQuickLabsPlatformMenuItemGroup *group) |
bool | isEnabled () const |
\qmlproperty bool Qt.labs.platform::MenuItem::enabled | |
void | setEnabled (bool enabled) |
bool | isVisible () const |
\qmlproperty bool Qt.labs.platform::MenuItem::visible | |
void | setVisible (bool visible) |
bool | isSeparator () const |
\qmlproperty bool Qt.labs.platform::MenuItem::separator | |
void | setSeparator (bool separator) |
bool | isCheckable () const |
\qmlproperty bool Qt.labs.platform::MenuItem::checkable | |
void | setCheckable (bool checkable) |
bool | isChecked () const |
\qmlproperty bool Qt.labs.platform::MenuItem::checked | |
void | setChecked (bool checked) |
QPlatformMenuItem::MenuRole | role () const |
\qmlproperty enumeration Qt.labs.platform::MenuItem::role | |
void | setRole (QPlatformMenuItem::MenuRole role) |
QString | text () const |
\qmlproperty string Qt.labs.platform::MenuItem::text | |
void | setText (const QString &text) |
QVariant | shortcut () const |
\qmlproperty keysequence Qt.labs.platform::MenuItem::shortcut | |
void | setShortcut (const QVariant &shortcut) |
QFont | font () const |
\qmlproperty font Qt.labs.platform::MenuItem::font | |
void | setFont (const QFont &font) |
QQuickLabsPlatformIcon | icon () const |
void | setIcon (const QQuickLabsPlatformIcon &icon) |
Public Member Functions inherited from QObject | |
Q_INVOKABLE | QObject (QObject *parent=nullptr) |
Constructs an object with parent object parent. | |
virtual | ~QObject () |
Destroys the object, deleting all its child objects. | |
virtual bool | eventFilter (QObject *watched, QEvent *event) |
Filters events if this object has been installed as an event filter for the watched object. | |
QString | objectName () const |
Q_WEAK_OVERLOAD void | setObjectName (const QString &name) |
Sets the object's name to name. | |
void | setObjectName (QAnyStringView name) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
QBindable< QString > | bindableObjectName () |
bool | isWidgetType () const |
Returns true if the object is a widget; otherwise returns false . | |
bool | isWindowType () const |
Returns true if the object is a window; otherwise returns false . | |
bool | isQuickItemType () const |
Returns true if the object is a QQuickItem; otherwise returns false . | |
bool | isQmlObjectType () const |
Returns whether the object has been created by the QML engine or ownership has been explicitly set via QJSEngine::setObjectOwnership(). | |
bool | signalsBlocked () const noexcept |
Returns true if signals are blocked; otherwise returns false . | |
bool | blockSignals (bool b) noexcept |
If block is true, signals emitted by this object are blocked (i.e., emitting a signal will not invoke anything connected to it). | |
QThread * | thread () const |
Returns the thread in which the object lives. | |
bool | moveToThread (QThread *thread QT6_DECL_NEW_OVERLOAD_TAIL) |
Changes the thread affinity for this object and its children and returns true on success. | |
int | startTimer (int interval, Qt::TimerType timerType=Qt::CoarseTimer) |
This is an overloaded function that will start a timer of type timerType and a timeout of interval milliseconds. | |
int | startTimer (std::chrono::nanoseconds time, Qt::TimerType timerType=Qt::CoarseTimer) |
void | killTimer (int id) |
Kills the timer with timer identifier, id. | |
void | killTimer (Qt::TimerId id) |
template<typename T> | |
T | findChild (QAnyStringView aName, Qt::FindChildOptions options=Qt::FindChildrenRecursively) const |
Returns the child of this object that can be cast into type T and that is called name, or \nullptr if there is no such object. | |
template<typename T> | |
QList< T > | findChildren (QAnyStringView aName, Qt::FindChildOptions options=Qt::FindChildrenRecursively) const |
Returns all children of this object with the given name that can be cast to type T, or an empty list if there are no such objects. | |
template<typename T> | |
T | findChild (Qt::FindChildOptions options=Qt::FindChildrenRecursively) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
template<typename T> | |
QList< T > | findChildren (Qt::FindChildOptions options=Qt::FindChildrenRecursively) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
const QObjectList & | children () const |
Returns a list of child objects. | |
void | setParent (QObject *parent) |
Makes the object a child of parent. | |
void | installEventFilter (QObject *filterObj) |
Installs an event filter filterObj on this object. | |
void | removeEventFilter (QObject *obj) |
Removes an event filter object obj from this object. | |
QMetaObject::Connection | connect (const QObject *sender, const char *signal, const char *member, Qt::ConnectionType type=Qt::AutoConnection) const |
bool | disconnect (const char *signal=nullptr, const QObject *receiver=nullptr, const char *member=nullptr) const |
bool | disconnect (const QObject *receiver, const char *member=nullptr) const |
void | dumpObjectTree () const |
Dumps a tree of children to the debug output. | |
void | dumpObjectInfo () const |
Dumps information about signal connections, etc. | |
bool | setProperty (const char *name, const QVariant &value) |
Sets the value of the object's name property to value. | |
bool | setProperty (const char *name, QVariant &&value) |
QVariant | property (const char *name) const |
Returns the value of the object's name property. | |
QList< QByteArray > | dynamicPropertyNames () const |
QBindingStorage * | bindingStorage () |
const QBindingStorage * | bindingStorage () const |
QObject * | parent () const |
Returns a pointer to the parent object. | |
bool | inherits (const char *classname) const |
Returns true if this object is an instance of a class that inherits className or a QObject subclass that inherits className; otherwise returns false . | |
Public Member Functions inherited from QQmlParserStatus | |
QQmlParserStatus () | |
virtual | ~QQmlParserStatus () |
Protected Member Functions | |
void | classBegin () override |
Invoked after class creation, but before any properties have been set. | |
void | componentComplete () override |
Invoked after the root component that caused this instantiation has completed construction. | |
QQuickLabsPlatformIconLoader * | iconLoader () const |
bool | event (QEvent *e) override |
This virtual function receives events to an object and should return true if the event e was recognized and processed. | |
Protected Member Functions inherited from QObject | |
QObject * | sender () const |
Returns a pointer to the object that sent the signal, if called in a slot activated by a signal; otherwise it returns \nullptr. | |
int | senderSignalIndex () const |
int | receivers (const char *signal) const |
Returns the number of receivers connected to the signal. | |
bool | isSignalConnected (const QMetaMethod &signal) const |
virtual void | timerEvent (QTimerEvent *event) |
This event handler can be reimplemented in a subclass to receive timer events for the object. | |
virtual void | childEvent (QChildEvent *event) |
This event handler can be reimplemented in a subclass to receive child events. | |
virtual void | customEvent (QEvent *event) |
This event handler can be reimplemented in a subclass to receive custom events. | |
virtual void | connectNotify (const QMetaMethod &signal) |
virtual void | disconnectNotify (const QMetaMethod &signal) |
QObject (QObjectPrivate &dd, QObject *parent=nullptr) |
Properties | |
QQuickLabsPlatformMenu * | menu |
QQuickLabsPlatformMenu * | subMenu |
QQuickLabsPlatformMenuItemGroup * | group |
bool | enabled |
bool | visible |
bool | separator |
bool | checkable |
bool | checked |
QPlatformMenuItem::MenuRole | role |
QString | text |
QVariant | shortcut |
QFont | font |
QQuickLabsPlatformIcon | icon |
Properties inherited from QObject | |
QString | objectName |
the name of this object |
Friends | |
class | QQuickLabsPlatformMenu |
class | QQuickLabsPlatformMenuItemGroup |
Additional Inherited Members | |
Static Public Member Functions inherited from QObject | |
static QMetaObject::Connection | connect (const QObject *sender, const char *signal, const QObject *receiver, const char *member, Qt::ConnectionType=Qt::AutoConnection) |
\threadsafe | |
static QMetaObject::Connection | connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type=Qt::AutoConnection) |
template<typename Func1, typename Func2> | |
static QMetaObject::Connection | connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::ContextTypeForFunctor< Func2 >::ContextType *context, Func2 &&slot, Qt::ConnectionType type=Qt::AutoConnection) |
template<typename Func1, typename Func2> | |
static QMetaObject::Connection | connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, Func2 &&slot) |
static bool | disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *member) |
\threadsafe | |
static bool | disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &member) |
static bool | disconnect (const QMetaObject::Connection &) |
Disconnect a connection. | |
template<typename Func1, typename Func2> | |
static bool | disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::FunctionPointer< Func2 >::Object *receiver, Func2 slot) |
template<typename Func1> | |
static bool | disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const QObject *receiver, void **zero) |
Protected Attributes inherited from QObject | |
QScopedPointer< QObjectData > | d_ptr |
Related Symbols inherited from QObject | |
template< class T > T | qobject_cast (const QObject *object) |
Returns the given object cast to type T if the object is of type T (or of a subclass); otherwise returns \nullptr. | |
template< typename T > T | qFindChildqFindChildren (const QObject *obj, const QString &name)() |
template< typename T > QList< T > | qFindChildrenqFindChildren (const QObject *obj, const QString &name)() |
QObjectList | |
\macro Q_CLASSINFO(Name, Value) |
Definition at line 35 of file qquicklabsplatformmenuitem_p.h.
|
explicit |
A native menu item.
\qmltype MenuItem \inherits QtObject
! \nativetype QQuickLabsPlatformMenuItem \inqmlmodule Qt.labs.platform
The MenuItem type provides a QML API for native platform menu items.
A menu item consists of an \l icon, \l text, and \l shortcut.
\labs
\qmlsignal Qt.labs.platform::MenuItem::triggered()
This signal is emitted when the menu item is triggered by the user.
\qmlsignal Qt.labs.platform::MenuItem::hovered()
This signal is emitted when the menu item is hovered by the user.
Definition at line 71 of file qquicklabsplatformmenuitem.cpp.
References QObjectData::parent.
QQuickLabsPlatformMenuItem::~QQuickLabsPlatformMenuItem | ( | ) |
Definition at line 88 of file qquicklabsplatformmenuitem.cpp.
|
signal |
|
signal |
Referenced by QQuickLabsPlatformMenuItemGroup::addItem(), and QQuickLabsPlatformMenuItemGroup::removeItem().
|
overrideprotectedvirtual |
Invoked after class creation, but before any properties have been set.
Implements QQmlParserStatus.
Definition at line 552 of file qquicklabsplatformmenuitem.cpp.
|
overrideprotectedvirtual |
Invoked after the root component that caused this instantiation has completed construction.
At this point all static values and binding values have been assigned to the class.
Implements QQmlParserStatus.
Definition at line 556 of file qquicklabsplatformmenuitem.cpp.
References QQuickLabsPlatformIconLoader::setEnabled(), and sync().
Referenced by QQuickLabsPlatformMenu::menuItem().
QPlatformMenuItem * QQuickLabsPlatformMenuItem::create | ( | ) |
Definition at line 106 of file qquicklabsplatformmenuitem.cpp.
References QQuickLabsPlatformMenu::handle().
Referenced by QQuickLabsPlatformMenu::create(), QQuickLabsPlatformMenu::insertItem(), and sync().
|
signal |
|
overrideprotectedvirtual |
This virtual function receives events to an object and should return true if the event e was recognized and processed.
The event() function can be reimplemented to customize the behavior of an object.
Make sure you call the parent event class implementation for all the events you did not handle.
Example:
Reimplemented from QObject.
Definition at line 458 of file qquicklabsplatformmenuitem.cpp.
QFont QQuickLabsPlatformMenuItem::font | ( | ) | const |
\qmlproperty font Qt.labs.platform::MenuItem::font
This property holds the menu item's font.
Definition at line 491 of file qquicklabsplatformmenuitem.cpp.
|
signal |
QQuickLabsPlatformMenuItemGroup * QQuickLabsPlatformMenuItem::group | ( | ) | const |
\qmlproperty MenuItemGroup Qt.labs.platform::MenuItem::group
This property holds the group that the item belongs to, or null
if the item is not in a group.
Definition at line 216 of file qquicklabsplatformmenuitem.cpp.
|
signal |
QPlatformMenuItem * QQuickLabsPlatformMenuItem::handle | ( | ) | const |
Definition at line 101 of file qquicklabsplatformmenuitem.cpp.
Referenced by QQuickLabsPlatformMenu::insertItem(), and QQuickLabsPlatformMenu::removeItem().
|
signal |
Referenced by QQuickLabsPlatformMenuItemGroup::addItem(), and QQuickLabsPlatformMenuItemGroup::removeItem().
QQuickLabsPlatformIcon QQuickLabsPlatformMenuItem::icon | ( | ) | const |
This property holds the menu item's icon.
Definition at line 524 of file qquicklabsplatformmenuitem.cpp.
References QQuickLabsPlatformIconLoader::icon().
|
protected |
Definition at line 564 of file qquicklabsplatformmenuitem.cpp.
References QQuickLabsPlatformIconLoader::setEnabled().
Referenced by setIcon().
bool QQuickLabsPlatformMenuItem::isCheckable | ( | ) | const |
\qmlproperty bool Qt.labs.platform::MenuItem::checkable
This property holds whether the item is checkable.
A checkable menu item has an on/off state. For example, in a word processor, a "Bold" menu item may be either on or off. A menu item that is not checkable is a command item that is simply executed, e.g. file save.
The default value is false
.
Definition at line 335 of file qquicklabsplatformmenuitem.cpp.
bool QQuickLabsPlatformMenuItem::isChecked | ( | ) | const |
\qmlproperty bool Qt.labs.platform::MenuItem::checked
This property holds whether the item is checked (on) or unchecked (off). The default value is false
.
Definition at line 358 of file qquicklabsplatformmenuitem.cpp.
Referenced by QQuickLabsPlatformMenuItemGroup::addItem().
bool QQuickLabsPlatformMenuItem::isEnabled | ( | ) | const |
\qmlproperty bool Qt.labs.platform::MenuItem::enabled
This property holds whether the item is enabled. The default value is true
.
Disabled items cannot be triggered by the user. They do not disappear from menus, but they are displayed in a way which indicates that they are unavailable. For example, they might be displayed using only shades of gray.
When an item is disabled, it is not possible to trigger it through its \l shortcut.
Definition at line 253 of file qquicklabsplatformmenuitem.cpp.
References QQuickLabsPlatformMenuItemGroup::isEnabled().
Referenced by setEnabled(), setGroup(), and sync().
bool QQuickLabsPlatformMenuItem::isSeparator | ( | ) | const |
\qmlproperty bool Qt.labs.platform::MenuItem::separator
This property holds whether the item is a separator line. The default value is false
.
Definition at line 307 of file qquicklabsplatformmenuitem.cpp.
bool QQuickLabsPlatformMenuItem::isVisible | ( | ) | const |
\qmlproperty bool Qt.labs.platform::MenuItem::visible
This property holds whether the item is visible. The default value is true
.
Definition at line 282 of file qquicklabsplatformmenuitem.cpp.
References QQuickLabsPlatformMenuItemGroup::isVisible().
Referenced by setGroup(), setVisible(), and sync().
QQuickLabsPlatformMenu * QQuickLabsPlatformMenuItem::menu | ( | ) | const |
\readonly \qmlproperty Menu Qt.labs.platform::MenuItem::menu
This property holds the menu that the item belongs to, or null
if the item is not in a menu.
Definition at line 174 of file qquicklabsplatformmenuitem.cpp.
|
signal |
|
signal |
QPlatformMenuItem::MenuRole QQuickLabsPlatformMenuItem::role | ( | ) | const |
\qmlproperty enumeration Qt.labs.platform::MenuItem::role
This property holds the role of the item. The role determines whether the item should be placed into the application menu on macOS.
Available values: \value MenuItem.NoRole The item should not be put into the application menu \value MenuItem.TextHeuristicRole The item should be put in the application menu based on the action's text (default) \value MenuItem.ApplicationSpecificRole The item should be put in the application menu with an application-specific role \value MenuItem.AboutQtRole The item handles the "About Qt" menu item. \value MenuItem.AboutRole The item should be placed where the "About" menu item is in the application menu. The text of the menu item will be set to "About <application name>". The application name is fetched from the {Info.plist} file in the application's bundle (See \l{Qt for macOS - Deployment}). \value MenuItem.PreferencesRole The item should be placed where the "Preferences..." menu item is in the application menu. \value MenuItem.QuitRole The item should be placed where the Quit menu item is in the application menu.
Specifying the role only has effect on items that are in the immediate menus of a menubar, not in the submenus of those menus. For example, if you have a "File" menu in your menubar and the "File" menu has a submenu, specifying a role for the items in that submenu has no effect. They will never be moved to the application menu.
Definition at line 399 of file qquicklabsplatformmenuitem.cpp.
|
signal |
|
signal |
void QQuickLabsPlatformMenuItem::setCheckable | ( | bool | checkable | ) |
Definition at line 340 of file qquicklabsplatformmenuitem.cpp.
References sync().
Referenced by setChecked().
void QQuickLabsPlatformMenuItem::setChecked | ( | bool | checked | ) |
Definition at line 363 of file qquicklabsplatformmenuitem.cpp.
References setCheckable(), and sync().
Referenced by QQuickLabsPlatformMenuItemGroup::setCheckedItem(), and toggle().
void QQuickLabsPlatformMenuItem::setEnabled | ( | bool | enabled | ) |
Definition at line 258 of file qquicklabsplatformmenuitem.cpp.
References isEnabled(), and sync().
Referenced by QQuickLabsPlatformMenu::menuItem(), and QQuickLabsPlatformMenu::setEnabled().
Definition at line 496 of file qquicklabsplatformmenuitem.cpp.
References sync().
void QQuickLabsPlatformMenuItem::setGroup | ( | QQuickLabsPlatformMenuItemGroup * | group | ) |
Definition at line 221 of file qquicklabsplatformmenuitem.cpp.
References isEnabled(), isVisible(), and sync().
Referenced by QQuickLabsPlatformMenuItemGroup::addItem(), and QQuickLabsPlatformMenuItemGroup::removeItem().
void QQuickLabsPlatformMenuItem::setIcon | ( | const QQuickLabsPlatformIcon & | icon | ) |
Definition at line 532 of file qquicklabsplatformmenuitem.cpp.
References QQuickLabsPlatformIconLoader::icon(), iconLoader(), QQuickLabsPlatformIcon::operator==(), and QQuickLabsPlatformIconLoader::setIcon().
Referenced by QQuickLabsPlatformMenu::menuItem(), and QQuickLabsPlatformMenu::setIcon().
void QQuickLabsPlatformMenuItem::setMenu | ( | QQuickLabsPlatformMenu * | menu | ) |
Definition at line 179 of file qquicklabsplatformmenuitem.cpp.
Referenced by QQuickLabsPlatformMenu::insertItem(), and QQuickLabsPlatformMenu::removeItem().
void QQuickLabsPlatformMenuItem::setRole | ( | QPlatformMenuItem::MenuRole | role | ) |
Definition at line 404 of file qquicklabsplatformmenuitem.cpp.
void QQuickLabsPlatformMenuItem::setSeparator | ( | bool | separator | ) |
Definition at line 312 of file qquicklabsplatformmenuitem.cpp.
References sync().
Definition at line 472 of file qquicklabsplatformmenuitem.cpp.
References sync().
void QQuickLabsPlatformMenuItem::setSubMenu | ( | QQuickLabsPlatformMenu * | menu | ) |
Definition at line 200 of file qquicklabsplatformmenuitem.cpp.
References sync().
Referenced by QQuickLabsPlatformMenu::menuItem().
Definition at line 424 of file qquicklabsplatformmenuitem.cpp.
References sync().
void QQuickLabsPlatformMenuItem::setVisible | ( | bool | visible | ) |
Definition at line 287 of file qquicklabsplatformmenuitem.cpp.
References isVisible(), and sync().
Referenced by QQuickLabsPlatformMenu::menuItem(), and QQuickLabsPlatformMenu::setVisible().
QVariant QQuickLabsPlatformMenuItem::shortcut | ( | ) | const |
\qmlproperty keysequence Qt.labs.platform::MenuItem::shortcut
This property holds the menu item's shortcut.
The shortcut key sequence can be set to one of the \l{QKeySequence::StandardKey}{standard keyboard shortcuts}, or it can be specified by a string containing a sequence of up to four key presses that are needed to \l{triggered}{trigger} the shortcut.
The default value is an empty key sequence.
Definition at line 453 of file qquicklabsplatformmenuitem.cpp.
|
signal |
QQuickLabsPlatformMenu * QQuickLabsPlatformMenuItem::subMenu | ( | ) | const |
\readonly \qmlproperty Menu Qt.labs.platform::MenuItem::subMenu
This property holds the sub-menu that the item contains, or null
if the item is not a sub-menu item.
Definition at line 195 of file qquicklabsplatformmenuitem.cpp.
|
signal |
void QQuickLabsPlatformMenuItem::sync | ( | ) |
Definition at line 126 of file qquicklabsplatformmenuitem.cpp.
References create(), QQuickLabsPlatformMenu::handle(), isEnabled(), QQuickLabsPlatformMenuItemGroup::isExclusive(), isVisible(), and QQuickLabsPlatformMenu::sync().
Referenced by componentComplete(), setCheckable(), setChecked(), setEnabled(), setFont(), setGroup(), setSeparator(), setShortcut(), setSubMenu(), setText(), and setVisible().
QString QQuickLabsPlatformMenuItem::text | ( | ) | const |
\qmlproperty string Qt.labs.platform::MenuItem::text
This property holds the menu item's text.
Definition at line 419 of file qquicklabsplatformmenuitem.cpp.
|
signal |
|
slot |
\qmlmethod void Qt.labs.platform::MenuItem::toggle()
Toggles the \l checked state to its opposite state.
Definition at line 546 of file qquicklabsplatformmenuitem.cpp.
References setChecked().
|
signal |
|
signal |
|
friend |
Definition at line 155 of file qquicklabsplatformmenuitem_p.h.
|
friend |
Definition at line 156 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 47 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 48 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 44 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 52 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 43 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 53 of file qquicklabsplatformmenuitem_p.h.
|
read |
Definition at line 41 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 49 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 46 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 51 of file qquicklabsplatformmenuitem_p.h.
|
read |
Definition at line 42 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 50 of file qquicklabsplatformmenuitem_p.h.
|
readwrite |
Definition at line 45 of file qquicklabsplatformmenuitem_p.h.