blob: bd48ea86bab8afd024a0406fc020ca3b80e22fc3 (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<object class="GtkGrid" id="properties">
<property name="margin-bottom">12</property>
<property name="margin-end">12</property>
<property name="margin-start">12</property>
<property name="margin-top">12</property>
<property name="column-spacing">12</property>
<property name="row-spacing">8</property>
<child>
<object class="GtkLabel">
<property name="label">Load and analyze a new file:</property>
<property name="xalign">0</property>
<layout>
<property name="column">0</property>
<property name="row">0</property>
</layout>
</object>
</child>
<child>
<object class="GtkEntry" id="new_file">
<property name="secondary-icon-name">document-open-symbolic</property>
<property name="placeholder-text">File location</property>
<property name="hexpand">TRUE</property>
<property name="hexpand-set">TRUE</property>
<layout>
<property name="column">0</property>
<property name="row">1</property>
</layout>
<style>
<class name="background"/>
</style>
<signal name="icon-release" handler="g_binary_panel_on_new_file_entry_icon_release"/>
</object>
</child>
</object>
</interface>
|