| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>ConfigureGraphics</class>
- <widget class="QWidget" name="ConfigureGraphics">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>300</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout">
- <item>
- <layout class="QVBoxLayout" name="verticalLayout_3">
- <item>
- <widget class="QGroupBox" name="groupBox">
- <property name="title">
- <string>Graphics</string>
- </property>
- <layout class="QVBoxLayout" name="verticalLayout_2">
- <item>
- <widget class="QCheckBox" name="toggle_hw_renderer">
- <property name="text">
- <string>Enable hardware renderer</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QCheckBox" name="toggle_shader_jit">
- <property name="text">
- <string>Enable shader JIT</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QCheckBox" name="toggle_vsync">
- <property name="text">
- <string>Enable V-Sync</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QCheckBox" name="toggle_framelimit">
- <property name="text">
- <string>Limit framerate</string>
- </property>
- </widget>
- </item>
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QLabel" name="label">
- <property name="text">
- <string>Internal Resolution:</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QComboBox" name="resolution_factor_combobox">
- <item>
- <property name="text">
- <string notr="true">Auto (Window Size)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string notr="true">Native (400x240)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string notr="true">2x Native (800x480)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string notr="true">3x Native (1200x720)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string notr="true">4x Native (1600x960)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string notr="true">5x Native (2000x1200)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string notr="true">6x Native (2400x1440)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string notr="true">7x Native (2800x1680)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string notr="true">8x Native (3200x1920)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string notr="true">9x Native (3600x2160)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string notr="true">10x Native (4000x2400)</string>
- </property>
- </item>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <widget class="QGroupBox" name="layoutBox">
- <property name="title">
- <string>Layout</string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout_3">
- <item>
- <layout class="QVBoxLayout" name="verticalLayout_4">
- <item>
- <layout class="QHBoxLayout" name="horizontalLayout_4">
- <item>
- <widget class="QLabel" name="label1">
- <property name="text">
- <string>Screen Layout:</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QComboBox" name="layout_combobox">
- <item>
- <property name="text">
- <string>Default</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Single Screen</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Large Screen</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Side by Side</string>
- </property>
- </item>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <widget class="QCheckBox" name="swap_screen">
- <property name="text">
- <string>Swap Screens</string>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <spacer name="verticalSpacer">
- <property name="orientation">
- <enum>Qt::Vertical</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>20</width>
- <height>40</height>
- </size>
- </property>
- </spacer>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections>
- <connection>
- <sender>toggle_hw_renderer</sender>
- <signal>toggled(bool)</signal>
- <receiver>resolution_factor_combobox</receiver>
- <slot>setEnabled(bool)</slot>
- </connection>
- </connections>
- </ui>
|