eric7/Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.ui

branch
eric7
changeset 8312
800c432b34c8
parent 7005
342819f05839
child 8428
2deec2f8a9ab
equal deleted inserted replaced
8311:4e8b98454baa 8312:800c432b34c8
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>SetupWizardDialog</class>
4 <widget class="QDialog" name="SetupWizardDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>700</width>
10 <height>550</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>setup.py Wizard</string>
15 </property>
16 <property name="sizeGripEnabled">
17 <bool>true</bool>
18 </property>
19 <layout class="QVBoxLayout" name="verticalLayout">
20 <item>
21 <layout class="QHBoxLayout" name="horizontalLayout_9">
22 <item>
23 <widget class="QCheckBox" name="introCheckBox">
24 <property name="toolTip">
25 <string>Select to include the introductory part of the setup.py code</string>
26 </property>
27 <property name="text">
28 <string>Include Introductory Code</string>
29 </property>
30 <property name="checked">
31 <bool>true</bool>
32 </property>
33 </widget>
34 </item>
35 <item>
36 <widget class="QCheckBox" name="importCheckBox">
37 <property name="toolTip">
38 <string>Select to include the import statement</string>
39 </property>
40 <property name="text">
41 <string>Include Import Statement</string>
42 </property>
43 <property name="checked">
44 <bool>true</bool>
45 </property>
46 </widget>
47 </item>
48 <item>
49 <widget class="QCheckBox" name="metaDataCheckBox">
50 <property name="toolTip">
51 <string>Select to include code for the meta data section</string>
52 </property>
53 <property name="text">
54 <string>Include Meta Data</string>
55 </property>
56 </widget>
57 </item>
58 <item>
59 <spacer name="horizontalSpacer_6">
60 <property name="orientation">
61 <enum>Qt::Horizontal</enum>
62 </property>
63 <property name="sizeHint" stdset="0">
64 <size>
65 <width>40</width>
66 <height>20</height>
67 </size>
68 </property>
69 </spacer>
70 </item>
71 </layout>
72 </item>
73 <item>
74 <layout class="QHBoxLayout" name="horizontalLayout_2">
75 <item>
76 <widget class="QLabel" name="label_13">
77 <property name="text">
78 <string>Setup Variant:</string>
79 </property>
80 </widget>
81 </item>
82 <item>
83 <widget class="QComboBox" name="variantComboBox">
84 <property name="toolTip">
85 <string>Select the setup variant</string>
86 </property>
87 </widget>
88 </item>
89 <item>
90 <spacer name="horizontalSpacer_2">
91 <property name="orientation">
92 <enum>Qt::Horizontal</enum>
93 </property>
94 <property name="sizeHint" stdset="0">
95 <size>
96 <width>40</width>
97 <height>20</height>
98 </size>
99 </property>
100 </spacer>
101 </item>
102 </layout>
103 </item>
104 <item>
105 <layout class="QHBoxLayout" name="horizontalLayout_5">
106 <item>
107 <widget class="QLabel" name="label_15">
108 <property name="text">
109 <string>Root Directory:</string>
110 </property>
111 </widget>
112 </item>
113 <item>
114 <widget class="QLineEdit" name="packageRootEdit">
115 <property name="toolTip">
116 <string>Enter the root directory</string>
117 </property>
118 </widget>
119 </item>
120 <item>
121 <widget class="QToolButton" name="packageRootDirButton">
122 <property name="toolTip">
123 <string>Select the root directory via a directory selection dialog</string>
124 </property>
125 </widget>
126 </item>
127 </layout>
128 </item>
129 <item>
130 <widget class="QTabWidget" name="dataTabWidget">
131 <property name="currentIndex">
132 <number>0</number>
133 </property>
134 <widget class="QWidget" name="basicTab">
135 <attribute name="title">
136 <string>Basic</string>
137 </attribute>
138 <layout class="QGridLayout" name="gridLayout">
139 <item row="0" column="0">
140 <widget class="QLabel" name="label">
141 <property name="text">
142 <string>Name:</string>
143 </property>
144 </widget>
145 </item>
146 <item row="0" column="1">
147 <widget class="QLineEdit" name="nameEdit">
148 <property name="toolTip">
149 <string>Enter the package name</string>
150 </property>
151 <property name="maxLength">
152 <number>200</number>
153 </property>
154 <property name="placeholderText">
155 <string>Mandatory</string>
156 </property>
157 </widget>
158 </item>
159 <item row="1" column="0">
160 <widget class="QLabel" name="label_2">
161 <property name="text">
162 <string>Version:</string>
163 </property>
164 </widget>
165 </item>
166 <item row="1" column="1">
167 <widget class="QLineEdit" name="versionEdit">
168 <property name="toolTip">
169 <string>Enter the version number in the form 'major.minor[.patch[.sub]]'</string>
170 </property>
171 <property name="maxLength">
172 <number>200</number>
173 </property>
174 <property name="placeholderText">
175 <string>Mandatory</string>
176 </property>
177 </widget>
178 </item>
179 <item row="2" column="0">
180 <widget class="QLabel" name="label_3">
181 <property name="text">
182 <string>Author:</string>
183 </property>
184 </widget>
185 </item>
186 <item row="2" column="1">
187 <widget class="QLineEdit" name="authorEdit">
188 <property name="toolTip">
189 <string>Enter the author's name</string>
190 </property>
191 <property name="maxLength">
192 <number>200</number>
193 </property>
194 <property name="placeholderText">
195 <string>Mandatory (or Maintainer)</string>
196 </property>
197 </widget>
198 </item>
199 <item row="3" column="0">
200 <widget class="QLabel" name="label_4">
201 <property name="text">
202 <string>Author Email:</string>
203 </property>
204 </widget>
205 </item>
206 <item row="3" column="1">
207 <widget class="QLineEdit" name="authorEmailEdit">
208 <property name="toolTip">
209 <string>Enter the author's email address</string>
210 </property>
211 <property name="inputMask">
212 <string notr="true"/>
213 </property>
214 <property name="maxLength">
215 <number>200</number>
216 </property>
217 <property name="placeholderText">
218 <string>Mandatory (or Maintainer Email)</string>
219 </property>
220 </widget>
221 </item>
222 <item row="4" column="0">
223 <widget class="QLabel" name="label_5">
224 <property name="text">
225 <string>Maintainer:</string>
226 </property>
227 </widget>
228 </item>
229 <item row="4" column="1">
230 <widget class="QLineEdit" name="maintainerEdit">
231 <property name="toolTip">
232 <string>Enter the maintainer's name</string>
233 </property>
234 <property name="maxLength">
235 <number>200</number>
236 </property>
237 <property name="placeholderText">
238 <string>Mandatory (or Author)</string>
239 </property>
240 </widget>
241 </item>
242 <item row="5" column="0">
243 <widget class="QLabel" name="label_6">
244 <property name="text">
245 <string>Maintainer Email:</string>
246 </property>
247 </widget>
248 </item>
249 <item row="5" column="1">
250 <widget class="QLineEdit" name="maintainerEmailEdit">
251 <property name="toolTip">
252 <string>Enter the maintainer's email address</string>
253 </property>
254 <property name="maxLength">
255 <number>200</number>
256 </property>
257 <property name="placeholderText">
258 <string>Mandatory (or Author Email)</string>
259 </property>
260 </widget>
261 </item>
262 <item row="6" column="1">
263 <spacer name="verticalSpacer">
264 <property name="orientation">
265 <enum>Qt::Vertical</enum>
266 </property>
267 <property name="sizeHint" stdset="0">
268 <size>
269 <width>20</width>
270 <height>223</height>
271 </size>
272 </property>
273 </spacer>
274 </item>
275 </layout>
276 </widget>
277 <widget class="QWidget" name="descriptionTab">
278 <attribute name="title">
279 <string>Description</string>
280 </attribute>
281 <layout class="QGridLayout" name="gridLayout_2">
282 <item row="0" column="0">
283 <widget class="QLabel" name="label_7">
284 <property name="text">
285 <string>Summary:</string>
286 </property>
287 </widget>
288 </item>
289 <item row="0" column="1">
290 <widget class="QLineEdit" name="summaryEdit">
291 <property name="toolTip">
292 <string>Enter the summary description of the package</string>
293 </property>
294 <property name="maxLength">
295 <number>200</number>
296 </property>
297 </widget>
298 </item>
299 <item row="1" column="0">
300 <widget class="QLabel" name="label_8">
301 <property name="text">
302 <string>Description:</string>
303 </property>
304 <property name="alignment">
305 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
306 </property>
307 </widget>
308 </item>
309 <item row="1" column="1">
310 <widget class="QPlainTextEdit" name="descriptionEdit">
311 <property name="toolTip">
312 <string>Enter the description of the package or files (one per line) to get it from.</string>
313 </property>
314 </widget>
315 </item>
316 <item row="2" column="1">
317 <widget class="QCheckBox" name="descriptionFromFilesCheckBox">
318 <property name="toolTip">
319 <string>Select to get the description from files</string>
320 </property>
321 <property name="text">
322 <string>Get description from files</string>
323 </property>
324 </widget>
325 </item>
326 <item row="3" column="0">
327 <widget class="QLabel" name="label_16">
328 <property name="text">
329 <string>Keywords:</string>
330 </property>
331 </widget>
332 </item>
333 <item row="3" column="1">
334 <widget class="QLineEdit" name="keywordsEdit">
335 <property name="toolTip">
336 <string>Enter the keywords separated by comma</string>
337 </property>
338 </widget>
339 </item>
340 </layout>
341 </widget>
342 <widget class="QWidget" name="urlTab">
343 <attribute name="title">
344 <string>URLs</string>
345 </attribute>
346 <layout class="QGridLayout" name="gridLayout_3">
347 <item row="0" column="0">
348 <widget class="QLabel" name="label_9">
349 <property name="text">
350 <string>Home Page URL:</string>
351 </property>
352 </widget>
353 </item>
354 <item row="0" column="1">
355 <widget class="QLineEdit" name="homePageUrlEdit">
356 <property name="toolTip">
357 <string>Enter the URL of the home page</string>
358 </property>
359 <property name="placeholderText">
360 <string>Mandatory</string>
361 </property>
362 </widget>
363 </item>
364 <item row="1" column="0">
365 <widget class="QLabel" name="label_10">
366 <property name="text">
367 <string>Download URL:</string>
368 </property>
369 </widget>
370 </item>
371 <item row="1" column="1">
372 <widget class="QLineEdit" name="downloadUrlEdit">
373 <property name="toolTip">
374 <string>Enter the download URL</string>
375 </property>
376 </widget>
377 </item>
378 <item row="2" column="1">
379 <spacer name="verticalSpacer_2">
380 <property name="orientation">
381 <enum>Qt::Vertical</enum>
382 </property>
383 <property name="sizeHint" stdset="0">
384 <size>
385 <width>20</width>
386 <height>339</height>
387 </size>
388 </property>
389 </spacer>
390 </item>
391 </layout>
392 </widget>
393 <widget class="QWidget" name="licenseTab">
394 <attribute name="title">
395 <string>License</string>
396 </attribute>
397 <layout class="QVBoxLayout" name="verticalLayout_2">
398 <item>
399 <widget class="QCheckBox" name="licenseClassifierCheckBox">
400 <property name="text">
401 <string>Select From Trove License Classifiers</string>
402 </property>
403 <property name="checked">
404 <bool>true</bool>
405 </property>
406 </widget>
407 </item>
408 <item>
409 <widget class="QComboBox" name="licenseClassifierComboBox">
410 <property name="toolTip">
411 <string>Select the license from the list of Trove Classifiers</string>
412 </property>
413 </widget>
414 </item>
415 <item>
416 <widget class="QLineEdit" name="licenseEdit">
417 <property name="enabled">
418 <bool>false</bool>
419 </property>
420 <property name="toolTip">
421 <string>Enter a license if none of the above are suitable</string>
422 </property>
423 </widget>
424 </item>
425 <item>
426 <spacer name="verticalSpacer_3">
427 <property name="orientation">
428 <enum>Qt::Vertical</enum>
429 </property>
430 <property name="sizeHint" stdset="0">
431 <size>
432 <width>20</width>
433 <height>311</height>
434 </size>
435 </property>
436 </spacer>
437 </item>
438 </layout>
439 </widget>
440 <widget class="QWidget" name="platformsTab">
441 <attribute name="title">
442 <string>Platforms</string>
443 </attribute>
444 <layout class="QVBoxLayout" name="verticalLayout_3">
445 <item>
446 <widget class="QLabel" name="label_11">
447 <property name="text">
448 <string>Enter supported platforms (one per line):</string>
449 </property>
450 </widget>
451 </item>
452 <item>
453 <widget class="QPlainTextEdit" name="platformsEdit"/>
454 </item>
455 </layout>
456 </widget>
457 <widget class="QWidget" name="classifiersTab">
458 <attribute name="title">
459 <string>Classifiers</string>
460 </attribute>
461 <layout class="QVBoxLayout" name="verticalLayout_4">
462 <item>
463 <layout class="QHBoxLayout" name="horizontalLayout_3">
464 <item>
465 <widget class="QLabel" name="label_14">
466 <property name="text">
467 <string>Development Status:</string>
468 </property>
469 </widget>
470 </item>
471 <item>
472 <widget class="QComboBox" name="developmentStatusComboBox">
473 <property name="toolTip">
474 <string>Select the development status</string>
475 </property>
476 </widget>
477 </item>
478 <item>
479 <spacer name="horizontalSpacer_3">
480 <property name="orientation">
481 <enum>Qt::Horizontal</enum>
482 </property>
483 <property name="sizeHint" stdset="0">
484 <size>
485 <width>40</width>
486 <height>20</height>
487 </size>
488 </property>
489 </spacer>
490 </item>
491 <item>
492 <widget class="QPushButton" name="localClassifiersButton">
493 <property name="toolTip">
494 <string>Press to populate the classifiers with data retrieved from a local file.</string>
495 </property>
496 <property name="text">
497 <string>Populate from local file</string>
498 </property>
499 </widget>
500 </item>
501 </layout>
502 </item>
503 <item>
504 <widget class="QLabel" name="label_12">
505 <property name="text">
506 <string>Select the applicable classifiers:</string>
507 </property>
508 </widget>
509 </item>
510 <item>
511 <widget class="QTreeWidget" name="classifiersList">
512 <property name="alternatingRowColors">
513 <bool>true</bool>
514 </property>
515 <attribute name="headerVisible">
516 <bool>false</bool>
517 </attribute>
518 <column>
519 <property name="text">
520 <string notr="true">1</string>
521 </property>
522 </column>
523 </widget>
524 </item>
525 </layout>
526 </widget>
527 <widget class="QWidget" name="packagesTab">
528 <attribute name="title">
529 <string>Packages</string>
530 </attribute>
531 <layout class="QVBoxLayout" name="verticalLayout_8">
532 <item>
533 <widget class="QStackedWidget" name="packagesStackedWidget">
534 <property name="currentIndex">
535 <number>1</number>
536 </property>
537 <widget class="QWidget" name="distutilsPage">
538 <layout class="QVBoxLayout" name="verticalLayout_5">
539 <property name="leftMargin">
540 <number>0</number>
541 </property>
542 <property name="topMargin">
543 <number>0</number>
544 </property>
545 <property name="rightMargin">
546 <number>0</number>
547 </property>
548 <property name="bottomMargin">
549 <number>0</number>
550 </property>
551 <item>
552 <widget class="QListWidget" name="packagesList">
553 <property name="alternatingRowColors">
554 <bool>true</bool>
555 </property>
556 <property name="selectionMode">
557 <enum>QAbstractItemView::ExtendedSelection</enum>
558 </property>
559 <property name="sortingEnabled">
560 <bool>true</bool>
561 </property>
562 </widget>
563 </item>
564 <item>
565 <layout class="QHBoxLayout" name="horizontalLayout_4">
566 <item>
567 <widget class="QPushButton" name="deletePackageButton">
568 <property name="enabled">
569 <bool>false</bool>
570 </property>
571 <property name="toolTip">
572 <string>Press to delete the selected entries</string>
573 </property>
574 <property name="text">
575 <string>Delete</string>
576 </property>
577 </widget>
578 </item>
579 <item>
580 <widget class="QPushButton" name="addPackageButton">
581 <property name="enabled">
582 <bool>false</bool>
583 </property>
584 <property name="toolTip">
585 <string>Add the package</string>
586 </property>
587 <property name="text">
588 <string>Add</string>
589 </property>
590 </widget>
591 </item>
592 <item>
593 <widget class="QLineEdit" name="packageEdit">
594 <property name="toolTip">
595 <string>Enter a package name to be added</string>
596 </property>
597 </widget>
598 </item>
599 <item>
600 <widget class="QToolButton" name="packageDirButton">
601 <property name="toolTip">
602 <string>Press to select a package directory via a directory selection dialog</string>
603 </property>
604 </widget>
605 </item>
606 </layout>
607 </item>
608 <item>
609 <widget class="QPushButton" name="autodiscoverPackagesButton">
610 <property name="toolTip">
611 <string>Press to discover packages of a project automatically</string>
612 </property>
613 <property name="text">
614 <string>Autodiscover Packages</string>
615 </property>
616 </widget>
617 </item>
618 </layout>
619 </widget>
620 <widget class="QWidget" name="setuptoolsPage">
621 <layout class="QGridLayout" name="gridLayout_5">
622 <property name="leftMargin">
623 <number>0</number>
624 </property>
625 <property name="topMargin">
626 <number>0</number>
627 </property>
628 <property name="rightMargin">
629 <number>0</number>
630 </property>
631 <property name="bottomMargin">
632 <number>0</number>
633 </property>
634 <item row="0" column="0">
635 <widget class="QLabel" name="label_17">
636 <property name="text">
637 <string>Source Directory:</string>
638 </property>
639 </widget>
640 </item>
641 <item row="0" column="1">
642 <widget class="QLineEdit" name="sourceDirectoryEdit">
643 <property name="toolTip">
644 <string>Enter the source directory for the 'find_packages()' call</string>
645 </property>
646 </widget>
647 </item>
648 <item row="0" column="2">
649 <widget class="QToolButton" name="sourceDirectoryButton">
650 <property name="toolTip">
651 <string>Select the source directory for the 'find_packages()' call via a directory selection dialog</string>
652 </property>
653 <property name="text">
654 <string/>
655 </property>
656 </widget>
657 </item>
658 <item row="1" column="0" alignment="Qt::AlignTop">
659 <widget class="QLabel" name="label_18">
660 <property name="text">
661 <string>Exclude Patterns:</string>
662 </property>
663 </widget>
664 </item>
665 <item row="1" column="1" colspan="2">
666 <widget class="QListWidget" name="excludePatternList">
667 <property name="alternatingRowColors">
668 <bool>true</bool>
669 </property>
670 <property name="selectionMode">
671 <enum>QAbstractItemView::ExtendedSelection</enum>
672 </property>
673 <property name="sortingEnabled">
674 <bool>true</bool>
675 </property>
676 </widget>
677 </item>
678 <item row="2" column="1" colspan="2">
679 <layout class="QHBoxLayout" name="horizontalLayout_8">
680 <item>
681 <widget class="QPushButton" name="deleteExcludePatternButton">
682 <property name="enabled">
683 <bool>false</bool>
684 </property>
685 <property name="toolTip">
686 <string>Press to delete the selected entries</string>
687 </property>
688 <property name="text">
689 <string>Delete</string>
690 </property>
691 </widget>
692 </item>
693 <item>
694 <widget class="QPushButton" name="addExludePatternButton">
695 <property name="enabled">
696 <bool>false</bool>
697 </property>
698 <property name="toolTip">
699 <string>Press to add the pattern</string>
700 </property>
701 <property name="text">
702 <string>Add</string>
703 </property>
704 </widget>
705 </item>
706 <item>
707 <widget class="QLineEdit" name="excludePatternEdit">
708 <property name="toolTip">
709 <string>Enter an exclude pattern for the 'find_packages()' call</string>
710 </property>
711 </widget>
712 </item>
713 </layout>
714 </item>
715 <item row="3" column="0" colspan="3">
716 <widget class="QCheckBox" name="includePackageDataCheckBox">
717 <property name="toolTip">
718 <string>Select to add the 'include_package_data' statement</string>
719 </property>
720 <property name="text">
721 <string>Add 'include_package_data' Statement</string>
722 </property>
723 </widget>
724 </item>
725 </layout>
726 </widget>
727 </widget>
728 </item>
729 </layout>
730 </widget>
731 <widget class="QWidget" name="tab">
732 <attribute name="title">
733 <string>Modules</string>
734 </attribute>
735 <layout class="QVBoxLayout" name="verticalLayout_7">
736 <item>
737 <widget class="QListWidget" name="modulesList">
738 <property name="alternatingRowColors">
739 <bool>true</bool>
740 </property>
741 <property name="selectionMode">
742 <enum>QAbstractItemView::ExtendedSelection</enum>
743 </property>
744 <property name="sortingEnabled">
745 <bool>true</bool>
746 </property>
747 </widget>
748 </item>
749 <item>
750 <layout class="QHBoxLayout" name="horizontalLayout_7">
751 <item>
752 <widget class="QPushButton" name="deleteModuleButton">
753 <property name="enabled">
754 <bool>false</bool>
755 </property>
756 <property name="toolTip">
757 <string>Press to delete the selected entries</string>
758 </property>
759 <property name="text">
760 <string>Delete</string>
761 </property>
762 </widget>
763 </item>
764 <item>
765 <widget class="QPushButton" name="addModuleButton">
766 <property name="toolTip">
767 <string>Add modules via a files selection dialog</string>
768 </property>
769 <property name="text">
770 <string>Add...</string>
771 </property>
772 </widget>
773 </item>
774 <item>
775 <spacer name="horizontalSpacer_5">
776 <property name="orientation">
777 <enum>Qt::Horizontal</enum>
778 </property>
779 <property name="sizeHint" stdset="0">
780 <size>
781 <width>40</width>
782 <height>20</height>
783 </size>
784 </property>
785 </spacer>
786 </item>
787 </layout>
788 </item>
789 </layout>
790 </widget>
791 <widget class="QWidget" name="scriptsTab">
792 <attribute name="title">
793 <string>Scripts</string>
794 </attribute>
795 <layout class="QVBoxLayout" name="verticalLayout_6">
796 <item>
797 <widget class="QListWidget" name="scriptsList">
798 <property name="alternatingRowColors">
799 <bool>true</bool>
800 </property>
801 <property name="selectionMode">
802 <enum>QAbstractItemView::ExtendedSelection</enum>
803 </property>
804 <property name="sortingEnabled">
805 <bool>true</bool>
806 </property>
807 </widget>
808 </item>
809 <item>
810 <layout class="QHBoxLayout" name="horizontalLayout_6">
811 <item>
812 <widget class="QPushButton" name="deleteScriptButton">
813 <property name="enabled">
814 <bool>false</bool>
815 </property>
816 <property name="toolTip">
817 <string>Press to delete the selected entries</string>
818 </property>
819 <property name="text">
820 <string>Delete</string>
821 </property>
822 </widget>
823 </item>
824 <item>
825 <widget class="QPushButton" name="addScriptButton">
826 <property name="toolTip">
827 <string>Add script files via a files selection dialog</string>
828 </property>
829 <property name="text">
830 <string>Add...</string>
831 </property>
832 </widget>
833 </item>
834 <item>
835 <spacer name="horizontalSpacer_4">
836 <property name="orientation">
837 <enum>Qt::Horizontal</enum>
838 </property>
839 <property name="sizeHint" stdset="0">
840 <size>
841 <width>40</width>
842 <height>20</height>
843 </size>
844 </property>
845 </spacer>
846 </item>
847 </layout>
848 </item>
849 </layout>
850 </widget>
851 </widget>
852 </item>
853 <item>
854 <layout class="QHBoxLayout" name="horizontalLayout">
855 <item>
856 <widget class="QPushButton" name="projectButton">
857 <property name="toolTip">
858 <string>Press to populate entry fields from project data</string>
859 </property>
860 <property name="text">
861 <string>Populate from Project</string>
862 </property>
863 </widget>
864 </item>
865 <item>
866 <spacer name="horizontalSpacer">
867 <property name="orientation">
868 <enum>Qt::Horizontal</enum>
869 </property>
870 <property name="sizeHint" stdset="0">
871 <size>
872 <width>40</width>
873 <height>20</height>
874 </size>
875 </property>
876 </spacer>
877 </item>
878 <item>
879 <widget class="QDialogButtonBox" name="buttonBox">
880 <property name="orientation">
881 <enum>Qt::Horizontal</enum>
882 </property>
883 <property name="standardButtons">
884 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
885 </property>
886 </widget>
887 </item>
888 </layout>
889 </item>
890 </layout>
891 </widget>
892 <tabstops>
893 <tabstop>introCheckBox</tabstop>
894 <tabstop>importCheckBox</tabstop>
895 <tabstop>metaDataCheckBox</tabstop>
896 <tabstop>variantComboBox</tabstop>
897 <tabstop>packageRootEdit</tabstop>
898 <tabstop>packageRootDirButton</tabstop>
899 <tabstop>dataTabWidget</tabstop>
900 <tabstop>nameEdit</tabstop>
901 <tabstop>versionEdit</tabstop>
902 <tabstop>authorEdit</tabstop>
903 <tabstop>authorEmailEdit</tabstop>
904 <tabstop>maintainerEdit</tabstop>
905 <tabstop>maintainerEmailEdit</tabstop>
906 <tabstop>summaryEdit</tabstop>
907 <tabstop>descriptionEdit</tabstop>
908 <tabstop>descriptionFromFilesCheckBox</tabstop>
909 <tabstop>keywordsEdit</tabstop>
910 <tabstop>homePageUrlEdit</tabstop>
911 <tabstop>downloadUrlEdit</tabstop>
912 <tabstop>licenseClassifierCheckBox</tabstop>
913 <tabstop>licenseClassifierComboBox</tabstop>
914 <tabstop>licenseEdit</tabstop>
915 <tabstop>platformsEdit</tabstop>
916 <tabstop>developmentStatusComboBox</tabstop>
917 <tabstop>localClassifiersButton</tabstop>
918 <tabstop>classifiersList</tabstop>
919 <tabstop>sourceDirectoryEdit</tabstop>
920 <tabstop>sourceDirectoryButton</tabstop>
921 <tabstop>excludePatternList</tabstop>
922 <tabstop>deleteExcludePatternButton</tabstop>
923 <tabstop>addExludePatternButton</tabstop>
924 <tabstop>excludePatternEdit</tabstop>
925 <tabstop>includePackageDataCheckBox</tabstop>
926 <tabstop>modulesList</tabstop>
927 <tabstop>deleteModuleButton</tabstop>
928 <tabstop>addModuleButton</tabstop>
929 <tabstop>scriptsList</tabstop>
930 <tabstop>deleteScriptButton</tabstop>
931 <tabstop>addScriptButton</tabstop>
932 <tabstop>projectButton</tabstop>
933 <tabstop>autodiscoverPackagesButton</tabstop>
934 <tabstop>deletePackageButton</tabstop>
935 <tabstop>addPackageButton</tabstop>
936 <tabstop>packageEdit</tabstop>
937 <tabstop>packageDirButton</tabstop>
938 <tabstop>packagesList</tabstop>
939 </tabstops>
940 <resources/>
941 <connections>
942 <connection>
943 <sender>buttonBox</sender>
944 <signal>accepted()</signal>
945 <receiver>SetupWizardDialog</receiver>
946 <slot>accept()</slot>
947 <hints>
948 <hint type="sourcelabel">
949 <x>236</x>
950 <y>540</y>
951 </hint>
952 <hint type="destinationlabel">
953 <x>157</x>
954 <y>274</y>
955 </hint>
956 </hints>
957 </connection>
958 <connection>
959 <sender>buttonBox</sender>
960 <signal>rejected()</signal>
961 <receiver>SetupWizardDialog</receiver>
962 <slot>reject()</slot>
963 <hints>
964 <hint type="sourcelabel">
965 <x>304</x>
966 <y>540</y>
967 </hint>
968 <hint type="destinationlabel">
969 <x>286</x>
970 <y>274</y>
971 </hint>
972 </hints>
973 </connection>
974 <connection>
975 <sender>licenseClassifierCheckBox</sender>
976 <signal>toggled(bool)</signal>
977 <receiver>licenseClassifierComboBox</receiver>
978 <slot>setEnabled(bool)</slot>
979 <hints>
980 <hint type="sourcelabel">
981 <x>99</x>
982 <y>91</y>
983 </hint>
984 <hint type="destinationlabel">
985 <x>110</x>
986 <y>133</y>
987 </hint>
988 </hints>
989 </connection>
990 <connection>
991 <sender>licenseClassifierCheckBox</sender>
992 <signal>toggled(bool)</signal>
993 <receiver>licenseEdit</receiver>
994 <slot>setDisabled(bool)</slot>
995 <hints>
996 <hint type="sourcelabel">
997 <x>207</x>
998 <y>107</y>
999 </hint>
1000 <hint type="destinationlabel">
1001 <x>192</x>
1002 <y>141</y>
1003 </hint>
1004 </hints>
1005 </connection>
1006 </connections>
1007 </ui>

eric ide

mercurial