blob: 7d42594d2e9600b30e5cdfeaa1925c23b3f277fe (
plain) (
blame)
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"?>
<interface>
<requires lib="gtk+" version="2.16"/>
<!-- interface-naming-policy project-wide -->
<object class="GtkToolbar" id="search_widget">
<property name="visible">True</property>
<property name="icon_size">2</property>
<property name="toolbar_style">GTK_TOOLBAR_BOTH_HORIZ</property>
<child>
<object class="GtkToolButton" id="search_close">
<property name="visible">True</property>
<property name="is_important">True</property>
<property name="receives_default">True</property>
<property name="icon_name">gtk-close</property>
</object>
<packing>
<property name="expand">False</property>
<property name="homogeneous">True</property>
</packing>
</child>
<child>
<object class="GtkToolItem" id="search_entry_toolitem">
<property name="visible">True</property>
<child>
<object class="GtkAlignment" id="alignment1">
<property name="visible">True</property>
<child>
<object class="GtkHBox" id="hbox1">
<property name="visible">True</property>
<property name="spacing">6</property>
<child>
<object class="GtkLabel" id="search_label">
<property name="visible">True</property>
<property name="label" translatable="yes">Find:</property>
</object>
</child>
<child>
<object class="GtkEntry" id="search_entry">
<property name="visible">True</property>
<property name="can_focus">True</property>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
<child>
<object class="GtkToolButton" id="search_previous">
<property name="label" translatable="yes">Find Previous</property>
<property name="visible">True</property>
<property name="is_important">True</property>
<property name="icon_name">gtk-go-back-ltr</property>
</object>
<packing>
<property name="homogeneous">True</property>
</packing>
</child>
<child>
<object class="GtkToolButton" id="search_next">
<property name="label" translatable="yes">Find Next</property>
<property name="visible">True</property>
<property name="is_important">True</property>
<property name="icon_name">gtk-go-forward-ltr</property>
</object>
<packing>
<property name="homogeneous">True</property>
</packing>
</child>
<child>
<object class="GtkToolItem" id="search_match_case_toolitem">
<property name="visible">True</property>
<property name="is_important">True</property>
<child>
<object class="GtkCheckButton" id="search_match_case">
<property name="label" translatable="yes">Match case</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="draw_indicator">True</property>
</object>
</child>
</object>
<packing>
<property name="homogeneous">True</property>
</packing>
</child>
<child>
<object class="GtkToolItem" id="search_not_found_toolitem">
<property name="visible">True</property>
<child>
<object class="GtkAlignment" id="alignment2">
<property name="visible">True</property>
<property name="left_padding">6</property>
<child>
<object class="GtkHBox" id="search_not_found">
<property name="spacing">6</property>
<child>
<object class="GtkImage" id="image1">
<property name="visible">True</property>
<property name="stock">gtk-dialog-error</property>
</object>
<packing>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="not_found_label">
<property name="visible">True</property>
<property name="label" translatable="yes">Phrase not found</property>
</object>
<packing>
<property name="position">1</property>
</packing>
</child>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</interface>
|