forked from GittyMac/PanelNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprefs.xml
More file actions
89 lines (82 loc) · 3.16 KB
/
prefs.xml
File metadata and controls
89 lines (82 loc) · 3.16 KB
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
<?xml version="1.0"?>
<interface>
<object class="GtkAdjustment" id="Adjust_1">
<property name="lower">0</property>
<property name="upper">99</property>
<property name="step_increment">1</property>
</object>
<object class="AdwPreferencesPage" id="page_basic">
<property name="title" translatable="yes">General</property>
<property name="icon-name">preferences-system-symbolic</property>
<child>
<object class="AdwPreferencesGroup" id="group_main_note">
<property name="title" translatable="yes">Default Note</property>
<property name="description" translatable="yes">Shown when no scheduled note is active</property>
<child>
<object class="AdwActionRow" id="row_main_note">
<property name="title" translatable="yes">Note Text</property>
<child type="suffix">
<object class="GtkEntry" id="field_main_note">
<property name="valign">3</property>
<property name="hexpand">true</property>
<property name="max-width-chars">50</property>
</object>
</child>
</object>
</child>
</object>
</child>
<child>
<object class="AdwPreferencesGroup" id="group_time_notes">
<property name="title" translatable="yes">Scheduled Notes</property>
<property name="description" translatable="yes">Notes that appear automatically during a set time range. Left-click the panel note to quickly edit the active one.</property>
</object>
</child>
<child>
<object class="AdwPreferencesGroup">
<property name="title" translatable="yes">Position</property>
<property name="description" translatable="yes">Place the note in a specific area of the panel</property>
<child>
<object class="AdwActionRow">
<property name="title" translatable="yes">Enable Custom Position</property>
<property name="activatable-widget">field_enablepositioning</property>
<child type="prefix">
<object class="GtkSwitch" id="field_enablepositioning">
<property name="valign">3</property>
<property name="active">false</property>
</object>
</child>
</object>
</child>
<child>
<object class="AdwActionRow" id="row_position_area">
<property name="title" translatable="yes">Panel Area</property>
<property name="subtitle" translatable="yes">Choose which section of the panel to place the note in</property>
<child type="suffix">
<object class="GtkComboBoxText" id="field_position">
<property name="valign">3</property>
<items>
<item translatable="yes" id="0">Left</item>
<item translatable="yes" id="1">Center</item>
<item translatable="yes" id="2">Right</item>
</items>
</object>
</child>
</object>
</child>
<child>
<object class="AdwActionRow" id="row_position_index">
<property name="title" translatable="yes">Order Index</property>
<property name="subtitle" translatable="yes">Position within the selected area (0 = first)</property>
<child type="suffix">
<object class="GtkSpinButton" id="field_positionnumber">
<property name="valign">3</property>
<property name="adjustment">Adjust_1</property>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</interface>