| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>TexturePropertyEditor</class>
- <widget class="QDialog" name="TexturePropertyEditor">
- <property name="minimumSize">
- <size>
- <width>1000</width>
- <height>604</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>1000</width>
- <height>604</height>
- </size>
- </property>
- <property name="windowTitle">
- <string>Texture Settings</string>
- </property>
- <!-- Texture preview area -->
- <widget class="QWidget" name="previewArea">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>532</width>
- <height>572</height>
- </rect>
- </property>
- <layout class="QVBoxLayout" name="mainLayout">
- <property name="spacing">
- <number>0</number>
- </property>
- </layout>
- </widget>
- <!-- Texture settings area-->
- <widget class="QWidget" name="settingsArea">
- <property name="geometry">
- <rect>
- <x>532</x>
- <y>0</y>
- <width>468</width>
- <height>572</height>
- </rect>
- </property>
- <layout class="QVBoxLayout" name="settingsLayout">
- <property name="spacing">
- <number>0</number>
- </property>
- </layout>
- </widget>
- <!-- Button area -->
- <widget class="QWidget" name="buttonArea">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>572</y>
- <width>1000</width>
- <height>32</height>
- </rect>
- </property>
- <!-- Help Button -->
- <widget class="QToolButton" name="helpBtn">
- <property name="geometry">
- <rect>
- <x>832</x>
- <y>0</y>
- <width>24</width>
- <height>24</height>
- </rect>
- </property>
- <property name="icon">
- <iconset>
- <normalon>:/question.svg</normalon>
- </iconset>
- </property>
- </widget>
- <!-- Save Button -->
- <widget class="QPushButton" name="saveBtn">
- <property name="geometry">
- <rect>
- <x>862</x>
- <y>0</y>
- <width>60</width>
- <height>24</height>
- </rect>
- </property>
- <property name="text">
- <string>Apply</string>
- </property>
- </widget>
- <!-- Cancel Button -->
- <widget class="QPushButton" name="cancelBtn">
- <property name="geometry">
- <rect>
- <x>932</x>
- <y>0</y>
- <width>60</width>
- <height>24</height>
- </rect>
- </property>
- <property name="text">
- <string>Close</string>
- </property>
- </widget>
- </widget>
- </widget>
- <resources>
- <include location="./ImageProcessing.qrc"/>
- </resources>
- <connections/>
- </ui>
|