123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>DialogNewProject</class>
- <widget class="QDialog" name="DialogNewProject">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>670</width>
- <height>451</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>DialogNewProject</string>
- </property>
- <widget class="QGroupBox" name="groupBox">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>50</y>
- <width>641</width>
- <height>331</height>
- </rect>
- </property>
- <property name="title">
- <string/>
- </property>
- <widget class="QLabel" name="label_1">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="geometry">
- <rect>
- <x>40</x>
- <y>70</y>
- <width>61</width>
- <height>31</height>
- </rect>
- </property>
- <property name="text">
- <string>项目名称:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
- </property>
- </widget>
- <widget class="QLineEdit" name="editProjectName">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>70</y>
- <width>481</width>
- <height>21</height>
- </rect>
- </property>
- </widget>
- <widget class="QLineEdit" name="editProjectPath">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>130</y>
- <width>481</width>
- <height>21</height>
- </rect>
- </property>
- </widget>
- <widget class="QLabel" name="label_2">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="geometry">
- <rect>
- <x>40</x>
- <y>130</y>
- <width>61</width>
- <height>31</height>
- </rect>
- </property>
- <property name="text">
- <string>项目路径:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
- </property>
- </widget>
- <widget class="QLabel" name="label_3">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="geometry">
- <rect>
- <x>40</x>
- <y>180</y>
- <width>61</width>
- <height>31</height>
- </rect>
- </property>
- <property name="text">
- <string>项目信息:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
- </property>
- </widget>
- <widget class="QTextEdit" name="editProjectInfo">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>170</y>
- <width>481</width>
- <height>141</height>
- </rect>
- </property>
- </widget>
- <widget class="QPushButton" name="btnSetFolder">
- <property name="geometry">
- <rect>
- <x>550</x>
- <y>120</y>
- <width>31</width>
- <height>20</height>
- </rect>
- </property>
- <property name="text">
- <string>...</string>
- </property>
- </widget>
- </widget>
- <widget class="QPushButton" name="createButton">
- <property name="geometry">
- <rect>
- <x>430</x>
- <y>390</y>
- <width>91</width>
- <height>31</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true"/>
- </property>
- <property name="text">
- <string>Create</string>
- </property>
- <property name="default">
- <bool>true</bool>
- </property>
- </widget>
- <widget class="QPushButton" name="cancelButton">
- <property name="geometry">
- <rect>
- <x>550</x>
- <y>390</y>
- <width>91</width>
- <height>31</height>
- </rect>
- </property>
- <property name="styleSheet">
- <string notr="true"/>
- </property>
- <property name="text">
- <string>Cancel</string>
- </property>
- </widget>
- <widget class="QLabel" name="labelTitle">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>651</width>
- <height>45</height>
- </rect>
- </property>
- <property name="text">
- <string>创建新的项目</string>
- </property>
- </widget>
- <widget class="QCheckBox" name="checkBoxEmptyProject">
- <property name="geometry">
- <rect>
- <x>120</x>
- <y>400</y>
- <width>221</width>
- <height>31</height>
- </rect>
- </property>
- <property name="text">
- <string>空项目</string>
- </property>
- </widget>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources/>
- <connections/>
- </ui>
|