Interface Kit: Add support for shortcuts w/o Command
Introduce B_NO_COMMAND_KEY modifier that is used when a shortcut has no Command modifier, otherwise B_COMMAND_KEY modifier is added. This is conceptually different from B_NO_MODIFIERS in that it allows other modifiers such as B_CONTROL_KEY, B_SHIFT_KEY and B_OPTION_KEY to be added to a shortcut, but not B_COMMAND_KEY. This option is required to remove B_COMMAND_KEY because the Command modifier is assumed to be present on all shortcuts. This allows us to break this assumption without breaking apps written before this change and assume B_COMMAND_KEY to be present even if it has not been explictly added. Document B_NO_COMMAND_KEY in BMenuItem and BWindow docs. Fixes #7078 Co-authored-by: X512 <[email protected]> Co-authored-by: Ryan Leavengood <[email protected]> Change-Id: If0e20cd848112898f4425ede8c17231dc50deb8a Reviewed-on: https://review.haiku-os.org/c/haiku/+/7293 Tested-by: Commit checker robot <[email protected]> Reviewed-by: nephele nephele <[email protected]>
This commit is contained in:
co-authored by
X512
Ryan Leavengood
parent
a5f92820b7
commit
1e2091ced5
@@ -165,7 +165,8 @@ enum {
|
||||
B_LEFT_CONTROL_KEY = 0x00001000,
|
||||
B_RIGHT_CONTROL_KEY = 0x00002000,
|
||||
B_LEFT_OPTION_KEY = 0x00004000,
|
||||
B_RIGHT_OPTION_KEY = 0x00008000
|
||||
B_RIGHT_OPTION_KEY = 0x00008000,
|
||||
B_NO_COMMAND_KEY = 0x00010000
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user