1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
3 <class>GradientDialog</class>
4 <widget class="QDialog" name="GradientDialog">
5  <property name="geometry">
6   <rect>
7    <x>0</x>
8    <y>0</y>
9    <width>400</width>
10    <height>300</height>
11   </rect>
12  </property>
13  <property name="windowTitle">
14   <string>Dialog</string>
15  </property>
16  <layout class="QVBoxLayout" name="verticalLayout">
17   <item>
18    <widget class="QComboBox" name="GradientType"/>
19   </item>
20   <item>
21    <widget class="QWidget" name="gradientDisplay" native="true">
22     <property name="sizePolicy">
23      <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
24       <horstretch>0</horstretch>
25       <verstretch>0</verstretch>
26      </sizepolicy>
27     </property>
28     <property name="minimumSize">
29      <size>
30       <width>0</width>
31       <height>50</height>
32      </size>
33     </property>
34     <property name="maximumSize">
35      <size>
36       <width>16777215</width>
37       <height>50</height>
38      </size>
39     </property>
40     <property name="autoFillBackground">
41      <bool>true</bool>
42     </property>
43    </widget>
44   </item>
45   <item>
46    <widget class="QGroupBox" name="gradientStopBox">
47     <property name="title">
48      <string>GradientStop</string>
49     </property>
50     <property name="alignment">
51      <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
52     </property>
53     <layout class="QVBoxLayout" name="verticalLayout_2">
54      <item>
55       <widget class="QComboBox" name="stopSelector"/>
56      </item>
57      <item>
58       <layout class="QHBoxLayout" name="horizontalLayout_3">
59        <item>
60         <widget class="QLabel" name="label">
61          <property name="text">
62           <string>Position</string>
63          </property>
64         </widget>
65        </item>
66        <item>
67         <widget class="QDoubleSpinBox" name="stopPosition">
68          <property name="wrapping">
69           <bool>true</bool>
70          </property>
71          <property name="accelerated">
72           <bool>true</bool>
73          </property>
74          <property name="minimum">
75           <double>-999999990.000000000000000</double>
76          </property>
77          <property name="maximum">
78           <double>999999999.990000009536743</double>
79          </property>
80         </widget>
81        </item>
82       </layout>
83      </item>
84      <item>
85       <layout class="QHBoxLayout" name="horizontalLayout">
86        <item>
87         <widget class="QPushButton" name="newStop">
88          <property name="text">
89           <string>New Stop</string>
90          </property>
91         </widget>
92        </item>
93        <item>
94         <widget class="QPushButton" name="deleteStop">
95          <property name="text">
96           <string>DeleteStop</string>
97          </property>
98         </widget>
99        </item>
100       </layout>
101      </item>
102     </layout>
103    </widget>
104   </item>
105   <item>
106    <widget class="QDialogButtonBox" name="buttonBox">
107     <property name="orientation">
108      <enum>Qt::Horizontal</enum>
109     </property>
110     <property name="standardButtons">
111      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
112     </property>
113    </widget>
114   </item>
115  </layout>
116 </widget>
117 <resources/>
118 <connections>
119  <connection>
120   <sender>buttonBox</sender>
121   <signal>accepted()</signal>
122   <receiver>GradientDialog</receiver>
123   <slot>accept()</slot>
124   <hints>
125    <hint type="sourcelabel">
126     <x>248</x>
127     <y>254</y>
128    </hint>
129    <hint type="destinationlabel">
130     <x>157</x>
131     <y>274</y>
132    </hint>
133   </hints>
134  </connection>
135  <connection>
136   <sender>buttonBox</sender>
137   <signal>rejected()</signal>
138   <receiver>GradientDialog</receiver>
139   <slot>reject()</slot>
140   <hints>
141    <hint type="sourcelabel">
142     <x>316</x>
143     <y>260</y>
144    </hint>
145    <hint type="destinationlabel">
146     <x>286</x>
147     <y>274</y>
148    </hint>
149   </hints>
150  </connection>
151 </connections>
152</ui>
153