-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshellgamesorter.ui
More file actions
172 lines (172 loc) · 4.3 KB
/
shellgamesorter.ui
File metadata and controls
172 lines (172 loc) · 4.3 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ShellGameSortWindow</class>
<widget class="QMainWindow" name="ShellGameSortWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>Shell Game Image Sorter</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<property name="margin">
<number>0</number>
</property>
<item>
<widget class="MoveListView" name="galleryView">
<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="selectionMode">
<enum>QAbstractItemView::ExtendedSelection</enum>
</property>
<property name="movement">
<enum>QListView::Snap</enum>
</property>
<property name="resizeMode">
<enum>QListView::Adjust</enum>
</property>
<property name="spacing">
<number>10</number>
</property>
<property name="gridSize">
<size>
<width>160</width>
<height>160</height>
</size>
</property>
<property name="viewMode">
<enum>QListView::IconMode</enum>
</property>
<property name="uniformItemSizes">
<bool>true</bool>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>30</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
<property name="title">
<string>File</string>
</property>
<addaction name="actionOpenDirectory"/>
<addaction name="separator"/>
<addaction name="actionLoadOrder"/>
<addaction name="actionSaveOrder"/>
<addaction name="actionSaveOrderAs"/>
<addaction name="actionApplyOrder"/>
<addaction name="separator"/>
<addaction name="actionQuit"/>
</widget>
<widget class="QMenu" name="menuView">
<property name="title">
<string>View</string>
</property>
<addaction name="actionViewAsList"/>
<addaction name="actionViewAsIcons"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuView"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<action name="actionOpenDirectory">
<property name="text">
<string>Open directory...</string>
</property>
</action>
<action name="actionLoadOrder">
<property name="text">
<string>Load order...</string>
</property>
</action>
<action name="actionSaveOrder">
<property name="text">
<string>Save order</string>
</property>
</action>
<action name="actionSaveOrderAs">
<property name="text">
<string>Save order as...</string>
</property>
</action>
<action name="actionQuit">
<property name="text">
<string>Quit</string>
</property>
</action>
<action name="actionApplyOrder">
<property name="text">
<string>Apply order</string>
</property>
</action>
<action name="actionViewAsList">
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>View as list</string>
</property>
</action>
<action name="actionViewAsIcons">
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>true</bool>
</property>
<property name="text">
<string>View as icons</string>
</property>
</action>
</widget>
<customwidgets>
<customwidget>
<class>MoveListView</class>
<extends>QListView</extends>
<header>movelistview.h</header>
</customwidget>
</customwidgets>
<resources/>
<connections>
<connection>
<sender>actionQuit</sender>
<signal>triggered()</signal>
<receiver>ShellGameSortWindow</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>-1</x>
<y>-1</y>
</hint>
<hint type="destinationlabel">
<x>399</x>
<y>299</y>
</hint>
</hints>
</connection>
</connections>
</ui>