Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
<property name="label" translatable="yes">Reduce screen brightness when computer is inactive for:</property>
</object>
<packing>
<property name="expand">False</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkHScale" id="brg-on-battery">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="adjustment">adjustment8</property>
<property name="digits">0</property>
<property name="value_pos">bottom</property>
<signal name="value_changed" handler="brightness_on_battery_value_changed_cb"/>
<signal name="format_value" handler="format_brightness_value_cb"/>
</object>
<packing>
<property name="expand">False</property>
<property name="position">1</property>
</packing>
</child>
</object>
</child>
</object>
</child>
<child type="label">
<object class="GtkLabel" id="label40">
<property name="visible">True</property>
<property name="label" translatable="yes"><b>Brightness</b></property>
<property name="use_markup">True</property>
</object>
</child>
<property name="expand">False</property>
<property name="position">1</property>
</packing>
</child>
<packing>
<property name="position">1</property>
</packing>
</child>
<child type="tab">
<object class="GtkLabel" id="monitor-on-battery">
<property name="visible">True</property>
<property name="label" translatable="yes">Monitor</property>
</object>
<packing>
<property name="position">1</property>
<property name="tab_fill">False</property>
</packing>
<child>
<placeholder/>
</child>
<child type="tab">
<placeholder/>
</child>
<packing>
<property name="position">2</property>
</packing>
</child>
<placeholder/>
Ali Abdallah
committed
<child>
<object class="GtkViewport" id="advanced">
Ali Abdallah
committed
<property name="visible">True</property>
<child>
<object class="GtkFrame" id="frame1">
Ali Abdallah
committed
<property name="visible">True</property>
<property name="border_width">12</property>
<property name="label_xalign">0</property>
<property name="shadow_type">none</property>
Ali Abdallah
committed
<child>
<object class="GtkAlignment" id="alignment1">
Ali Abdallah
committed
<property name="visible">True</property>
<property name="left_padding">12</property>
<property name="right_padding">6</property>
Ali Abdallah
committed
<child>
<object class="GtkVBox" id="vbox2">
Ali Abdallah
committed
<property name="visible">True</property>
<property name="orientation">vertical</property>
<property name="spacing">6</property>
Ali Abdallah
committed
<child>
<object class="GtkTable" id="table1">
Ali Abdallah
committed
<property name="visible">True</property>
<property name="n_rows">3</property>
<property name="n_columns">2</property>
<property name="column_spacing">12</property>
<property name="row_spacing">6</property>
Ali Abdallah
committed
<child>
<object class="GtkVBox" id="vbox5">
Ali Abdallah
committed
<property name="visible">True</property>
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
<property name="orientation">vertical</property>
<child>
<object class="GtkRadioButton" id="inactivity-suspend">
<property name="label" translatable="yes">Suspend</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="active">True</property>
<property name="draw_indicator">True</property>
<signal name="toggled" handler="set_suspend_inactivity"/>
</object>
<packing>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkRadioButton" id="inactivity-hibernate">
<property name="label" translatable="yes">Hibernate</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="draw_indicator">True</property>
<property name="group">inactivity-suspend</property>
<signal name="toggled" handler="set_hibernate_inactivity"/>
</object>
<packing>
<property name="position">1</property>
</packing>
</child>
Ali Abdallah
committed
<packing>
<property name="left_attach">1</property>
<property name="right_attach">2</property>
<property name="x_options">GTK_FILL</property>
Ali Abdallah
committed
</packing>
</child>
<child>
<object class="GtkVBox" id="vbox3">
Ali Abdallah
committed
<property name="visible">True</property>
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
<property name="orientation">vertical</property>
<child>
<object class="GtkRadioButton" id="sleep-dpms-mode">
<property name="label" translatable="yes">Standby</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="active">True</property>
<property name="draw_indicator">True</property>
<signal name="toggled" handler="set_dpms_standby_mode"/>
</object>
<packing>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkRadioButton" id="suspend-dpms-mode">
<property name="label" translatable="yes">Suspend</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="draw_indicator">True</property>
<property name="group">sleep-dpms-mode</property>
<signal name="toggled" handler="set_dpms_suspend_mode"/>
</object>
<packing>
<property name="position">1</property>
</packing>
</child>
Ali Abdallah
committed
<packing>
<property name="left_attach">1</property>
<property name="right_attach">2</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options">GTK_FILL</property>
Ali Abdallah
committed
</packing>
</child>
Ali Abdallah
committed
<child>
<object class="GtkLabel" id="label7">
Ali Abdallah
committed
<property name="visible">True</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">Set computer inactivity sleep mode:</property>
Ali Abdallah
committed
<packing>
<property name="x_options">GTK_FILL</property>
Ali Abdallah
committed
</packing>
</child>
<child>
<object class="GtkLabel" id="critical-level-label">
Ali Abdallah
committed
<property name="visible">True</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">Consider the computer on low power at:</property>
Ali Abdallah
committed
<packing>
<property name="top_attach">2</property>
<property name="bottom_attach">3</property>
<property name="x_options">GTK_FILL</property>
Ali Abdallah
committed
</packing>
</child>
Ali Abdallah
committed
<child>
<object class="GtkSpinButton" id="critical-spin">
Ali Abdallah
committed
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="invisible_char">●</property>
<property name="adjustment">adjustment9</property>
<signal name="value_changed" handler="critical_level_value_changed_cb"/>
<signal name="output" handler="critical_spin_output_cb"/>
Ali Abdallah
committed
<packing>
<property name="left_attach">1</property>
<property name="right_attach">2</property>
<property name="top_attach">2</property>
<property name="bottom_attach">3</property>
<property name="x_options">GTK_FILL</property>
Ali Abdallah
committed
</packing>
</child>
<child>
<object class="GtkLabel" id="dpms-mode-label">
Ali Abdallah
committed
<property name="visible">True</property>
<property name="xalign">0</property>
Ali Abdallah
committed
<property name="label" translatable="yes">Set monitor sleep mode:</property>
Ali Abdallah
committed
<packing>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options">GTK_FILL</property>
Ali Abdallah
committed
</packing>
</child>
Ali Abdallah
committed
<packing>
<property name="expand">False</property>
<property name="position">0</property>
Ali Abdallah
committed
</packing>
</child>
Ali Abdallah
committed
<child>
<object class="GtkCheckButton" id="cpu-freq">
<property name="label" translatable="yes">CPU frequency control</property>
Ali Abdallah
committed
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="draw_indicator">True</property>
<signal name="toggled" handler="cpu_freq_control_changed_cb"/>
Ali Abdallah
committed
<packing>
<property name="expand">False</property>
<property name="position">1</property>
Ali Abdallah
committed
</packing>
</child>
<child>
<object class="GtkCheckButton" id="lock-screen">
<property name="label" translatable="yes">Lock screen when going for suspend/hibernate</property>
Ali Abdallah
committed
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>
<property name="draw_indicator">True</property>
<signal name="toggled" handler="lock_screen_toggled_cb"/>
Ali Abdallah
committed
<packing>
<property name="expand">False</property>
<property name="position">2</property>
Ali Abdallah
committed
</packing>
</child>
Ali Abdallah
committed
</child>
Ali Abdallah
committed
</child>
<child type="label">
<object class="GtkLabel" id="label5">
<property name="visible">True</property>
<property name="label" translatable="yes"><b>Advanced Options</b></property>
<property name="use_markup">True</property>
</object>
</child>
Ali Abdallah
committed
</child>
Ali Abdallah
committed
<packing>
<property name="position">3</property>
</packing>
</child>
<placeholder/>
Ali Abdallah
committed
</child>
<packing>
<property name="position">1</property>
</packing>
</child>
<packing>
<property name="position">0</property>
</packing>
<packing>
<property name="position">1</property>
</packing>
</child>
<child internal-child="action_area">
<object class="GtkHButtonBox" id="dialog-action_area">
<property name="visible">True</property>
<child>
<object class="GtkButton" id="help-button">
Ali Abdallah
committed
<property name="label">gtk-help</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="use_stock">True</property>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkButton" id="close-button">
Ali Abdallah
committed
<property name="label">gtk-close</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="use_stock">True</property>
<property name="expand">False</property>
<property name="fill">False</property>
<property name="position">1</property>
</packing>
</child>
<packing>
<property name="expand">False</property>
<property name="pack_type">end</property>
<property name="position">0</property>
</packing>
</child>
<action-widgets>
<action-widget response="0">help-button</action-widget>
<action-widget response="0">close-button</action-widget>
</action-widgets>
</object>
</interface>