Mon, 08 Jan 2024 11:50:27 +0100
Version Control
- Changed the version control state to be an 'enum.Enum' class.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>GitArchiveDataDialog</class> <widget class="QDialog" name="GitArchiveDataDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>553</width> <height>313</height> </rect> </property> <property name="windowTitle"> <string>Git Archive</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QGroupBox" name="groupBox"> <property name="title"> <string>Revision</string> </property> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="QRadioButton" name="revButton"> <property name="toolTip"> <string>Select to specify a revision by a revision expression</string> </property> <property name="text"> <string>Commit:</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QLineEdit" name="revEdit"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Enter a commit id</string> </property> </widget> </item> <item row="1" column="0"> <widget class="QRadioButton" name="tagButton"> <property name="toolTip"> <string>Select to specify a revision by a tag</string> </property> <property name="text"> <string>Tag:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QComboBox" name="tagCombo"> <property name="enabled"> <bool>false</bool> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="toolTip"> <string>Enter a tag name</string> </property> <property name="editable"> <bool>true</bool> </property> </widget> </item> <item row="2" column="0"> <widget class="QRadioButton" name="branchButton"> <property name="toolTip"> <string>Select to specify a revision by a branch</string> </property> <property name="text"> <string>Branch:</string> </property> </widget> </item> <item row="2" column="1"> <widget class="QComboBox" name="branchCombo"> <property name="enabled"> <bool>false</bool> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="toolTip"> <string>Enter a branch name</string> </property> <property name="editable"> <bool>true</bool> </property> </widget> </item> <item row="3" column="0" colspan="2"> <widget class="QRadioButton" name="tipButton"> <property name="toolTip"> <string>Select HEAD revision</string> </property> <property name="text"> <string>HEAD</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> </layout> </widget> </item> <item> <layout class="QGridLayout" name="gridLayout_2"> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Format:</string> </property> </widget> </item> <item row="0" column="1" colspan="2"> <widget class="QComboBox" name="formatComboBox"> <property name="toolTip"> <string>Select the archive format</string> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="label_3"> <property name="text"> <string>File Name:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QLineEdit" name="fileEdit"> <property name="toolTip"> <string>Enter the name of the archive file</string> </property> </widget> </item> <item row="1" column="2"> <widget class="QToolButton" name="fileButton"> <property name="toolTip"> <string>Select the archive file via a file selection dialog</string> </property> </widget> </item> <item row="2" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Prefix:</string> </property> </widget> </item> <item row="2" column="1" colspan="2"> <widget class="QLineEdit" name="prefixEdit"> <property name="toolTip"> <string>Enter a prefix to be prepended to each file</string> </property> </widget> </item> </layout> </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> <tabstops> <tabstop>revButton</tabstop> <tabstop>revEdit</tabstop> <tabstop>tagButton</tabstop> <tabstop>tagCombo</tabstop> <tabstop>branchButton</tabstop> <tabstop>branchCombo</tabstop> <tabstop>tipButton</tabstop> <tabstop>formatComboBox</tabstop> <tabstop>fileEdit</tabstop> <tabstop>fileButton</tabstop> <tabstop>prefixEdit</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>GitArchiveDataDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>228</x> <y>287</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>GitArchiveDataDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>296</x> <y>293</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>revButton</sender> <signal>toggled(bool)</signal> <receiver>revEdit</receiver> <slot>setEnabled(bool)</slot> <hints> <hint type="sourcelabel"> <x>81</x> <y>59</y> </hint> <hint type="destinationlabel"> <x>222</x> <y>58</y> </hint> </hints> </connection> <connection> <sender>tagButton</sender> <signal>toggled(bool)</signal> <receiver>tagCombo</receiver> <slot>setEnabled(bool)</slot> <hints> <hint type="sourcelabel"> <x>78</x> <y>86</y> </hint> <hint type="destinationlabel"> <x>224</x> <y>86</y> </hint> </hints> </connection> <connection> <sender>branchButton</sender> <signal>toggled(bool)</signal> <receiver>branchCombo</receiver> <slot>setEnabled(bool)</slot> <hints> <hint type="sourcelabel"> <x>75</x> <y>115</y> </hint> <hint type="destinationlabel"> <x>229</x> <y>115</y> </hint> </hints> </connection> </connections> </ui>