1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>Ui_TextOptions</class>
4 <widget class="QWidget" name="Ui_TextOptions">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>300</width>
10    <height>24</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>200</width>
22    <height>22</height>
23   </size>
24  </property>
25  <property name="maximumSize">
26   <size>
27    <width>300</width>
28    <height>32767</height>
29   </size>
30  </property>
31  <property name="windowTitle">
32   <string>Text Options</string>
33  </property>
34  <property name="toolTip">
35   <string/>
36  </property>
37  <layout class="QHBoxLayout">
38   <property name="leftMargin">
39    <number>1</number>
40   </property>
41   <property name="topMargin">
42    <number>1</number>
43   </property>
44   <property name="rightMargin">
45    <number>1</number>
46   </property>
47   <property name="bottomMargin">
48    <number>1</number>
49   </property>
50   <item>
51    <widget class="QLabel" name="lText">
52     <property name="text">
53      <string>Text:</string>
54     </property>
55     <property name="wordWrap">
56      <bool>false</bool>
57     </property>
58    </widget>
59   </item>
60   <item>
61    <widget class="QTextEdit" name="teText">
62     <property name="sizePolicy">
63      <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
64       <horstretch>0</horstretch>
65       <verstretch>0</verstretch>
66      </sizepolicy>
67     </property>
68     <property name="minimumSize">
69      <size>
70       <width>0</width>
71       <height>22</height>
72      </size>
73     </property>
74     <property name="maximumSize">
75      <size>
76       <width>32767</width>
77       <height>22</height>
78      </size>
79     </property>
80     <property name="verticalScrollBarPolicy">
81      <enum>Qt::ScrollBarAlwaysOff</enum>
82     </property>
83     <property name="horizontalScrollBarPolicy">
84      <enum>Qt::ScrollBarAlwaysOff</enum>
85     </property>
86    </widget>
87   </item>
88   <item>
89    <widget class="QLabel" name="lAngle">
90     <property name="text">
91      <string>Angle:</string>
92     </property>
93     <property name="wordWrap">
94      <bool>false</bool>
95     </property>
96    </widget>
97   </item>
98   <item>
99    <widget class="QLineEdit" name="leAngle"/>
100   </item>
101   <item>
102    <widget class="Line" name="sep1">
103     <property name="sizePolicy">
104      <sizepolicy hsizetype="Fixed" vsizetype="Minimum">
105       <horstretch>0</horstretch>
106       <verstretch>0</verstretch>
107      </sizepolicy>
108     </property>
109     <property name="frameShape">
110      <enum>QFrame::VLine</enum>
111     </property>
112     <property name="frameShadow">
113      <enum>QFrame::Sunken</enum>
114     </property>
115    </widget>
116   </item>
117  </layout>
118 </widget>
119 <layoutdefault spacing="6" margin="11"/>
120 <resources/>
121 <connections>
122  <connection>
123   <sender>teText</sender>
124   <signal>textChanged()</signal>
125   <receiver>Ui_TextOptions</receiver>
126   <slot>updateText()</slot>
127   <hints>
128    <hint type="sourcelabel">
129     <x>20</x>
130     <y>20</y>
131    </hint>
132    <hint type="destinationlabel">
133     <x>20</x>
134     <y>20</y>
135    </hint>
136   </hints>
137  </connection>
138  <connection>
139   <sender>leAngle</sender>
140   <signal>textChanged(QString)</signal>
141   <receiver>Ui_TextOptions</receiver>
142   <slot>updateAngle()</slot>
143   <hints>
144    <hint type="sourcelabel">
145     <x>20</x>
146     <y>20</y>
147    </hint>
148    <hint type="destinationlabel">
149     <x>20</x>
150     <y>20</y>
151    </hint>
152   </hints>
153  </connection>
154 </connections>
155</ui>
156