-
Notifications
You must be signed in to change notification settings - Fork 1
/
gycmap.xml
109 lines (109 loc) · 3.92 KB
/
gycmap.xml
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<object class="GtkListStore" id="liststore1">
<columns>
<!-- column-name shortname -->
<column type="gchararray"/>
<!-- column-name longname -->
<column type="gchararray"/>
</columns>
<data>
<row>
<col id="0" translatable="yes">gist</col>
<col id="1" translatable="yes">Yorick classic</col>
</row>
<row>
<col id="0" translatable="yes">msh</col>
<col id="1" translatable="yes">msh</col>
</row>
<row>
<col id="0" translatable="yes">mpl</col>
<col id="1" translatable="yes">Matplotlib</col>
</row>
<row>
<col id="0" translatable="yes">gmt</col>
<col id="1" translatable="yes">Generic Mapping Tools</col>
</row>
<row>
<col id="0" translatable="yes">cb-seq</col>
<col id="1" translatable="yes">ColorBrewer Sequential</col>
</row>
<row>
<col id="0" translatable="yes">cb-div</col>
<col id="1" translatable="yes">ColorBrewer Diverging</col>
</row>
<row>
<col id="0" translatable="yes">cb-qual</col>
<col id="1" translatable="yes">ColorBrewer Qualitative</col>
</row>
<row>
<col id="0" translatable="yes">gpl</col>
<col id="1" translatable="yes">Gnuplot</col>
</row>
</data>
</object>
<object class="GtkWindow" id="window1">
<property name="can_focus">False</property>
<child>
<object class="GtkBox" id="box1">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="orientation">vertical</property>
<child>
<object class="GtkComboBox" id="combobox">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="model">liststore1</property>
<property name="entry_text_column">1</property>
<property name="id_column">0</property>
<property name="active_id">0</property>
<child>
<object class="GtkCellRendererText" id="cellrenderertext1"/>
<attributes>
<attribute name="text">1</attribute>
</attributes>
</child>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkScrolledWindow" id="scrolledwindow1">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="vexpand">True</property>
<property name="shadow_type">in</property>
<property name="min_content_width">630</property>
<property name="min_content_height">133</property>
<child>
<object class="GtkViewport" id="viewport1">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">center</property>
<property name="valign">center</property>
<child>
<object class="GtkEventBox" id="eventbox">
<property name="visible">True</property>
<property name="can_focus">True</property>
<child>
<placeholder/>
</child>
</object>
</child>
</object>
</child>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">True</property>
<property name="position">1</property>
</packing>
</child>
</object>
</child>
</object>
</interface>