blob: 21a4788b4836894e1af17cfa397553c108f7e7a9 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="GtkPythonNotebookParameters" parent="GtkGrid">
<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 notebook 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="filename">
<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>
</object>
</child>
<child>
<object class="GtkButton" id="create">
<property name="label">Create</property>
<layout>
<property name="column">0</property>
<property name="row">2</property>
</layout>
<signal name="clicked" handler="gtk_python_notebook_parameters_on_create_clicked"/>
</object>
</child>
</template>
</interface>
|