1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>Ui_LineBisectorOptions</class>
4 <widget class="QWidget" name="Ui_LineBisectorOptions">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>280</width>
10    <height>22</height>
11   </rect>
12  </property>
13  <property name="sizePolicy">
14   <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
15    <horstretch>0</horstretch>
16    <verstretch>0</verstretch>
17   </sizepolicy>
18  </property>
19  <property name="minimumSize">
20   <size>
21    <width>220</width>
22    <height>22</height>
23   </size>
24  </property>
25  <property name="maximumSize">
26   <size>
27    <width>280</width>
28    <height>22</height>
29   </size>
30  </property>
31  <property name="windowTitle">
32   <string>Line Bisector Options</string>
33  </property>
34  <layout class="QHBoxLayout">
35   <property name="leftMargin">
36    <number>1</number>
37   </property>
38   <property name="topMargin">
39    <number>1</number>
40   </property>
41   <property name="rightMargin">
42    <number>1</number>
43   </property>
44   <property name="bottomMargin">
45    <number>1</number>
46   </property>
47   <item>
48    <widget class="QLabel" name="lLength">
49     <property name="sizePolicy">
50      <sizepolicy hsizetype="Minimum" vsizetype="Preferred">
51       <horstretch>0</horstretch>
52       <verstretch>0</verstretch>
53      </sizepolicy>
54     </property>
55     <property name="text">
56      <string>Length:</string>
57     </property>
58     <property name="wordWrap">
59      <bool>false</bool>
60     </property>
61    </widget>
62   </item>
63   <item>
64    <widget class="QLineEdit" name="leLength">
65     <property name="toolTip">
66      <string>Length of bisector</string>
67     </property>
68    </widget>
69   </item>
70   <item>
71    <widget class="QLabel" name="lNumber">
72     <property name="text">
73      <string>Number:</string>
74     </property>
75     <property name="wordWrap">
76      <bool>false</bool>
77     </property>
78    </widget>
79   </item>
80   <item>
81    <widget class="QSpinBox" name="sbNumber">
82     <property name="toolTip">
83      <string>Number of bisectors to create</string>
84     </property>
85     <property name="minimum">
86      <number>1</number>
87     </property>
88    </widget>
89   </item>
90   <item>
91    <widget class="Line" name="sep1">
92     <property name="sizePolicy">
93      <sizepolicy hsizetype="Fixed" vsizetype="Minimum">
94       <horstretch>0</horstretch>
95       <verstretch>0</verstretch>
96      </sizepolicy>
97     </property>
98     <property name="frameShape">
99      <enum>QFrame::VLine</enum>
100     </property>
101     <property name="frameShadow">
102      <enum>QFrame::Sunken</enum>
103     </property>
104    </widget>
105   </item>
106  </layout>
107 </widget>
108 <layoutdefault spacing="6" margin="11"/>
109 <resources/>
110 <connections>
111  <connection>
112   <sender>leLength</sender>
113   <signal>textChanged(QString)</signal>
114   <receiver>Ui_LineBisectorOptions</receiver>
115   <slot>updateLength(QString)</slot>
116   <hints>
117    <hint type="sourcelabel">
118     <x>20</x>
119     <y>20</y>
120    </hint>
121    <hint type="destinationlabel">
122     <x>20</x>
123     <y>20</y>
124    </hint>
125   </hints>
126  </connection>
127  <connection>
128   <sender>sbNumber</sender>
129   <signal>valueChanged(int)</signal>
130   <receiver>Ui_LineBisectorOptions</receiver>
131   <slot>updateNumber(int)</slot>
132   <hints>
133    <hint type="sourcelabel">
134     <x>20</x>
135     <y>20</y>
136    </hint>
137    <hint type="destinationlabel">
138     <x>20</x>
139     <y>20</y>
140    </hint>
141   </hints>
142  </connection>
143 </connections>
144</ui>
145