1<interface domain="easytag">
2    <requires lib="gtk+" version="3.4"/>
3    <object class="GtkDialog" id="image_properties_dialog">
4        <property name="border-width">12</property>
5        <property name="destroy-with-parent">True</property>
6        <property name="modal">True</property>
7        <child internal-child="vbox">
8            <object class="GtkBox" id="vbox">
9                <property name="spacing">12</property>
10                <child>
11                    <object class="GtkGrid" id="properties_grid">
12                        <property name="column-spacing">12</property>
13                        <property name="orientation">vertical</property>
14                        <property name="row-spacing">6</property>
15                        <property name="visible">True</property>
16                        <child>
17                            <object class="GtkScrolledWindow" id="types_scrolled">
18                                <property name="min-content-height">300</property>
19                                <property name="min-content-width">400</property>
20                                <property name="visible">True</property>
21                                <child>
22                                    <object class="GtkTreeView" id="types_view">
23                                        <property name="visible">True</property>
24                                        <child>
25                                            <object class="GtkTreeViewColumn" id="types_column">
26                                                <property name="title" translatable="yes">Image Type</property>
27                                                <child>
28                                                    <object class="GtkCellRendererText" id="types_renderer"/>
29                                                    <attributes>
30                                                        <attribute name="text">0</attribute>
31                                                    </attributes>
32                                                </child>
33                                            </object>
34                                        </child>
35                                    </object>
36                                </child>
37                            </object>
38                        </child>
39                        <child>
40                            <object class="GtkLabel" id="description_label">
41                                <property name="halign">start</property>
42                                <property name="label" translatable="yes">Description</property>
43                                <property name="margin-top">12</property>
44                                <property name="visible">True</property>
45                                <attributes>
46                                    <attribute name="weight" value="bold"/>
47                                </attributes>
48                            </object>
49                        </child>
50                        <child>
51                            <object class="GtkEntry" id="description_entry">
52                                <property name="margin-left">12</property>
53                                <property name="visible">True</property>
54                            </object>
55                        </child>
56                    </object>
57                </child>
58                <child internal-child="action_area">
59                    <object class="GtkButtonBox" id="button_box">
60                        <child>
61                            <object class="GtkButton" id="cancel_button">
62                                <property name="label" translatable="yes">_Cancel</property>
63                                <property name="use-underline">True</property>
64                                <property name="visible">True</property>
65                            </object>
66                        </child>
67                        <child>
68                            <object class="GtkButton" id="accept_button">
69                                <property name="can-default">True</property>
70                                <property name="label" translatable="yes">_Accept</property>
71                                <property name="use-underline">True</property>
72                                <property name="visible">True</property>
73                            </object>
74                        </child>
75                    </object>
76                </child>
77            </object>
78        </child>
79        <action-widgets>
80            <action-widget response="-3">accept_button</action-widget>
81            <action-widget response="-2">cancel_button</action-widget>
82        </action-widgets>
83    </object>
84</interface>
85