-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmyEntryRow.js
83 lines (65 loc) · 1.82 KB
/
myEntryRow.js
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
/* myEntryRow.js
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
// Implements most of Adw.EntryRow the extension needs.
import Adw from 'gi://Adw';
import Gio from 'gi://Gio';
import GLib from 'gi://GLib';
import GObject from 'gi://GObject';
import Gtk from 'gi://Gtk';
function findByBuildableID(start, id)
{
// Note: use BFS
const queue = [start];
while (queue.length > 0) {
const current = queue.shift();
if (current.get_buildable_id() == id)
return current;
let child = current.get_first_child();
while (child) {
queue.push(child);
child = child.get_next_sibling();
}
}
return null;
}
export default
class EntryRow extends Adw.ActionRow {
static {
GObject.registerClass(
{
Properties: {
'text': GObject.ParamSpec.string(
'text',
'Text',
'The text content',
GObject.ParamFlags.READWRITE,
''
)
}
},
this);
}
constructor({text = "", ...args})
{
args.title_lines = 1;
args.subtitle_lines = 1;
super(args);
const title_box = findByBuildableID(this, 'title_box');
if (title_box) {
title_box.halign = Gtk.Align.START;
title_box.hexpand = false;
}
const entry = new Gtk.Entry({
text: text,
halign: Gtk.Align.FILL,
hexpand: true,
});
// this.#entry.add_css_class('flat');
this.bind_property('text',
entry, 'text',
GObject.BindingFlags.BIDIRECTIONAL);
this.add_suffix(entry);
}
};