123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>LanguageSwitchWnd</class>
- <widget class="QDialog" name="LanguageSwitchWnd">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>1800</width>
- <height>1000</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Dialog</string>
- </property>
- <widget class="QGroupBox" name="languagerGroupBox">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>30</y>
- <width>411</width>
- <height>161</height>
- </rect>
- </property>
- <property name="title">
- <string/>
- </property>
- <widget class="QLabel" name="languageLabel">
- <property name="geometry">
- <rect>
- <x>20</x>
- <y>30</y>
- <width>121</width>
- <height>51</height>
- </rect>
- </property>
- <property name="text">
- <string>Language:</string>
- </property>
- </widget>
- <widget class="QRadioButton" name="englishRadioButton">
- <property name="geometry">
- <rect>
- <x>200</x>
- <y>31</y>
- <width>191</width>
- <height>41</height>
- </rect>
- </property>
- <property name="text">
- <string>English</string>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </widget>
- <widget class="QRadioButton" name="chRadioButton">
- <property name="geometry">
- <rect>
- <x>200</x>
- <y>100</y>
- <width>191</width>
- <height>41</height>
- </rect>
- </property>
- <property name="text">
- <string>Chinese</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </widget>
- </widget>
- <widget class="QGroupBox" name="thrmeGroupBox">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>210</y>
- <width>411</width>
- <height>161</height>
- </rect>
- </property>
- <property name="title">
- <string/>
- </property>
- <widget class="QLabel" name="themeLabel">
- <property name="geometry">
- <rect>
- <x>20</x>
- <y>30</y>
- <width>121</width>
- <height>51</height>
- </rect>
- </property>
- <property name="text">
- <string>Theme:</string>
- </property>
- </widget>
- <widget class="QRadioButton" name="lightRadioButton">
- <property name="geometry">
- <rect>
- <x>200</x>
- <y>31</y>
- <width>191</width>
- <height>41</height>
- </rect>
- </property>
- <property name="text">
- <string>Light</string>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="autoRepeat">
- <bool>false</bool>
- </property>
- </widget>
- <widget class="QRadioButton" name="darkRadioButton">
- <property name="geometry">
- <rect>
- <x>200</x>
- <y>100</y>
- <width>191</width>
- <height>41</height>
- </rect>
- </property>
- <property name="text">
- <string>Dark</string>
- </property>
- </widget>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|