-
Notifications
You must be signed in to change notification settings - Fork 32
/
mainwindow.ui
201 lines (201 loc) · 5.32 KB
/
mainwindow.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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>778</width>
<height>543</height>
</rect>
</property>
<property name="windowTitle">
<string>Scribbler</string>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QVBoxLayout" name="verticalLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QSplitter" name="splitter">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<widget class="QTextEdit" name="textEdit">
<property name="acceptRichText">
<bool>false</bool>
</property>
</widget>
<widget class="SvgView" name="svgView"/>
</widget>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>778</width>
<height>25</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
<property name="title">
<string>&File</string>
</property>
<addaction name="actionConvert_to_Handwritten"/>
<addaction name="actionLoad_Text_from_File"/>
<addaction name="separator"/>
<addaction name="separator"/>
<addaction name="actionSave_Current_Sheet_as"/>
<addaction name="actionSave_All_Sheets"/>
<addaction name="separator"/>
<addaction name="actionPrint_Current_Sheet"/>
<addaction name="actionPrint_All"/>
</widget>
<widget class="QMenu" name="menuEdit">
<property name="title">
<string>&Settings</string>
</property>
<addaction name="actionShow_ToolBar"/>
<addaction name="actionPreferences"/>
</widget>
<widget class="QMenu" name="menuAbout">
<property name="title">
<string>&Help</string>
</property>
<addaction name="actionHowTo"/>
<addaction name="actionShortcuts"/>
<addaction name="actionLicenses_and_Credits"/>
<addaction name="actionAbout_Scribbler"/>
</widget>
<widget class="QMenu" name="menuFont">
<property name="title">
<string>&Font</string>
</property>
<addaction name="actionLoad_Font"/>
<addaction name="actionFont_Editor"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuFont"/>
<addaction name="menuEdit"/>
<addaction name="menuAbout"/>
</widget>
<widget class="QToolBar" name="toolBar">
<property name="windowTitle">
<string>&Show ToolBar</string>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
</widget>
<widget class="QStatusBar" name="statusBar"/>
<action name="actionLoad_Font">
<property name="text">
<string>&Load Font</string>
</property>
</action>
<action name="actionFont_Editor">
<property name="enabled">
<bool>true</bool>
</property>
<property name="text">
<string>&Font Editor</string>
</property>
</action>
<action name="actionSave_Current_Sheet_as">
<property name="enabled">
<bool>true</bool>
</property>
<property name="text">
<string>&Save Current Sheet</string>
</property>
</action>
<action name="actionPreferences">
<property name="enabled">
<bool>true</bool>
</property>
<property name="text">
<string>&Preferences</string>
</property>
</action>
<action name="actionHowTo">
<property name="enabled">
<bool>true</bool>
</property>
<property name="text">
<string>&How To</string>
</property>
</action>
<action name="actionAbout_Scribbler">
<property name="text">
<string>&About Scribbler</string>
</property>
</action>
<action name="actionConvert_to_Handwritten">
<property name="text">
<string>&Сonvert to Handwritten</string>
</property>
</action>
<action name="actionPrint_Current_Sheet">
<property name="text">
<string>&Print Current Sheet</string>
</property>
</action>
<action name="actionShow_ToolBar">
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>true</bool>
</property>
<property name="text">
<string>&Show ToolBar</string>
</property>
</action>
<action name="actionLicenses_and_Credits">
<property name="text">
<string>&Licenses and Credits</string>
</property>
</action>
<action name="actionSave_All_Sheets">
<property name="text">
<string>&Save All Sheets</string>
</property>
</action>
<action name="actionPrint_All">
<property name="text">
<string>&Print All Sheets</string>
</property>
</action>
<action name="actionLoad_Text_from_File">
<property name="text">
<string>&Load Text from File</string>
</property>
</action>
<action name="actionShortcuts">
<property name="text">
<string>&Shortcuts</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<customwidgets>
<customwidget>
<class>SvgView</class>
<extends>QGraphicsView</extends>
<header>svgview.h</header>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>