123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>ArgDialog</class>
- <widget class="QDialog" name="ArgDialog">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>490</width>
- <height>314</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Dialog</string>
- </property>
- <widget class="QDialogButtonBox" name="argButtonBox">
- <property name="geometry">
- <rect>
- <x>80</x>
- <y>260</y>
- <width>341</width>
- <height>32</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true">background-color: rgb(203, 0, 239);
- color: rgb(16, 16, 16);</string>
- </property>
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="standardButtons">
- <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
- </property>
- </widget>
- <widget class="QListView" name="argList">
- <property name="geometry">
- <rect>
- <x>60</x>
- <y>140</y>
- <width>361</width>
- <height>91</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true">background-color: rgb(255, 255, 255);
- color: rgb(5, 5, 5);
- font: 87 10pt "Noto Sans";
- selection-background-color: rgb(255, 0, 174);</string>
- </property>
- </widget>
- <widget class="QPushButton" name="addArgument">
- <property name="geometry">
- <rect>
- <x>340</x>
- <y>70</y>
- <width>80</width>
- <height>26</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true">background-color: rgb(203, 0, 239);
- color: rgb(16, 16, 16);</string>
- </property>
- <property name="text">
- <string>Add</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="argInput">
- <property name="geometry">
- <rect>
- <x>80</x>
- <y>70</y>
- <width>231</width>
- <height>26</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true">background-color: rgb(255, 255, 255);
- color: rgb(5, 5, 5);
- font: 87 10pt "Noto Sans";</string>
- </property>
- </widget>
- <widget class="QLabel" name="argDialogTitle">
- <property name="geometry">
- <rect>
- <x>130</x>
- <y>0</y>
- <width>231</width>
- <height>51</height>
- </rect>
- </property>
- <property name="font">
- <font>
- <pointsize>22</pointsize>
- <weight>75</weight>
- <bold>true</bold>
- </font>
- </property>
- <property name="styleSheet">
- <string notr="true">color: rgb(170, 0, 255);</string>
- </property>
- <property name="text">
- <string>Add Arguments</string>
- </property>
- </widget>
- <widget class="QPushButton" name="addFile">
- <property name="geometry">
- <rect>
- <x>340</x>
- <y>100</y>
- <width>80</width>
- <height>26</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true">background-color: rgb(203, 0, 239);
- color: rgb(16, 16, 16);</string>
- </property>
- <property name="text">
- <string>File</string>
- </property>
- </widget>
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>70</x>
- <y>120</y>
- <width>81</width>
- <height>18</height>
- </rect>
- </property>
- <property name="text">
- <string>Output</string>
- </property>
- </widget>
- </widget>
- <resources/>
- <connections>
- <connection>
- <sender>argButtonBox</sender>
- <signal>accepted()</signal>
- <receiver>ArgDialog</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>argButtonBox</sender>
- <signal>rejected()</signal>
- <receiver>ArgDialog</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>
|