-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkmm.ui
executable file
·210 lines (210 loc) · 5.3 KB
/
kmm.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>kmm</class>
<widget class="QMainWindow" name="kmm">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>674</width>
<height>480</height>
</rect>
</property>
<property name="windowTitle">
<string>Kindle Manga Maker 0.1</string>
</property>
<property name="windowIcon">
<iconset resource="resources.qrc">
<normaloff>:/icons/manga-icon.png</normaloff>:/icons/manga-icon.png</iconset>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QTabWidget" name="kmm_main_tab_widget">
<property name="currentIndex">
<number>-1</number>
</property>
<property name="tabsClosable">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>674</width>
<height>23</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
<property name="title">
<string>Project</string>
</property>
<addaction name="actNew"/>
<addaction name="actOpen"/>
<addaction name="actSave"/>
<addaction name="actSaveAs"/>
<addaction name="actClose"/>
<addaction name="separator"/>
<addaction name="actQuit"/>
</widget>
<widget class="QMenu" name="menuRun">
<property name="title">
<string>Export</string>
</property>
<addaction name="actCBZ"/>
<addaction name="actEPUB"/>
<addaction name="actMOBI"/>
<addaction name="separator"/>
<addaction name="actPreferences"/>
</widget>
<widget class="QMenu" name="menuHelp">
<property name="title">
<string>Help</string>
</property>
<addaction name="actionTopics"/>
<addaction name="separator"/>
<addaction name="actAboutQt"/>
<addaction name="actAbout"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuRun"/>
<addaction name="menuHelp"/>
</widget>
<widget class="QStatusBar" name="kmm_qstatusbar"/>
<action name="actNew">
<property name="text">
<string>New</string>
</property>
<property name="toolTip">
<string>Create a new project.</string>
</property>
<property name="shortcut">
<string>Ctrl+N</string>
</property>
</action>
<action name="actOpen">
<property name="text">
<string>Open</string>
</property>
<property name="toolTip">
<string>Open a project file.</string>
</property>
<property name="shortcut">
<string>Ctrl+O</string>
</property>
</action>
<action name="actSave">
<property name="text">
<string>Save</string>
</property>
<property name="toolTip">
<string>Save the project in a file.</string>
</property>
<property name="shortcut">
<string>Ctrl+S</string>
</property>
</action>
<action name="actSaveAs">
<property name="text">
<string>Save As</string>
</property>
<property name="toolTip">
<string>Save the project in a new file.</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+S</string>
</property>
</action>
<action name="actQuit">
<property name="text">
<string>Quit</string>
</property>
<property name="toolTip">
<string>Exit the Program</string>
</property>
<property name="shortcut">
<string>Ctrl+Q</string>
</property>
</action>
<action name="actMOBI">
<property name="text">
<string>Export to .mobi</string>
</property>
<property name="toolTip">
<string>Export to MOBIPOCKET format</string>
</property>
<property name="shortcut">
<string>Alt+Shift+M</string>
</property>
</action>
<action name="actPreferences">
<property name="text">
<string>Preferences</string>
</property>
<property name="toolTip">
<string>Set several preferences</string>
</property>
</action>
<action name="actionTopics">
<property name="text">
<string>Help Topics</string>
</property>
</action>
<action name="actAboutQt">
<property name="text">
<string>About Qt</string>
</property>
</action>
<action name="actAbout">
<property name="text">
<string>About Kindle Manga Maker</string>
</property>
</action>
<action name="actClose">
<property name="text">
<string>Close</string>
</property>
<property name="toolTip">
<string>Close the current tab.</string>
</property>
<property name="shortcut">
<string>Ctrl+W</string>
</property>
</action>
<action name="actEPUB">
<property name="text">
<string>Export to .epub</string>
</property>
<property name="toolTip">
<string>Export the file to EPUB format</string>
</property>
<property name="shortcut">
<string>Alt+Shift+E</string>
</property>
</action>
<action name="actCBZ">
<property name="text">
<string>Export to .cbz</string>
</property>
<property name="toolTip">
<string>Export the file to CBZ format</string>
</property>
<property name="shortcut">
<string>Alt+Shift+Z</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<tabstops>
<tabstop>kmm_main_tab_widget</tabstop>
</tabstops>
<resources>
<include location="resources.qrc"/>
</resources>
<connections/>
</ui>