forked from paperwm/PaperWM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KeybindingsRow.ui
123 lines (113 loc) · 4.57 KB
/
KeybindingsRow.ui
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
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0" />
<template class="KeybindingsRow" parent="GtkListBoxRow">
<style>
<class name="keybinding" />
</style>
<property name="selectable">False</property>
<property name="activatable">True</property>
<property name="focusable">True</property>
<child>
<object class="GtkBox">
<property name="orientation">vertical</property>
<child>
<object class="GtkBox" id="header">
<property name="spacing">12</property>
<style>
<class name="header" />
</style>
<child>
<object class="GtkLabel" id="descLabel">
<style>
<class name="description" />
</style>
<property name="ellipsize">end</property>
<property name="halign">start</property>
<property name="lines">1</property>
<property name="wrap">False</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkImage" id="conflictIcon">
<property name="visible">False</property>
<property name="icon-name">dialog-error-symbolic</property>
<property name="halign">start</property>
</object>
</child>
<child>
<object class="GtkLabel" id="accelLabel">
<property name="hexpand">True</property>
<property name="halign">end</property>
<property name="xalign">1.0</property>
<property name="use-markup">True</property>
<style>
<class name="dim-label" />
</style>
</object>
</child>
</object>
</child>
<child>
<object class="GtkRevealer" id="revealer">
<child>
<object class="GtkGrid">
<property name="hexpand">True</property>
<child>
<object class="GtkListBox" id="comboList">
<property name="activate-on-single-click">True</property>
<property name="hexpand">True</property>
<property name="selection-mode">none</property>
<style>
<class name="combos" />
</style>
<signal name="row-activated"
handler="_onRowActivated" />
<layout>
<property name="row">0</property>
<property name="column">0</property>
<property name="column-span">2</property>
</layout>
</object>
</child>
<child>
<object class="GtkButton" id="resetButton">
<property name="label" translatable="yes">Reset</property>
<property name="action-name">keybinding.reset</property>
<property name="halign">start</property>
<property name="margin-start">12px</property>
<property name="margin-top">8px</property>
<property name="margin-bottom">8px</property>
<layout>
<property name="row">1</property>
<property name="column">0</property>
</layout>
</object>
</child>
<child>
<object class="GtkButton" id="addButton">
<property name="label" translatable="yes">Add shortcut…</property>
<property name="action-name">keybinding.add</property>
<property name="hexpand">True</property>
<property name="halign">end</property>
<property name="margin-top">8px</property>
<property name="margin-end">12px</property>
<property name="margin-bottom">8px</property>
<layout>
<property name="row">1</property>
<property name="column">1</property>
</layout>
<style>
<class name="suggested-action" />
</style>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
</template>
</interface>