1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>ICutTrk</class>
4 <widget class="QDialog" name="ICutTrk">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>400</width>
10    <height>215</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string>Cut Track</string>
15  </property>
16  <layout class="QVBoxLayout" name="verticalLayout">
17   <item>
18    <widget class="QRadioButton" name="radioKeepSecond">
19     <property name="text">
20      <string>Delete first part of the track and keep second one</string>
21     </property>
22     <attribute name="buttonGroup">
23      <string notr="true">buttonGroup_2</string>
24     </attribute>
25    </widget>
26   </item>
27   <item>
28    <widget class="QRadioButton" name="radioKeepBoth">
29     <property name="text">
30      <string>Keep both parts of the track</string>
31     </property>
32     <property name="checked">
33      <bool>true</bool>
34     </property>
35     <attribute name="buttonGroup">
36      <string notr="true">buttonGroup_2</string>
37     </attribute>
38    </widget>
39   </item>
40   <item>
41    <widget class="QRadioButton" name="radioKeepFirst">
42     <property name="text">
43      <string>Keep first part of the track and delete second one</string>
44     </property>
45     <attribute name="buttonGroup">
46      <string notr="true">buttonGroup_2</string>
47     </attribute>
48    </widget>
49   </item>
50   <item>
51    <layout class="QHBoxLayout" name="horizontalLayout">
52     <item>
53      <widget class="QLabel" name="label">
54       <property name="text">
55        <string>Cut Mode:</string>
56       </property>
57      </widget>
58     </item>
59     <item>
60      <widget class="QRadioButton" name="radioCutMode1">
61       <property name="text">
62        <string/>
63       </property>
64       <property name="icon">
65        <iconset resource="../../resources.qrc">
66         <normaloff>:/icons/32x32/CutMode1.png</normaloff>:/icons/32x32/CutMode1.png</iconset>
67       </property>
68       <property name="iconSize">
69        <size>
70         <width>32</width>
71         <height>32</height>
72        </size>
73       </property>
74       <attribute name="buttonGroup">
75        <string notr="true">buttonGroup</string>
76       </attribute>
77      </widget>
78     </item>
79     <item>
80      <widget class="QRadioButton" name="radioCutMode2">
81       <property name="text">
82        <string/>
83       </property>
84       <property name="icon">
85        <iconset resource="../../resources.qrc">
86         <normaloff>:/icons/32x32/CutMode2.png</normaloff>:/icons/32x32/CutMode2.png</iconset>
87       </property>
88       <property name="iconSize">
89        <size>
90         <width>32</width>
91         <height>32</height>
92        </size>
93       </property>
94       <property name="checked">
95        <bool>true</bool>
96       </property>
97       <attribute name="buttonGroup">
98        <string notr="true">buttonGroup</string>
99       </attribute>
100      </widget>
101     </item>
102     <item>
103      <spacer name="horizontalSpacer">
104       <property name="orientation">
105        <enum>Qt::Horizontal</enum>
106       </property>
107       <property name="sizeHint" stdset="0">
108        <size>
109         <width>40</width>
110         <height>20</height>
111        </size>
112       </property>
113      </spacer>
114     </item>
115    </layout>
116   </item>
117   <item>
118    <spacer name="verticalSpacer">
119     <property name="orientation">
120      <enum>Qt::Vertical</enum>
121     </property>
122     <property name="sizeHint" stdset="0">
123      <size>
124       <width>20</width>
125       <height>40</height>
126      </size>
127     </property>
128    </spacer>
129   </item>
130   <item>
131    <widget class="QCheckBox" name="checkCreateClone">
132     <property name="enabled">
133      <bool>false</bool>
134     </property>
135     <property name="toolTip">
136      <string>Check this to store the result into a new track.
137
138If you keep both parts of the track you have to create new ones.
139
140If you want to keep just one half you can simply remove the points, or check this to create a new track.</string>
141     </property>
142     <property name="text">
143      <string>Create a new track</string>
144     </property>
145     <property name="checked">
146      <bool>true</bool>
147     </property>
148    </widget>
149   </item>
150   <item>
151    <widget class="QDialogButtonBox" name="buttonBox">
152     <property name="orientation">
153      <enum>Qt::Horizontal</enum>
154     </property>
155     <property name="standardButtons">
156      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
157     </property>
158    </widget>
159   </item>
160  </layout>
161 </widget>
162 <resources>
163  <include location="../../resources.qrc"/>
164 </resources>
165 <connections>
166  <connection>
167   <sender>buttonBox</sender>
168   <signal>accepted()</signal>
169   <receiver>ICutTrk</receiver>
170   <slot>accept()</slot>
171   <hints>
172    <hint type="sourcelabel">
173     <x>248</x>
174     <y>254</y>
175    </hint>
176    <hint type="destinationlabel">
177     <x>157</x>
178     <y>274</y>
179    </hint>
180   </hints>
181  </connection>
182  <connection>
183   <sender>buttonBox</sender>
184   <signal>rejected()</signal>
185   <receiver>ICutTrk</receiver>
186   <slot>reject()</slot>
187   <hints>
188    <hint type="sourcelabel">
189     <x>316</x>
190     <y>260</y>
191    </hint>
192    <hint type="destinationlabel">
193     <x>286</x>
194     <y>274</y>
195    </hint>
196   </hints>
197  </connection>
198 </connections>
199 <buttongroups>
200  <buttongroup name="buttonGroup"/>
201  <buttongroup name="buttonGroup_2"/>
202 </buttongroups>
203</ui>
204