/usr/share/dfeet/default-actiongroup.ui is in d-feet 0.1.14-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | <?xml version="1.0" standalone="no"?>
<interface>
<object class="GtkUIManager" id="default-uiman">
<child>
<object class="GtkActionGroup" id="DefaultActions">
<child>
<object class="GtkAction" id="file_toplevel">
<property name="label" translatable="yes">_File</property>
</object>
</child>
<child>
<object class="GtkAction" id="add_bus_address">
<property name="name">add_bus_address</property>
<property name="label" translatable="yes">Connect to _Other Bus...</property>
<property name="short_label" translatable="yes">Bus...</property>
<property name="tooltip" translatable="yes">Add a bus tab using an address</property>
<property name="stock_id">gtk-connect</property>
<signal handler="add_bus_address" name="activate"/>
</object>
</child>
<child>
<object class="GtkAction" id="reconnect_current_bus">
<property name="name">reconnect_current_bus</property>
<property name="label" translatable="yes">Reconnect current Bus...</property>
<property name="short_label" translatable="yes">Reconnect</property>
<property name="tooltip" translatable="yes">Reconnect the bus of the current tab address</property>
<property name="sensitive">False</property>
<property name="stock_id">gtk-refresh</property>
<signal handler="reconnect_current_bus" name="activate"/>
</object>
</child>
<child>
<object class="GtkAction" id="add_session_bus">
<property name="name">add_session_bus</property>
<property name="label" translatable="yes">Connect to S_ession Bus</property>
<property name="short_label" translatable="yes">Session</property>
<property name="tooltip" translatable="yes">Add a session bus tab</property>
<signal handler="add_session_bus" name="activate"/>
</object>
</child>
<child>
<object class="GtkAction" id="add_system_bus">
<property name="name">add_system_bus</property>
<property name="label" translatable="yes">Connect to S_ystem Bus</property>
<property name="short_label" translatable="yes">System</property>
<property name="tooltip" translatable="yes">Add a system bus tab</property>
<signal handler="add_system_bus" name="activate"/>
</object>
</child>
<child>
<object class="GtkAction" id="execute_method">
<property name="name">execute_method</property>
<property name="label" translatable="yes">E_xecute Method</property>
<property name="short_label" translatable="yes">Execute</property>
<property name="tooltip" translatable="yes">Execute the selected method</property>
<property name="sensitive">False</property>
<property name="stock_id">gtk-execute</property>
<signal handler="execute_method" name="activate"/>
</object>
</child>
<child>
<object class="GtkAction" id="quit">
<property name="name">quit</property>
<property name="label" translatable="yes">_Quit</property>
<property name="tooltip" translatable="yes">Quit D-Feet</property>
<property name="stock_id">gtk-quit</property>
<signal handler="quit" name="activate"/>
</object>
</child>
</object>
</child>
<ui>
<menubar name="menubar1">
<menu action="file_toplevel">
<menuitem name="ConnSessionMenu" action="add_session_bus" />
<menuitem name="ConnSystemMenu" action="add_system_bus" />
<menuitem name="ConnOtherMenu" action="add_bus_address" />
<menuitem name="QuitMenu" action="quit" />
</menu>
</menubar>
<toolbar name="toolbar1">
<toolitem name="ConnOtherTool" action="add_bus_address">
<!-- FIXME: This doesn't work and needs to be fixed in Gtk
so that the GtkAction can specify using GtkToolMenuButton
instead of just a regular GtkToolButton
<menu action="file_toplevel">
<menuitem name="ConnSessionMenu" action="add_session_bus" />
<menuitem name="ConnSystemMenu" action="add_system_bus" />
</menu>
-->
</toolitem>
<toolitem name="ConnReconnect" action="reconnect_current_bus"/>
<separator/>
<toolitem name="ExecuteMethod" action="execute_method"/>
</toolbar>
</ui>
</object>
</interface>
|