helper for adding checkbox menu items - for buggins/dlangide#302

This commit is contained in:
Vadim Lopatin 2017-09-18 10:48:39 +03:00
parent c125af3ff5
commit c2337589ce
3 changed files with 9 additions and 1 deletions

View File

@ -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) {

View File

@ -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;

View File

@ -1 +1 @@
v0.9.137
v0.9.138