diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2019-01-11 01:39:05 -0600 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2019-01-11 01:51:11 -0600 |
| commit | 347ac2b8b5f34a2583ae7844e0dfd79773657270 (patch) | |
| tree | ec4de70150b2e61e08cf1a17e7da646e85d0ae01 /src/forcedloaddialog.ui | |
| parent | 183069a85db598c577ee34fab046f812009c1f18 (diff) | |
Support for force loading libraries
Diffstat (limited to 'src/forcedloaddialog.ui')
| -rw-r--r-- | src/forcedloaddialog.ui | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/src/forcedloaddialog.ui b/src/forcedloaddialog.ui new file mode 100644 index 00000000..9c5b2d10 --- /dev/null +++ b/src/forcedloaddialog.ui @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>ForcedLoadDialog</class> + <widget class="QDialog" name="ForcedLoadDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>700</width> + <height>400</height> + </rect> + </property> + <property name="windowTitle"> + <string>Forced Load Settings</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QTableWidget" name="tableWidget"> + <property name="editTriggers"> + <set>QAbstractItemView::NoEditTriggers</set> + </property> + <property name="selectionMode"> + <enum>QAbstractItemView::SingleSelection</enum> + </property> + <property name="selectionBehavior"> + <enum>QAbstractItemView::SelectRows</enum> + </property> + <property name="columnCount"> + <number>1</number> + </property> + <attribute name="horizontalHeaderVisible"> + <bool>false</bool> + </attribute> + <attribute name="horizontalHeaderStretchLastSection"> + <bool>true</bool> + </attribute> + <column/> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QPushButton" name="addRowButton"> + <property name="toolTip"> + <string>Adds a row to the table.</string> + </property> + <property name="whatsThis"> + <string>Adds a row to the table.</string> + </property> + <property name="text"> + <string>Add Row</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="deleteRowButton"> + <property name="toolTip"> + <string>Deletes the selected row from the table.</string> + </property> + <property name="whatsThis"> + <string>Deletes the selected row from the table.</string> + </property> + <property name="text"> + <string>Delete Row</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> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>ForcedLoadDialog</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>ForcedLoadDialog</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> |
