Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ==> raytracermainwindow.ui <==
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>RaytracerMainWindow</class>
- <widget class="QMainWindow" name="RaytracerMainWindow">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>647</width>
- <height>625</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>RaytracerMainWindow</string>
- </property>
- <widget class="QWidget" name="centralWidget">
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QWidget" name="widget" native="true">
- <property name="cursor">
- <cursorShape>CrossCursor</cursorShape>
- </property>
- <property name="styleSheet">
- <string notr="true">background-color: rgb(0, 0, 0);</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <widget class="QMenuBar" name="menuBar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>647</width>
- <height>23</height>
- </rect>
- </property>
- </widget>
- <widget class="QToolBar" name="mainToolBar">
- <attribute name="toolBarArea">
- <enum>TopToolBarArea</enum>
- </attribute>
- <attribute name="toolBarBreak">
- <bool>false</bool>
- </attribute>
- <addaction name="actionRender"/>
- <addaction name="actionShow_render"/>
- </widget>
- <widget class="QStatusBar" name="statusBar"/>
- <widget class="QDockWidget" name="dockWidget">
- <attribute name="dockWidgetArea">
- <number>4</number>
- </attribute>
- <widget class="QWidget" name="dockWidgetContents">
- <layout class="QVBoxLayout" name="verticalLayout_2">
- <item>
- <widget class="QWidget" name="widget_2" native="true">
- <layout class="QFormLayout" name="formLayout">
- <item row="0" column="1">
- <widget class="QSpinBox" name="multisampleSpinBox"/>
- </item>
- <item row="0" column="0">
- <widget class="QLabel" name="multisampleLabel">
- <property name="text">
- <string>Multisample value</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- </layout>
- </widget>
- </widget>
- <action name="actionRender">
- <property name="text">
- <string>Render</string>
- </property>
- </action>
- <action name="actionShow_render">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Show render</string>
- </property>
- </action>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources/>
- <connections/>
- </ui>
- ==> renderdialog.ui <==
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>RenderDialog</class>
- <widget class="QDialog" name="RenderDialog">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>300</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Dialog</string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QLabel" name="renderedImageContainer">
- <property name="styleSheet">
- <string notr="true">background-color: rgb(128, 128, 128);</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement