-
Notifications
You must be signed in to change notification settings - Fork 0
/
window.ui
84 lines (84 loc) · 2.58 KB
/
window.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
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="LitosAppWindow" parent="GtkApplicationWindow">
<property name="title">Litos</property>
<child type="titlebar">
<object class="GtkHeaderBar" id="header">
<child type="end">
<object class="GtkToggleButton" id="btn_find_icon">
<property name="sensitive">0</property>
<property name="icon-name">edit-find-symbolic</property>
</object>
</child>
<child type="end">
<object class="GtkButton" id="about">
<property name="icon-name">logo-icon-about</property>
<signal name="clicked" handler="about_dialog"/>
</object>
</child>
<child type="start">
<object class="GtkMenuButton" id="gears">
<property name="direction">none</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkBox" id="content_box">
<property name="orientation">vertical</property>
<child>
<object class="GtkSearchBar" id="searchbar">
<child>
<object class="GtkBox" id="find_box">
<property name="orientation">vertical</property>
<child>
<object class="GtkBox" id="search_box">
<property name="orientation">horizontal</property>
<child>
<object class="GtkSearchEntry" id="search_entry">
<signal name="search-changed" handler="search_text_changed"/>
</object>
</child>
<child type="end">
<object class="GtkCheckButton" id="btn_check_case">
<property name="label">Match case</property>
</object>
</child>
<child>
<object class="GtkButton" id="btn_prev">
<property name="icon-name">go-up</property>
</object>
</child>
<child>
<object class="GtkButton" id="btn_next">
<property name="icon-name">go-down</property>
</object>
</child>
<child>
<object class="GtkLabel" id="lbl_number_occurences">
<property name="label">Number of occurences</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkEntry" id="replace_entry">
<property name="tooltip-text">Replace</property>
</object>
</child>
<child>
<object class="GtkButton" id="btn_replace">
<property name="label">Replace All</property>
</object>
</child>
</object>
</child>
</object>
</child>
<child>
<object class="GtkNotebook" id="notebook"></object>
</child>
</object>
</child>
</template>
</interface>