MenuGroup QML Type
Logical list of items for a menu. More...
Properties
- data : list<Object>
Signals
Methods
- addObject(Object object)
- removeObject(Object object)
Detailed Description
Example usage:
import QtQuick 2.4 import Lomiri.Components 1.3 import Lomiri.Components.Labs 1.0 Menu { text: "Edit" MenuGroup { Action { text: "Undo" } Action { text: "Redo" } } MenuGroup { Action { text: "Cut" } ActionList { Action { text: "Copy" } Action { text: "Paste" } } } MenuGroup { Action { text: "Select All" } } }
Property Documentation
[default] data : list<Object> |
Signal Documentation
Signal called when a action is added to the list
Note: The corresponding handler is onAdded
.
Signal called when the contents of the group change, including child content changes (eg. ActionList child add/remove)
Note: The corresponding handler is onChanged
.
Signal called when a action is removed from the list
Note: The corresponding handler is onRemoved
.