This repository has been archived by the owner on May 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathWinMain.ui
181 lines (181 loc) · 4.27 KB
/
WinMain.ui
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>WinMain</class>
<widget class="QMainWindow" name="WinMain">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>678</width>
<height>513</height>
</rect>
</property>
<property name="acceptDrops">
<bool>true</bool>
</property>
<property name="windowTitle">
<string>OpenMW Mod Manager</string>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTreeView" name="tvMain">
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>
<property name="acceptDrops">
<bool>true</bool>
</property>
<property name="dragEnabled">
<bool>true</bool>
</property>
<property name="dragDropMode">
<enum>QAbstractItemView::InternalMove</enum>
</property>
<property name="defaultDropAction">
<enum>Qt::MoveAction</enum>
</property>
<property name="alternatingRowColors">
<bool>true</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<property name="indentation">
<number>15</number>
</property>
<property name="animated">
<bool>true</bool>
</property>
<property name="allColumnsShowFocus">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QStatusBar" name="statusBar"/>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>678</width>
<height>21</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
<property name="title">
<string>File</string>
</property>
<addaction name="actionQuit"/>
</widget>
<widget class="QMenu" name="menuContent">
<property name="title">
<string>Content</string>
</property>
<addaction name="actionAddData"/>
<addaction name="actionDeleteData"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuContent"/>
</widget>
<action name="actionAddData">
<property name="text">
<string>Add Data</string>
</property>
</action>
<action name="actionDeleteData">
<property name="text">
<string>Delete Data</string>
</property>
</action>
<action name="actionAddChildData">
<property name="text">
<string>Add Child Data</string>
</property>
<property name="toolTip">
<string>Insert a child data point</string>
</property>
</action>
<action name="actionQuit">
<property name="text">
<string>Quit</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections>
<connection>
<sender>actionAddData</sender>
<signal>triggered()</signal>
<receiver>WinMain</receiver>
<slot>actAddData()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>338</x>
<y>256</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionDeleteData</sender>
<signal>triggered()</signal>
<receiver>WinMain</receiver>
<slot>actDeleteData()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>338</x>
<y>256</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionAddChildData</sender>
<signal>triggered()</signal>
<receiver>WinMain</receiver>
<slot>actAddChildData()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>338</x>
<y>256</y>
</hint>
</hints>
</connection>
<connection>
<sender>actionQuit</sender>
<signal>triggered()</signal>
<receiver>WinMain</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>338</x>
<y>256</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>actAddData()</slot>
<slot>actDeleteData()</slot>
<slot>actAddChildData()</slot>
<slot>actContextMenuDataTree()</slot>
</slots>
</ui>