Advertisement
ajuzer

Untitled

Jan 20th, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.37 KB | None | 0 0
  1. ==> raytracermainwindow.ui <==
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <ui version="4.0">
  4.  <class>RaytracerMainWindow</class>
  5.  <widget class="QMainWindow" name="RaytracerMainWindow">
  6.   <property name="geometry">
  7.    <rect>
  8.     <x>0</x>
  9.     <y>0</y>
  10.     <width>647</width>
  11.     <height>625</height>
  12.    </rect>
  13.   </property>
  14.   <property name="windowTitle">
  15.    <string>RaytracerMainWindow</string>
  16.   </property>
  17.   <widget class="QWidget" name="centralWidget">
  18.    <layout class="QHBoxLayout" name="horizontalLayout">
  19.     <item>
  20.      <widget class="QWidget" name="widget" native="true">
  21.       <property name="cursor">
  22.        <cursorShape>CrossCursor</cursorShape>
  23.       </property>
  24.       <property name="styleSheet">
  25.        <string notr="true">background-color: rgb(0, 0, 0);</string>
  26.       </property>
  27.      </widget>
  28.     </item>
  29.    </layout>
  30.   </widget>
  31.   <widget class="QMenuBar" name="menuBar">
  32.    <property name="geometry">
  33.     <rect>
  34.      <x>0</x>
  35.      <y>0</y>
  36.      <width>647</width>
  37.      <height>23</height>
  38.     </rect>
  39.    </property>
  40.   </widget>
  41.   <widget class="QToolBar" name="mainToolBar">
  42.    <attribute name="toolBarArea">
  43.     <enum>TopToolBarArea</enum>
  44.    </attribute>
  45.    <attribute name="toolBarBreak">
  46.     <bool>false</bool>
  47.    </attribute>
  48.    <addaction name="actionRender"/>
  49.    <addaction name="actionShow_render"/>
  50.   </widget>
  51.   <widget class="QStatusBar" name="statusBar"/>
  52.   <widget class="QDockWidget" name="dockWidget">
  53.    <attribute name="dockWidgetArea">
  54.     <number>4</number>
  55.    </attribute>
  56.    <widget class="QWidget" name="dockWidgetContents">
  57.     <layout class="QVBoxLayout" name="verticalLayout_2">
  58.      <item>
  59.       <widget class="QWidget" name="widget_2" native="true">
  60.        <layout class="QFormLayout" name="formLayout">
  61.         <item row="0" column="1">
  62.          <widget class="QSpinBox" name="multisampleSpinBox"/>
  63.         </item>
  64.         <item row="0" column="0">
  65.          <widget class="QLabel" name="multisampleLabel">
  66.           <property name="text">
  67.            <string>Multisample value</string>
  68.           </property>
  69.          </widget>
  70.         </item>
  71.        </layout>
  72.       </widget>
  73.      </item>
  74.     </layout>
  75.    </widget>
  76.   </widget>
  77.   <action name="actionRender">
  78.    <property name="text">
  79.     <string>Render</string>
  80.    </property>
  81.   </action>
  82.   <action name="actionShow_render">
  83.    <property name="checkable">
  84.     <bool>true</bool>
  85.    </property>
  86.    <property name="text">
  87.     <string>Show render</string>
  88.    </property>
  89.   </action>
  90.  </widget>
  91.  <layoutdefault spacing="6" margin="11"/>
  92.  <resources/>
  93.  <connections/>
  94. </ui>
  95.  
  96. ==> renderdialog.ui <==
  97. <?xml version="1.0" encoding="UTF-8"?>
  98. <ui version="4.0">
  99.  <class>RenderDialog</class>
  100.  <widget class="QDialog" name="RenderDialog">
  101.   <property name="geometry">
  102.    <rect>
  103.     <x>0</x>
  104.     <y>0</y>
  105.     <width>400</width>
  106.     <height>300</height>
  107.    </rect>
  108.   </property>
  109.   <property name="windowTitle">
  110.    <string>Dialog</string>
  111.   </property>
  112.   <layout class="QHBoxLayout" name="horizontalLayout">
  113.    <item>
  114.     <widget class="QLabel" name="renderedImageContainer">
  115.      <property name="styleSheet">
  116.       <string notr="true">background-color: rgb(128, 128, 128);</string>
  117.      </property>
  118.      <property name="text">
  119.       <string/>
  120.      </property>
  121.     </widget>
  122.    </item>
  123.   </layout>
  124.  </widget>
  125.  <resources/>
  126.  <connections/>
  127. </ui>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement