-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathCodeFind.blp
More file actions
73 lines (58 loc) · 1.35 KB
/
CodeFind.blp
File metadata and controls
73 lines (58 loc) · 1.35 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
using Gtk 4.0;
template $CodeFind: Revealer {
transition-type: slide_up;
reveal-child: false;
Box {
orientation: vertical;
Separator {}
Box {
styles [
"toolbar",
]
halign: center;
Box {
valign: center;
width-request: 220;
css-name: "entry";
Image {
icon-name: 'edit-find-symbolic';
}
Text text_search_term {
hexpand: true;
vexpand: true;
width-chars: 10;
max-width-chars: 10;
}
Label label_info {
label: "";
xalign: 1;
opacity: 0.5;
}
}
Box {
valign: center;
Button button_previous {
icon-name: "re.sonny.Workbench-up-symbolic";
tooltip-text: _("Move to previous match (Ctrl+Shift+G)");
sensitive: false;
clicked => $onSearchPrevious();
}
Button button_next {
icon-name: "re.sonny.Workbench-down-symbolic";
tooltip-text: _("Move to next match (Ctrl+G)");
sensitive: false;
clicked => $onSearchNext();
}
}
Button {
tooltip-text: _("Close Search");
icon-name: "window-close-symbolic";
styles [
"circular",
"small",
]
clicked => $onClose();
}
}
}
}