1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>BreaksDialog</class>
4 <widget class="QDialog" name="BreaksDialog">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>272</width>
10    <height>167</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string>Add/Remove System Breaks</string>
15  </property>
16  <layout class="QVBoxLayout" name="verticalLayout_2">
17   <item>
18    <layout class="QVBoxLayout" name="verticalLayout">
19     <item>
20      <layout class="QHBoxLayout" name="horizontalLayout">
21       <item>
22        <widget class="QRadioButton" name="intervalButton">
23         <property name="accessibleName">
24          <string>Break systems every X measures</string>
25         </property>
26         <property name="text">
27          <string>Break systems every</string>
28         </property>
29        </widget>
30       </item>
31       <item>
32        <widget class="QSpinBox" name="intervalBox">
33         <property name="accessibleName">
34          <string>Number of measures</string>
35         </property>
36         <property name="minimum">
37          <number>1</number>
38         </property>
39         <property name="value">
40          <number>4</number>
41         </property>
42        </widget>
43       </item>
44       <item>
45        <widget class="QLabel" name="label">
46         <property name="text">
47          <string>measures</string>
48         </property>
49        </widget>
50       </item>
51       <item>
52        <spacer name="horizontalSpacer">
53         <property name="orientation">
54          <enum>Qt::Horizontal</enum>
55         </property>
56         <property name="sizeHint" stdset="0">
57          <size>
58           <width>40</width>
59           <height>20</height>
60          </size>
61         </property>
62        </spacer>
63       </item>
64      </layout>
65     </item>
66     <item>
67      <widget class="QRadioButton" name="lockButton">
68       <property name="accessibleName">
69        <string>Add system break at end of each system</string>
70       </property>
71       <property name="text">
72        <string>Add system break at end of each system</string>
73       </property>
74      </widget>
75     </item>
76     <item>
77      <widget class="QRadioButton" name="removeButton">
78       <property name="accessibleName">
79        <string>Remove current system breaks</string>
80       </property>
81       <property name="text">
82        <string>Remove current system breaks</string>
83       </property>
84      </widget>
85     </item>
86     <item>
87      <spacer name="verticalSpacer">
88       <property name="orientation">
89        <enum>Qt::Vertical</enum>
90       </property>
91       <property name="sizeHint" stdset="0">
92        <size>
93         <width>20</width>
94         <height>40</height>
95        </size>
96       </property>
97      </spacer>
98     </item>
99    </layout>
100   </item>
101   <item>
102    <widget class="QDialogButtonBox" name="buttonBox">
103     <property name="standardButtons">
104      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
105     </property>
106    </widget>
107   </item>
108  </layout>
109 </widget>
110 <tabstops>
111  <tabstop>intervalButton</tabstop>
112  <tabstop>intervalBox</tabstop>
113  <tabstop>lockButton</tabstop>
114  <tabstop>removeButton</tabstop>
115 </tabstops>
116 <resources/>
117 <connections>
118  <connection>
119   <sender>buttonBox</sender>
120   <signal>accepted()</signal>
121   <receiver>BreaksDialog</receiver>
122   <slot>accept()</slot>
123   <hints>
124    <hint type="sourcelabel">
125     <x>346</x>
126     <y>201</y>
127    </hint>
128    <hint type="destinationlabel">
129     <x>50</x>
130     <y>760</y>
131    </hint>
132   </hints>
133  </connection>
134  <connection>
135   <sender>buttonBox</sender>
136   <signal>rejected()</signal>
137   <receiver>BreaksDialog</receiver>
138   <slot>reject()</slot>
139   <hints>
140    <hint type="sourcelabel">
141     <x>265</x>
142     <y>195</y>
143    </hint>
144    <hint type="destinationlabel">
145     <x>105</x>
146     <y>754</y>
147    </hint>
148   </hints>
149  </connection>
150 </connections>
151</ui>
152