Thu, 12 Nov 2020 19:43:14 +0100
Started implementing the "flask routes" function.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>RoutesDialog</class> <widget class="QDialog" name="RoutesDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>Flask Routes</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QGroupBox" name="groupBox"> <property name="title"> <string>Sort Method</string> </property> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QRadioButton" name="matchButton"> <property name="toolTip"> <string>Select to sort by match order</string> </property> <property name="text"> <string>match</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QRadioButton" name="endpointButton"> <property name="toolTip"> <string>Select to sort by endpoint name</string> </property> <property name="text"> <string>Endpoint</string> </property> </widget> </item> <item> <widget class="QRadioButton" name="methodsButton"> <property name="toolTip"> <string>Select to sort by method name</string> </property> <property name="text"> <string>Methods</string> </property> </widget> </item> <item> <widget class="QRadioButton" name="ruleButton"> <property name="toolTip"> <string>Select to sort by rule</string> </property> <property name="text"> <string>Rule</string> </property> </widget> </item> </layout> </widget> </item> <item> <widget class="QCheckBox" name="allMethodsCheckBox"> <property name="toolTip"> <string>Select to also show HEAD and OPTIONS methods</string> </property> <property name="text"> <string>Show all methods</string> </property> </widget> </item> <item> <widget class="QTreeWidget" name="routesList"> <property name="alternatingRowColors"> <bool>true</bool> </property> <property name="selectionMode"> <enum>QAbstractItemView::NoSelection</enum> </property> <property name="rootIsDecorated"> <bool>false</bool> </property> <property name="itemsExpandable"> <bool>false</bool> </property> <column> <property name="text"> <string>Endpoint</string> </property> </column> <column> <property name="text"> <string>Methods</string> </property> </column> <column> <property name="text"> <string>Rule</string> </property> </column> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>matchButton</tabstop> <tabstop>endpointButton</tabstop> <tabstop>methodsButton</tabstop> <tabstop>ruleButton</tabstop> <tabstop>allMethodsCheckBox</tabstop> <tabstop>routesList</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>RoutesDialog</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>RoutesDialog</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>