1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Photos - access, organize and share your photos on GNOME
4 Copyright © 2015 – 2019 Red Hat, Inc.
5
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program.  If not, see <http://www.gnu.org/licenses/>.
18-->
19<interface domain="gnome-photos">
20  <template class="PhotosExportDialog" parent="GtkDialog">
21    <property name="border_width">18</property>
22    <property name="title" translatable="yes" context="dialog title">Export</property>
23    <property name="resizable">0</property>
24    <property name="modal">1</property>
25    <property name="type_hint">dialog</property>
26    <property name="skip_taskbar_hint">1</property>
27    <child internal-child="vbox">
28      <object class="GtkBox">
29        <property name="orientation">vertical</property>
30        <child>
31          <object class="GtkGrid">
32            <property name="column_spacing">12</property>
33            <property name="margin">12</property>
34            <property name="row_spacing">6</property>
35            <child>
36              <object class="GtkLabel" id="folder_name_label">
37                <property name="halign">end</property>
38                <property name="label" translatable="yes">_Folder Name</property>
39                <property name="margin_bottom">6</property>
40                <property name="mnemonic_widget">dir_entry</property>
41                <property name="use_underline">1</property>
42                <style>
43                  <class name="dim-label"/>
44                </style>
45              </object>
46              <packing>
47                <property name="left_attach">0</property>
48                <property name="top_attach">0</property>
49              </packing>
50            </child>
51            <child>
52              <object class="GtkEntry" id="dir_entry">
53                <property name="activates_default">1</property>
54                <property name="margin_bottom">6</property>
55                <property name="width_chars">30</property>
56              </object>
57              <packing>
58                <property name="left_attach">1</property>
59                <property name="top_attach">0</property>
60                <property name="width">2</property>
61              </packing>
62            </child>
63            <child>
64              <object class="GtkLabel" id="size_label">
65                <property name="halign">end</property>
66                <property name="label" translatable="yes">Size</property>
67                <property name="margin_top">6</property>
68                <property name="no_show_all">1</property>
69                <property name="valign">baseline</property>
70                <style>
71                  <class name="dim-label"/>
72                </style>
73              </object>
74              <packing>
75                <property name="left_attach">0</property>
76                <property name="top_attach">1</property>
77              </packing>
78            </child>
79            <child>
80              <object class="GtkRadioButton" id="full_button">
81                <property name="active">1</property>
82                <property name="halign">start</property>
83                <property name="label" translatable="yes">F_ull</property>
84                <property name="margin_top">6</property>
85                <property name="no_show_all">1</property>
86                <property name="use_underline">1</property>
87                <property name="valign">baseline</property>
88              </object>
89              <packing>
90                <property name="left_attach">1</property>
91                <property name="top_attach">1</property>
92              </packing>
93            </child>
94            <child>
95              <object class="GtkLabel" id="full_label">
96                <property name="halign">end</property>
97                <property name="margin_top">6</property>
98                <property name="no_show_all">1</property>
99                <property name="valign">baseline</property>
100                <style>
101                  <class name="dim-label"/>
102                </style>
103              </object>
104              <packing>
105                <property name="left_attach">2</property>
106                <property name="top_attach">1</property>
107              </packing>
108            </child>
109            <child>
110              <object class="GtkRadioButton" id="reduced_button">
111                <property name="halign">start</property>
112                <property name="group">full_button</property>
113                <property name="label" translatable="yes">_Reduced</property>
114                <property name="no_show_all">1</property>
115                <property name="use_underline">1</property>
116                <property name="valign">baseline</property>
117              </object>
118              <packing>
119                <property name="left_attach">1</property>
120                <property name="top_attach">2</property>
121              </packing>
122            </child>
123            <child>
124              <object class="GtkLabel" id="reduced_label">
125                <property name="halign">end</property>
126                <property name="no_show_all">1</property>
127                <property name="valign">baseline</property>
128                <style>
129                  <class name="dim-label"/>
130                </style>
131              </object>
132              <packing>
133                <property name="left_attach">2</property>
134                <property name="top_attach">2</property>
135              </packing>
136            </child>
137            <child>
138              <object class="GtkLabel" id="progress_label">
139                <property name="halign">center</property>
140                <property name="no_show_all">1</property>
141                <style>
142                  <class name="dim-label"/>
143                </style>
144              </object>
145              <packing>
146                <property name="left_attach">0</property>
147                <property name="top_attach">3</property>
148                <property name="width">3</property>
149              </packing>
150            </child>
151          </object>
152          <packing>
153            <property name="expand">1</property>
154          </packing>
155        </child>
156      </object>
157    </child>
158    <child type="action">
159      <object class="GtkButton" id="cancel_button">
160        <property name="label" translatable="yes">_Cancel</property>
161        <property name="use_underline">1</property>
162      </object>
163    </child>
164    <child type="action">
165      <object class="GtkButton" id="ok_button">
166        <property name="can_default">1</property>
167        <property name="label" translatable="yes">_Export</property>
168        <property name="use_underline">1</property>
169      </object>
170    </child>
171    <action-widgets>
172      <action-widget response="cancel">cancel_button</action-widget>
173      <action-widget response="ok" default="true">ok_button</action-widget>
174    </action-widgets>
175  </template>
176</interface>
177