| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>ArtifactWidget</class>
- <widget class="QDialog" name="ArtifactWidget">
- <property name="windowModality">
- <enum>Qt::WindowModal</enum>
- </property>
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>150</height>
- </rect>
- </property>
- <property name="minimumSize">
- <size>
- <width>400</width>
- <height>150</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>400</width>
- <height>150</height>
- </size>
- </property>
- <property name="windowTitle">
- <string>Artifact</string>
- </property>
- <widget class="QWidget" name="gridLayoutWidget">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>10</y>
- <width>381</width>
- <height>80</height>
- </rect>
- </property>
- <layout class="QGridLayout" name="gridLayout" columnstretch="1,5">
- <item row="1" column="0">
- <widget class="QLabel" name="label_2">
- <property name="text">
- <string>Artifact</string>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QComboBox" name="artifact"/>
- </item>
- <item row="0" column="1">
- <widget class="QComboBox" name="possiblePositions"/>
- </item>
- <item row="0" column="0">
- <widget class="QLabel" name="label">
- <property name="text">
- <string>Equip where:</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <widget class="QPushButton" name="saveButton">
- <property name="geometry">
- <rect>
- <x>190</x>
- <y>100</y>
- <width>93</width>
- <height>28</height>
- </rect>
- </property>
- <property name="text">
- <string>Save</string>
- </property>
- </widget>
- <widget class="QPushButton" name="cancelButton">
- <property name="geometry">
- <rect>
- <x>290</x>
- <y>100</y>
- <width>93</width>
- <height>28</height>
- </rect>
- </property>
- <property name="text">
- <string>Cancel</string>
- </property>
- </widget>
- </widget>
- <resources/>
- <connections/>
- </ui>
|