Bug 6358 - Define hotkey for menu call
Status: RESOLVED WONTFIX
Alias: None
Product: Openbox
Classification: Unclassified
Component: general
Version: unspecified
Hardware: PC Linux
: P3 normal
Assignee: Dana Jansens
QA Contact:
URL:
Depends on: 6357
Blocks:
 
Reported: 2015-01-20 09:00 EST by Alexey Korop
Modified: 2018-03-12 09:11:25 EDT
1 user (show)

See Also:


Attachments
keybind_menu.patch (3.44 KB, patch)
2015-01-20 09:00 EST, Alexey Korop
keybind_menu2.patch (4.65 KB, patch)
2015-03-16 14:48 EDT, Alexey Korop

Description Alexey Korop 2015-01-20 09:00:30 EST
Created attachment 3510 [details]
keybind_menu.patch

Add the "key" property to the (sub)menu definition that allow to define the hotkey for ShowMenu action.

Exampe:

menu.xml
    <menu id="desktop-app-menu"
      label="Applications"
      execute="xdg_menu --format openbox3-pipe"
      key="W-a"
    </menu>

This is equivalent of

menu.xml
    <menu id="desktop-app-menu"
      label="Applications"
      execute="xdg_menu --format openbox3-pipe"
    </menu>

rc.xml
    <keybind key="W-a">
      <action name="ShowMenu">
        <menu> desktop-app-menu </menu>
      </action>
    </keybind>
Comment 1 Alexey Korop 2015-03-16 14:48:12 EDT
Created attachment 3522 [details]
keybind_menu2.patch

adapted to the current state of the "master" branch
Comment 2 Mikachu 2018-03-12 08:54:54 EDT
This and your other patch save a little bit of time configurating maybe, but it's a big layering violation that I think just end up making things more complicated, more places where you have to look to find a keybind etc.
Comment 3 Alexey Korop 2018-03-12 09:11:25 EDT
It is very rare that a user command should be called only with a key, but not through a menu. Therefore, there is only one place where you need to look for the definition of a key - this is the menu.xml. And, most importantly, there is only one place where you need to look for the definition of the team itself - menu.xml.
Copypast-style is very bad. This is the risk of problems when making corrections.