mirror of https://github.com/buggins/dlangui.git
helper for adding checkbox menu items - for buggins/dlangide#302
This commit is contained in:
parent
c125af3ff5
commit
c2337589ce
|
@ -242,6 +242,7 @@ struct ActionState {
|
|||
const ACTION_STATE_ENABLED = ActionState(true, true, false);
|
||||
const ACTION_STATE_DISABLE = ActionState(false, true, false);
|
||||
const ACTION_STATE_INVISIBLE = ActionState(false, false, false);
|
||||
const ACTION_STATE_CHECKED = ActionState(true, true, true);
|
||||
|
||||
/// Match key flags
|
||||
static bool matchKeyFlags(uint eventFlags, uint requestedFlags) {
|
||||
|
|
|
@ -207,6 +207,13 @@ class MenuItem {
|
|||
subitem._parent = this;
|
||||
return this;
|
||||
}
|
||||
/// adds submenu checkbox item
|
||||
MenuItem addCheck(const Action a) {
|
||||
MenuItem res = new MenuItem(a);
|
||||
res.type = MenuItemType.Check;
|
||||
add(res);
|
||||
return this;
|
||||
}
|
||||
/// adds submenu item(s) from one or more actions (will return item for last action)
|
||||
MenuItem add(Action[] subitemActions...) {
|
||||
MenuItem res = null;
|
||||
|
|
|
@ -1 +1 @@
|
|||
v0.9.137
|
||||
v0.9.138
|
Loading…
Reference in New Issue