Codebase list lightdm-gtk-greeter-settings / 052fa77
"indicators" option: default value Andrew P. 9 years ago
3 changed file(s) with 33 addition(s) and 32 deletion(s). Raw diff Collapse all Expand all
8181 </columns>
8282 <data>
8383 <row>
84 <col id="0">~host</col>
85 <col id="1" translatable="yes" context="option|indicators">Host name</col>
86 <col id="2">False</col>
87 <col id="3">True</col>
88 <col id="4">False</col>
89 </row>
90 <row>
91 <col id="0">~clock</col>
92 <col id="1" translatable="yes" context="option|indicators">Clock</col>
93 <col id="2">False</col>
94 <col id="3">True</col>
95 <col id="4">False</col>
96 </row>
97 <row>
98 <col id="0">~layout</col>
99 <col id="1" translatable="yes" context="option|indicators">Layout indicator</col>
100 <col id="2">False</col>
101 <col id="3">True</col>
102 <col id="4">False</col>
103 </row>
104 <row>
84105 <col id="0">~session</col>
85106 <col id="1" translatable="yes" context="option|indicators">Sessions menu (xfce, unity, gnome etc.)</col>
86107 <col id="2">False</col>
88109 <col id="4">False</col>
89110 </row>
90111 <row>
91 <col id="0">~power</col>
92 <col id="1" translatable="yes" context="option|indicators">Power menu</col>
112 <col id="0">~language</col>
113 <col id="1" translatable="yes" context="option|indicators">Languages menu</col>
93114 <col id="2">False</col>
94115 <col id="3">True</col>
95116 <col id="4">False</col>
102123 <col id="4">False</col>
103124 </row>
104125 <row>
105 <col id="0">~language</col>
106 <col id="1" translatable="yes" context="option|indicators">Languages menu</col>
107 <col id="2">False</col>
108 <col id="3">True</col>
109 <col id="4">False</col>
110 </row>
111 <row>
112 <col id="0">~layout</col>
113 <col id="1" translatable="yes" context="option|indicators">Layout indicator</col>
114 <col id="2">False</col>
115 <col id="3">True</col>
116 <col id="4">False</col>
117 </row>
118 <row>
119 <col id="0">~host</col>
120 <col id="1" translatable="yes" context="option|indicators">Host name</col>
121 <col id="2">False</col>
122 <col id="3">True</col>
123 <col id="4">False</col>
124 </row>
125 <row>
126 <col id="0">~clock</col>
127 <col id="1" translatable="yes" context="option|indicators">Clock</col>
126 <col id="0">~power</col>
127 <col id="1" translatable="yes" context="option|indicators">Power menu</col>
128128 <col id="2">False</col>
129129 <col id="3">True</col>
130130 <col id="4">False</col>
170170 <col id="1" translatable="yes" context="option|rgba">Vertical BGR</col>
171171 </row>
172172 </data>
173 </object>
174 <object class="GtkAdjustment" id="timeout_adjustment">
175 <property name="upper">119</property>
176 <property name="step_increment">1</property>
177 <property name="page_increment">10</property>
173178 </object>
174179 <object class="GtkGreeterSettingsWindow" id="settings_window">
175180 <property name="can_focus">False</property>
16961701 </object>
16971702 </child>
16981703 </object>
1699 <object class="GtkAdjustment" id="timeout_adjustment">
1700 <property name="upper">119</property>
1701 <property name="step_increment">1</property>
1702 <property name="page_increment">10</property>
1703 </object>
17041704 <object class="GtkMenu" id="userimage_menu">
17051705 <property name="visible">True</property>
17061706 <property name="can_focus">False</property>
6262 'show-clock': (OptionEntry.BooleanEntry, 'show_clock', False),
6363 'clock-format': (OptionEntry.ClockFormatEntry, 'clock_format',
6464 '%a, %H:%M'),
65 'indicators': (OptionEntry.IndicatorsEntry, 'indicators', None),
65 'indicators': (OptionEntry.IndicatorsEntry, 'indicators',
66 '~host;~expander;~clock;~expander;~language;~session;~a11y;~power'),
6667 # Position
6768 'position': (OptionEntry.PositionEntry, 'position', '50%,center'),
6869 # Misc
1515 # with this program. If not, see <http://www.gnu.org/licenses/>.
1616
1717 from builtins import isinstance
18 from collections import namedtuple, OrderedDict
18 from collections import OrderedDict
1919 from itertools import product
2020 from locale import gettext as _
2121 import os