diff options
author | Thomas White <taw@bitwiz.me.uk> | 2018-03-31 19:18:58 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.me.uk> | 2018-03-31 19:19:42 +0200 |
commit | d21213ef38b2027e3ac668d6906d0ff439b1885a (patch) | |
tree | 5b14fa8a8ed422ce585e4bb8901c2ef0c110daad /data/app-menu.ui | |
parent | 2e5cf1278d8976a1d714c5fe2b0b58fd9175d975 (diff) |
Use GResource for app menu and menu bar
Diffstat (limited to 'data/app-menu.ui')
-rw-r--r-- | data/app-menu.ui | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/data/app-menu.ui b/data/app-menu.ui new file mode 100644 index 0000000..33165ac --- /dev/null +++ b/data/app-menu.ui @@ -0,0 +1,32 @@ +<?xml version="1.0"?> +<interface> + <menu id='app-menu'> + <section> + <item> + <attribute name='label'>_New</attribute> + <attribute name='action'>app.new</attribute> + <attribute name='accel'><Primary>n</attribute> + </item> + <item> + <attribute name='label'>_Open...</attribute> + <attribute name='action'>app.open</attribute> + <attribute name='accel'><Primary>o</attribute> + </item> + <item> + <attribute name='label'>Preferences</attribute> + <attribute name='action'>app.prefs</attribute> + </item> + </section> + <section> + <item> + <attribute name='label'>_About</attribute> + <attribute name='action'>app.about</attribute> + </item> + <item> + <attribute name='label'>_Quit</attribute> + <attribute name='action'>app.quit</attribute> + <attribute name='accel'><Primary>q</attribute> + </item> + </section> + </menu> +</interface> |