| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files/Malwarebytes/Anti-Malware/QtQuick/Controls/ |
Upload File : |
/****************************************************************************
**
** Copyright (C) 2021 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Quick Controls module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:COMM$
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** $QT_END_LICENSE$
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
****************************************************************************/
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.1
import QtQuick.Controls.Private 1.0
/*!
\qmltype Menu
\inqmlmodule QtQuick.Controls
\since 5.1
\ingroup menus
\ingroup controls
\brief Provides a menu component for use as a context menu, popup menu, or
as part of a menu bar.
\image menu.png
\code
Menu {
title: "Edit"
MenuItem {
text: "Cut"
shortcut: "Ctrl+X"
onTriggered: ...
}
MenuItem {
text: "Copy"
shortcut: "Ctrl+C"
onTriggered: ...
}
MenuItem {
text: "Paste"
shortcut: "Ctrl+V"
onTriggered: ...
}
MenuSeparator { }
Menu {
title: "More Stuff"
MenuItem {
text: "Do Nothing"
}
}
}
\endcode
The main uses for menus:
\list
\li
as a \e top-level menu in a \l MenuBar
\li
as a \e submenu inside another menu
\li
as a standalone or \e context menu
\endlist
Note that some properties, such as \c enabled, \c text, or \c iconSource,
only make sense in a particular use case of the menu.
\sa MenuBar, MenuItem, MenuSeparator
*/
MenuPrivate {
id: root
/*! \internal
\omit
Documented in qqquickmenu.cpp.
\endomit
*/
function addMenu(title) {
return root.insertMenu(items.length, title)
}
/*! \internal
\omit
Documented in qquickmenu.cpp.
\endomit
*/
function insertMenu(index, title) {
if (!__selfComponent)
__selfComponent = Qt.createComponent("Menu.qml", root)
var submenu = __selfComponent.createObject(__selfComponent, { "title": title })
root.insertItem(index, submenu)
return submenu
}
/*! \internal */
property Component __selfComponent: null
/*! \qmlproperty Component Menu::style
\since QtQuick.Controls.Styles 1.2
The style Component for this control.
\sa {MenuStyle}
*/
property Component style
Component.onCompleted: {
if (!style) {
__usingDefaultStyle = true
style = Qt.binding(function() { return Settings.styleComponent(Settings.style, "MenuStyle.qml", root) })
}
}
/*! \internal */
property bool __usingDefaultStyle: false
/*! \internal */
property var __parentContentItem: __parentMenu ? __parentMenu.__contentItem : null
/*! \internal */
property int __currentIndex: -1
/*! \internal */
onAboutToHide: __currentIndex = -1
on__MenuPopupDestroyed: contentLoader.active = false
onPopupVisibleChanged: {
if (__popupVisible)
contentLoader.active = true
}
/*! \internal */
__contentItem: Loader {
id: contentLoader
Component {
id: menuContent
MenuContentItem {
__menu: root
}
}
sourceComponent: root.__isNative ? null : menuContent
active: false
focus: true
Keys.forwardTo: item ? [item, root.__parentContentItem] : []
property bool altPressed: root.__parentContentItem ? root.__parentContentItem.altPressed : false
}
}