blob: ce354309bf04ff7e85fc494049d1b99401d7ed17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ConfigMigrationWizard</class>
<widget class="QWizard" name="ConfigMigrationWizard">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>392</width>
<height>282</height>
</rect>
</property>
<property name="windowTitle">
<string>Configuration migration</string>
</property>
<property name="styleSheet">
<string notr="true">QTreeView::item {margin-top: 5px;}</string>
</property>
<property name="options">
<set>QWizard::NoDefaultButton</set>
</property>
<widget class="QWizardPage" name="itemsPage">
<property name="title">
<string>Items to migrate</string>
</property>
<property name="subTitle">
<string>This is a list of items found in the old configuration file, which can be migrated into the current configuration.</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTreeWidget" name="itemsTree">
<property name="indentation">
<number>0</number>
</property>
<property name="rootIsDecorated">
<bool>false</bool>
</property>
<property name="itemsExpandable">
<bool>false</bool>
</property>
<property name="expandsOnDoubleClick">
<bool>false</bool>
</property>
<attribute name="headerVisible">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string notr="true">1</string>
</property>
</column>
</widget>
</item>
</layout>
</widget>
<widget class="VerifiableWizardPage" name="optionsPage">
<property name="title">
<string>Options</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QGroupBox" name="dbGroup">
<property name="title">
<string>Put imported databases into separate group</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<widget class="QLineEdit" name="groupNameEdit">
<property name="placeholderText">
<string>Group name</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>205</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</widget>
<customwidgets>
<customwidget>
<class>VerifiableWizardPage</class>
<extends>QWizardPage</extends>
<header>common/verifiablewizardpage.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>
|