/usr/share/gupnp-tools/gupnp-network-light.ui is in gupnp-tools 0.8.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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | <?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<object class="GtkAboutDialog" id="about-dialog">
<property name="can_focus">False</property>
<property name="type_hint">normal</property>
<property name="copyright" translatable="yes">Copyright (C) 2007 Zeeshan Ali (Khattak)</property>
<property name="comments" translatable="yes">A virtual network light bulb based on GUPnP framework.
Inspired by Intel Tools for UPnP.</property>
<property name="website">http://www.gupnp.org/</property>
<property name="website_label" translatable="yes">GUPnP homepage</property>
<property name="authors">Zeeshan Ali (Khattak) <zeeshanak@gnome.org></property>
<property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
<property name="artists">Lapo Calamandrei <calamandrei@gmail.com></property>
<property name="license_type">gpl-2-0</property>
<signal name="close" handler="gtk_widget_hide" swapped="no"/>
<signal name="response" handler="gtk_widget_hide" swapped="no"/>
<child internal-child="vbox">
<object class="GtkBox" id="dialog-vbox1">
<property name="can_focus">False</property>
<child internal-child="action_area">
<object class="GtkButtonBox" id="dialog-action_area1">
<property name="can_focus">False</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="pack_type">end</property>
<property name="position">0</property>
</packing>
</child>
</object>
</child>
</object>
<object class="GtkWindow" id="main-window">
<property name="can_focus">False</property>
<property name="events">GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
<property name="title" translatable="yes">GUPnP Network Light</property>
<property name="window_position">center</property>
<signal name="button-press-event" handler="on_main_window_button_event" swapped="no"/>
<signal name="button-release-event" handler="on_main_window_button_event" swapped="no"/>
<signal name="delete-event" handler="on_delete_event" swapped="no"/>
<child>
<object class="GtkImage" id="light-bulb-image">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="stock">gtk-missing-image</property>
</object>
</child>
</object>
<object class="GtkMenu" id="popup-menu">
<property name="can_focus">False</property>
<child>
<object class="GtkCheckMenuItem" id="light-status-menuitem">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="use_action_appearance">False</property>
<child>
<object class="GtkLabel" id="light-status-menuitem-label">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="xalign">0</property>
<property name="label" translatable="yes" context="network-light">_On</property>
<property name="use_underline">True</property>
<attributes>
<attribute name="weight" value="bold"/>
</attributes>
</object>
</child>
<signal name="activate" handler="on_light_status_menuitem_activate" swapped="no"/>
</object>
</child>
<child>
<object class="GtkSeparatorMenuItem" id="separator1">
<property name="visible">True</property>
<property name="can_focus">False</property>
</object>
</child>
<child>
<object class="GtkMenuItem" id="increase_luminance_menuitem">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">_Increase luminance by 20%</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_increase_luminance_menuitem_activate" swapped="no"/>
</object>
</child>
<child>
<object class="GtkMenuItem" id="decrease_luminance_menuitem">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">_Decrease luminance by 20%</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_decrease_luminance_menuitem_activate" swapped="no"/>
</object>
</child>
<child>
<object class="GtkSeparatorMenuItem" id="separator2">
<property name="visible">True</property>
<property name="can_focus">False</property>
</object>
</child>
<child>
<object class="GtkMenuItem" id="about_menuitem">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">_About</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_about_menuitem_activate" swapped="no"/>
</object>
</child>
</object>
</interface>
|