meshgen

diff ui/mainwindow.ui @ 0:795217e82f3d

starting the mesh generation GUI project
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 30 Aug 2015 05:54:32 +0300
parents
children 7dac9d1bcae4
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ui/mainwindow.ui	Sun Aug 30 05:54:32 2015 +0300
     1.3 @@ -0,0 +1,295 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<ui version="4.0">
     1.6 + <class>MainWindow</class>
     1.7 + <widget class="QMainWindow" name="MainWindow">
     1.8 +  <property name="geometry">
     1.9 +   <rect>
    1.10 +    <x>0</x>
    1.11 +    <y>0</y>
    1.12 +    <width>800</width>
    1.13 +    <height>480</height>
    1.14 +   </rect>
    1.15 +  </property>
    1.16 +  <property name="windowTitle">
    1.17 +   <string>MainWindow</string>
    1.18 +  </property>
    1.19 +  <widget class="QWidget" name="centralWidget">
    1.20 +   <layout class="QHBoxLayout" name="horizontalLayout">
    1.21 +    <item>
    1.22 +     <widget class="QTabWidget" name="tabWidget">
    1.23 +      <property name="currentIndex">
    1.24 +       <number>1</number>
    1.25 +      </property>
    1.26 +      <widget class="QWidget" name="tab_create">
    1.27 +       <attribute name="title">
    1.28 +        <string>Tab 1</string>
    1.29 +       </attribute>
    1.30 +       <widget class="QPushButton" name="bn_add_sphere">
    1.31 +        <property name="geometry">
    1.32 +         <rect>
    1.33 +          <x>10</x>
    1.34 +          <y>10</y>
    1.35 +          <width>115</width>
    1.36 +          <height>32</height>
    1.37 +         </rect>
    1.38 +        </property>
    1.39 +        <property name="text">
    1.40 +         <string>Sphere</string>
    1.41 +        </property>
    1.42 +       </widget>
    1.43 +       <widget class="QPushButton" name="bn_add_box">
    1.44 +        <property name="geometry">
    1.45 +         <rect>
    1.46 +          <x>10</x>
    1.47 +          <y>40</y>
    1.48 +          <width>115</width>
    1.49 +          <height>32</height>
    1.50 +         </rect>
    1.51 +        </property>
    1.52 +        <property name="text">
    1.53 +         <string>Box</string>
    1.54 +        </property>
    1.55 +       </widget>
    1.56 +       <widget class="QPushButton" name="bn_add_capsule">
    1.57 +        <property name="geometry">
    1.58 +         <rect>
    1.59 +          <x>180</x>
    1.60 +          <y>70</y>
    1.61 +          <width>115</width>
    1.62 +          <height>32</height>
    1.63 +         </rect>
    1.64 +        </property>
    1.65 +        <property name="text">
    1.66 +         <string>Capsule</string>
    1.67 +        </property>
    1.68 +       </widget>
    1.69 +       <widget class="QPushButton" name="bn_add_rbox">
    1.70 +        <property name="geometry">
    1.71 +         <rect>
    1.72 +          <x>180</x>
    1.73 +          <y>40</y>
    1.74 +          <width>115</width>
    1.75 +          <height>32</height>
    1.76 +         </rect>
    1.77 +        </property>
    1.78 +        <property name="text">
    1.79 +         <string>Rounded Box</string>
    1.80 +        </property>
    1.81 +       </widget>
    1.82 +       <widget class="QPushButton" name="bn_add_cylinder">
    1.83 +        <property name="geometry">
    1.84 +         <rect>
    1.85 +          <x>10</x>
    1.86 +          <y>70</y>
    1.87 +          <width>115</width>
    1.88 +          <height>32</height>
    1.89 +         </rect>
    1.90 +        </property>
    1.91 +        <property name="text">
    1.92 +         <string>Cylinder</string>
    1.93 +        </property>
    1.94 +       </widget>
    1.95 +       <widget class="QPushButton" name="bn_add_cone">
    1.96 +        <property name="geometry">
    1.97 +         <rect>
    1.98 +          <x>10</x>
    1.99 +          <y>100</y>
   1.100 +          <width>115</width>
   1.101 +          <height>32</height>
   1.102 +         </rect>
   1.103 +        </property>
   1.104 +        <property name="text">
   1.105 +         <string>Cone</string>
   1.106 +        </property>
   1.107 +       </widget>
   1.108 +       <widget class="QPushButton" name="bn_add_revol">
   1.109 +        <property name="geometry">
   1.110 +         <rect>
   1.111 +          <x>180</x>
   1.112 +          <y>10</y>
   1.113 +          <width>115</width>
   1.114 +          <height>32</height>
   1.115 +         </rect>
   1.116 +        </property>
   1.117 +        <property name="text">
   1.118 +         <string>Revolution</string>
   1.119 +        </property>
   1.120 +       </widget>
   1.121 +       <widget class="QPushButton" name="bn_add_heightfield">
   1.122 +        <property name="geometry">
   1.123 +         <rect>
   1.124 +          <x>180</x>
   1.125 +          <y>130</y>
   1.126 +          <width>115</width>
   1.127 +          <height>32</height>
   1.128 +         </rect>
   1.129 +        </property>
   1.130 +        <property name="text">
   1.131 +         <string>Heightfield</string>
   1.132 +        </property>
   1.133 +       </widget>
   1.134 +       <widget class="QPushButton" name="bn_add_sweep">
   1.135 +        <property name="geometry">
   1.136 +         <rect>
   1.137 +          <x>180</x>
   1.138 +          <y>100</y>
   1.139 +          <width>115</width>
   1.140 +          <height>32</height>
   1.141 +         </rect>
   1.142 +        </property>
   1.143 +        <property name="text">
   1.144 +         <string>Sweep</string>
   1.145 +        </property>
   1.146 +       </widget>
   1.147 +       <widget class="QPushButton" name="bn_add_plane">
   1.148 +        <property name="geometry">
   1.149 +         <rect>
   1.150 +          <x>20</x>
   1.151 +          <y>130</y>
   1.152 +          <width>115</width>
   1.153 +          <height>32</height>
   1.154 +         </rect>
   1.155 +        </property>
   1.156 +        <property name="text">
   1.157 +         <string>Inf. Plane</string>
   1.158 +        </property>
   1.159 +       </widget>
   1.160 +       <widget class="QScrollArea" name="area_add_prop">
   1.161 +        <property name="geometry">
   1.162 +         <rect>
   1.163 +          <x>10</x>
   1.164 +          <y>180</y>
   1.165 +          <width>351</width>
   1.166 +          <height>251</height>
   1.167 +         </rect>
   1.168 +        </property>
   1.169 +        <property name="widgetResizable">
   1.170 +         <bool>true</bool>
   1.171 +        </property>
   1.172 +        <widget class="QWidget" name="addprop_null">
   1.173 +         <property name="enabled">
   1.174 +          <bool>true</bool>
   1.175 +         </property>
   1.176 +         <property name="geometry">
   1.177 +          <rect>
   1.178 +           <x>0</x>
   1.179 +           <y>0</y>
   1.180 +           <width>349</width>
   1.181 +           <height>249</height>
   1.182 +          </rect>
   1.183 +         </property>
   1.184 +        </widget>
   1.185 +       </widget>
   1.186 +      </widget>
   1.187 +      <widget class="QWidget" name="tab_2">
   1.188 +       <attribute name="title">
   1.189 +        <string>Tab 2</string>
   1.190 +       </attribute>
   1.191 +       <widget class="QScrollArea" name="area_mod_prop">
   1.192 +        <property name="geometry">
   1.193 +         <rect>
   1.194 +          <x>10</x>
   1.195 +          <y>180</y>
   1.196 +          <width>351</width>
   1.197 +          <height>241</height>
   1.198 +         </rect>
   1.199 +        </property>
   1.200 +        <property name="widgetResizable">
   1.201 +         <bool>true</bool>
   1.202 +        </property>
   1.203 +        <widget class="QWidget" name="addprop_null_2">
   1.204 +         <property name="enabled">
   1.205 +          <bool>true</bool>
   1.206 +         </property>
   1.207 +         <property name="geometry">
   1.208 +          <rect>
   1.209 +           <x>0</x>
   1.210 +           <y>0</y>
   1.211 +           <width>349</width>
   1.212 +           <height>239</height>
   1.213 +          </rect>
   1.214 +         </property>
   1.215 +        </widget>
   1.216 +       </widget>
   1.217 +       <widget class="QListWidget" name="listWidget">
   1.218 +        <property name="geometry">
   1.219 +         <rect>
   1.220 +          <x>10</x>
   1.221 +          <y>0</y>
   1.222 +          <width>211</width>
   1.223 +          <height>171</height>
   1.224 +         </rect>
   1.225 +        </property>
   1.226 +       </widget>
   1.227 +       <widget class="QPushButton" name="bn_prim_dup">
   1.228 +        <property name="geometry">
   1.229 +         <rect>
   1.230 +          <x>240</x>
   1.231 +          <y>50</y>
   1.232 +          <width>115</width>
   1.233 +          <height>32</height>
   1.234 +         </rect>
   1.235 +        </property>
   1.236 +        <property name="text">
   1.237 +         <string>Duplicate</string>
   1.238 +        </property>
   1.239 +       </widget>
   1.240 +       <widget class="QPushButton" name="bn_prim_del">
   1.241 +        <property name="geometry">
   1.242 +         <rect>
   1.243 +          <x>240</x>
   1.244 +          <y>90</y>
   1.245 +          <width>115</width>
   1.246 +          <height>32</height>
   1.247 +         </rect>
   1.248 +        </property>
   1.249 +        <property name="text">
   1.250 +         <string>Delete</string>
   1.251 +        </property>
   1.252 +       </widget>
   1.253 +       <widget class="QPushButton" name="bn_prim_hide">
   1.254 +        <property name="geometry">
   1.255 +         <rect>
   1.256 +          <x>240</x>
   1.257 +          <y>10</y>
   1.258 +          <width>115</width>
   1.259 +          <height>32</height>
   1.260 +         </rect>
   1.261 +        </property>
   1.262 +        <property name="text">
   1.263 +         <string>Hide</string>
   1.264 +        </property>
   1.265 +       </widget>
   1.266 +      </widget>
   1.267 +     </widget>
   1.268 +    </item>
   1.269 +    <item>
   1.270 +     <widget class="GLView" name="glview">
   1.271 +      <property name="sizePolicy">
   1.272 +       <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
   1.273 +        <horstretch>0</horstretch>
   1.274 +        <verstretch>0</verstretch>
   1.275 +       </sizepolicy>
   1.276 +      </property>
   1.277 +      <property name="minimumSize">
   1.278 +       <size>
   1.279 +        <width>320</width>
   1.280 +        <height>240</height>
   1.281 +       </size>
   1.282 +      </property>
   1.283 +     </widget>
   1.284 +    </item>
   1.285 +   </layout>
   1.286 +  </widget>
   1.287 + </widget>
   1.288 + <layoutdefault spacing="6" margin="11"/>
   1.289 + <customwidgets>
   1.290 +  <customwidget>
   1.291 +   <class>GLView</class>
   1.292 +   <extends>QOpenGLWidget</extends>
   1.293 +   <header>glview.h</header>
   1.294 +  </customwidget>
   1.295 + </customwidgets>
   1.296 + <resources/>
   1.297 + <connections/>
   1.298 +</ui>