-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapplication.ui
304 lines (304 loc) · 7.88 KB
/
application.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Application</class>
<widget class="QMainWindow" name="Application">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>Palamariuk | Course work | Text Analyzer </string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QTextEdit" name="textEdit">
<property name="enabled">
<bool>true</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QPushButton" name="btAdvansedStatistics">
<property name="toolTip">
<string><html><head/><body><p>Show statistics about letters, words and sentences in your text</p></body></html></string>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="text">
<string>Show advanced statistics</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>22</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
<property name="title">
<string>File</string>
</property>
<property name="toolTipsVisible">
<bool>true</bool>
</property>
<addaction name="openFile"/>
<addaction name="saveFile"/>
<addaction name="saveFileAs"/>
<addaction name="closeFile"/>
</widget>
<widget class="QMenu" name="menuEdit">
<property name="title">
<string>Edit</string>
</property>
<property name="toolTipsVisible">
<bool>true</bool>
</property>
<addaction name="clearFormatting"/>
<addaction name="actionUndo"/>
<addaction name="actionRedo"/>
<addaction name="actionCopy"/>
<addaction name="actionPaste"/>
</widget>
<widget class="QMenu" name="menuAnalysis">
<property name="title">
<string>Analysis</string>
</property>
<property name="toolTipsVisible">
<bool>true</bool>
</property>
<widget class="QMenu" name="menuShowIdentical">
<property name="toolTip">
<string>Show identical...</string>
</property>
<property name="title">
<string>Show identical</string>
</property>
<property name="toolTipsVisible">
<bool>true</bool>
</property>
<addaction name="showIdSentences"/>
<addaction name="showIdProperNames"/>
</widget>
<widget class="QMenu" name="menuShowWords">
<property name="toolTip">
<string>Show words...</string>
</property>
<property name="title">
<string>Show words</string>
</property>
<property name="toolTipsVisible">
<bool>true</bool>
</property>
<addaction name="showLongestWords"/>
<addaction name="showShortestWords"/>
</widget>
<addaction name="getAverageLength"/>
<addaction name="getLetterFrequency"/>
<addaction name="menuShowIdentical"/>
<addaction name="menuShowWords"/>
<addaction name="repeatNumbers"/>
</widget>
<widget class="QMenu" name="menuHelp">
<property name="title">
<string>Help</string>
</property>
<property name="toolTipsVisible">
<bool>true</bool>
</property>
<addaction name="showTask"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuEdit"/>
<addaction name="menuAnalysis"/>
<addaction name="menuHelp"/>
</widget>
<widget class="QStatusBar" name="statusbar">
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
</widget>
<action name="openFile">
<property name="text">
<string>Open</string>
</property>
<property name="toolTip">
<string>Open file</string>
</property>
<property name="shortcut">
<string>Ctrl+O</string>
</property>
</action>
<action name="closeFile">
<property name="text">
<string>Close</string>
</property>
<property name="toolTip">
<string>Close document</string>
</property>
</action>
<action name="saveFile">
<property name="text">
<string>Save</string>
</property>
<property name="toolTip">
<string>Save to file</string>
</property>
<property name="shortcut">
<string>Ctrl+S</string>
</property>
</action>
<action name="saveFileAs">
<property name="text">
<string>Save as...</string>
</property>
<property name="toolTip">
<string>Save file as</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+S</string>
</property>
</action>
<action name="actionUndo">
<property name="text">
<string>Undo</string>
</property>
<property name="toolTip">
<string>Undo action</string>
</property>
<property name="shortcut">
<string>Ctrl+Z</string>
</property>
</action>
<action name="actionRedo">
<property name="text">
<string>Redo</string>
</property>
<property name="toolTip">
<string>Redo action</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+Z</string>
</property>
</action>
<action name="actionCopy">
<property name="text">
<string>Copy</string>
</property>
<property name="toolTip">
<string>Copy text</string>
</property>
<property name="shortcut">
<string>Ctrl+C</string>
</property>
</action>
<action name="actionPaste">
<property name="text">
<string>Paste</string>
</property>
<property name="toolTip">
<string>Paste text</string>
</property>
<property name="shortcut">
<string>Ctrl+V</string>
</property>
<property name="shortcutContext">
<enum>Qt::ApplicationShortcut</enum>
</property>
</action>
<action name="getAverageLength">
<property name="text">
<string>Average length</string>
</property>
<property name="toolTip">
<string>Find average lengths</string>
</property>
</action>
<action name="getLetterFrequency">
<property name="text">
<string>Letter frequency</string>
</property>
<property name="toolTip">
<string>Open frequency form</string>
</property>
</action>
<action name="showIdSentences">
<property name="text">
<string>Sentences</string>
</property>
<property name="toolTip">
<string>Show identical sentences</string>
</property>
</action>
<action name="showIdProperNames">
<property name="text">
<string>Proper names</string>
</property>
<property name="toolTip">
<string>Show identical proper names</string>
</property>
</action>
<action name="showLongestWords">
<property name="text">
<string>The longest word</string>
</property>
<property name="toolTip">
<string>Show the longest word</string>
</property>
</action>
<action name="showShortestWords">
<property name="text">
<string>The shortest word</string>
</property>
<property name="toolTip">
<string>Show the shortest word</string>
</property>
</action>
<action name="repeatNumbers">
<property name="text">
<string>Show repeat numbers</string>
</property>
<property name="toolTip">
<string>Show repeat numbers in your text</string>
</property>
</action>
<action name="clearFormatting">
<property name="text">
<string>Clear formatting</string>
</property>
<property name="toolTip">
<string>Clear all text formatting</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+F</string>
</property>
</action>
<action name="showTask">
<property name="text">
<string>Task</string>
</property>
<property name="toolTip">
<string>Show task</string>
</property>
<property name="shortcut">
<string>Ctrl+T</string>
</property>
</action>
</widget>
<resources/>
<connections/>
</ui>