Thu, 07 Jul 2022 11:23:56 +0200
Reorganized the project structure to use the source layout in order to support up-to-date build systems with "pyproject.toml".
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>FontDialogOptionsDialog</class> <widget class="QDialog" name="FontDialogOptionsDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>400</width> <height>194</height> </rect> </property> <property name="windowTitle"> <string>Font Dialog Options</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QCheckBox" name="noNativeDialogCheckBox"> <property name="toolTip"> <string>Select to not use the platform's native font dialog</string> </property> <property name="text"> <string>Don't use native dialog</string> </property> </widget> </item> <item> <widget class="QCheckBox" name="scalableCheckBox"> <property name="toolTip"> <string>Select to show scalable fonts</string> </property> <property name="text"> <string>Scalable Fonts</string> </property> </widget> </item> <item> <widget class="QCheckBox" name="nonScalableCheckBox"> <property name="toolTip"> <string>Select to show non scalable fonts</string> </property> <property name="text"> <string>Non Scalable Fonts</string> </property> </widget> </item> <item> <widget class="QCheckBox" name="monospacedCheckBox"> <property name="toolTip"> <string>Select to show monospaced fonts</string> </property> <property name="text"> <string>Monospaced Fonts</string> </property> </widget> </item> <item> <widget class="QCheckBox" name="proportionalCheckBox"> <property name="toolTip"> <string>Select to show proportional fonts</string> </property> <property name="text"> <string>Proportional Fonts</string> </property> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>FontDialogOptionsDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>FontDialogOptionsDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>