1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <author>
4SPDX-FileCopyrightText: 2014 Aurélien Gâteau &lt;agateau@kde.org&gt;
5SPDX-License-Identifier: GPL-3.0-or-later
6 </author>
7 <class>CreatePartitionTableDialog</class>
8 <widget class="QDialog" name="CreatePartitionTableDialog">
9  <property name="geometry">
10   <rect>
11    <x>0</x>
12    <y>0</y>
13    <width>297</width>
14    <height>182</height>
15   </rect>
16  </property>
17  <property name="sizePolicy">
18   <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
19    <horstretch>0</horstretch>
20    <verstretch>0</verstretch>
21   </sizepolicy>
22  </property>
23  <property name="windowTitle">
24   <string>Create Partition Table</string>
25  </property>
26  <layout class="QVBoxLayout" name="verticalLayout">
27   <item>
28    <widget class="QLabel" name="areYouSureLabel">
29     <property name="font">
30      <font>
31       <weight>75</weight>
32       <bold>true</bold>
33      </font>
34     </property>
35     <property name="text">
36      <string notr="true">[are-you-sure-message]</string>
37     </property>
38    </widget>
39   </item>
40   <item>
41    <widget class="QLabel" name="label">
42     <property name="text">
43      <string>Creating a new partition table will delete all existing data on the disk.</string>
44     </property>
45     <property name="wordWrap">
46      <bool>true</bool>
47     </property>
48    </widget>
49   </item>
50   <item>
51    <spacer name="verticalSpacer">
52     <property name="orientation">
53      <enum>Qt::Vertical</enum>
54     </property>
55     <property name="sizeType">
56      <enum>QSizePolicy::Fixed</enum>
57     </property>
58     <property name="sizeHint" stdset="0">
59      <size>
60       <width>20</width>
61       <height>24</height>
62      </size>
63     </property>
64    </spacer>
65   </item>
66   <item>
67    <widget class="QLabel" name="label_2">
68     <property name="text">
69      <string>What kind of partition table do you want to create?</string>
70     </property>
71    </widget>
72   </item>
73   <item>
74    <widget class="QRadioButton" name="mbrRadioButton">
75     <property name="text">
76      <string>Master Boot Record (MBR)</string>
77     </property>
78     <property name="checked">
79      <bool>true</bool>
80     </property>
81    </widget>
82   </item>
83   <item>
84    <widget class="QRadioButton" name="gptRadioButton">
85     <property name="text">
86      <string>GUID Partition Table (GPT)</string>
87     </property>
88    </widget>
89   </item>
90   <item>
91    <widget class="QDialogButtonBox" name="buttonBox">
92     <property name="orientation">
93      <enum>Qt::Horizontal</enum>
94     </property>
95     <property name="standardButtons">
96      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
97     </property>
98    </widget>
99   </item>
100  </layout>
101 </widget>
102 <tabstops>
103  <tabstop>mbrRadioButton</tabstop>
104  <tabstop>gptRadioButton</tabstop>
105  <tabstop>buttonBox</tabstop>
106 </tabstops>
107 <resources/>
108 <connections>
109  <connection>
110   <sender>buttonBox</sender>
111   <signal>accepted()</signal>
112   <receiver>CreatePartitionTableDialog</receiver>
113   <slot>accept()</slot>
114   <hints>
115    <hint type="sourcelabel">
116     <x>222</x>
117     <y>141</y>
118    </hint>
119    <hint type="destinationlabel">
120     <x>157</x>
121     <y>155</y>
122    </hint>
123   </hints>
124  </connection>
125  <connection>
126   <sender>buttonBox</sender>
127   <signal>rejected()</signal>
128   <receiver>CreatePartitionTableDialog</receiver>
129   <slot>reject()</slot>
130   <hints>
131    <hint type="sourcelabel">
132     <x>290</x>
133     <y>147</y>
134    </hint>
135    <hint type="destinationlabel">
136     <x>286</x>
137     <y>155</y>
138    </hint>
139   </hints>
140  </connection>
141 </connections>
142</ui>
143