7#include <QtCore/qmap.h>
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
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
94
95
96
97
98
99
100
101
104
105
106
107QDesignerFormWindowManagerInterface::QDesignerFormWindowManagerInterface(QObject *parent)
113
114
115QDesignerFormWindowManagerInterface::~QDesignerFormWindowManagerInterface() =
default;
118
119
120
121
122
123
124
125
126#if QT_CONFIG(clipboard)
127QAction *QDesignerFormWindowManagerInterface::actionCut()
const
129 return action(CutAction);
134
135
136
137
138
139
140
141
142#if QT_CONFIG(clipboard)
143QAction *QDesignerFormWindowManagerInterface::actionCopy()
const
145 return action(CopyAction);
150
151
152
153
154
155
156
157
158#if QT_CONFIG(clipboard)
159QAction *QDesignerFormWindowManagerInterface::actionPaste()
const
161 return action(PasteAction);
166
167
168
169
170
171
172
173
174QAction *QDesignerFormWindowManagerInterface::actionDelete()
const
176 return action(DeleteAction);
180
181
182
183
184
185
186
187
188QAction *QDesignerFormWindowManagerInterface::actionSelectAll()
const
190 return action(SelectAllAction);
194
195
196
197
198
199
200
201
202
204QAction *QDesignerFormWindowManagerInterface::actionLower()
const
206 return action(LowerAction);
210
211
212
213
214
215
216
217
218
219QAction *QDesignerFormWindowManagerInterface::actionRaise()
const
221 return action(RaiseAction);
225
226
227
228
229
230
231
232
233
234QAction *QDesignerFormWindowManagerInterface::actionHorizontalLayout()
const
236 return action(HorizontalLayoutAction);
240
241
242
243
244
245
246
247
248
249QAction *QDesignerFormWindowManagerInterface::actionVerticalLayout()
const
251 return action(VerticalLayoutAction);
255
256
257
258
259
260
261
262
263QAction *QDesignerFormWindowManagerInterface::actionSplitHorizontal()
const
265 return action(SplitHorizontalAction);
269
270
271
272
273
274
275
276
277QAction *QDesignerFormWindowManagerInterface::actionSplitVertical()
const
279 return action(SplitVerticalAction);
283
284
285
286
287
288
289
290
291
292QAction *QDesignerFormWindowManagerInterface::actionGridLayout()
const
294 return action(GridLayoutAction);
298
299
300
301
302
303
304
305
306
308QAction *QDesignerFormWindowManagerInterface::actionFormLayout()
const
310 return action(FormLayoutAction);
314
315
316
317
318
319
320
321
322QAction *QDesignerFormWindowManagerInterface::actionBreakLayout()
const
324 return action(BreakLayoutAction);
328
329
330
331
332
333
334
335
336QAction *QDesignerFormWindowManagerInterface::actionAdjustSize()
const
338 return action(AdjustSizeAction);
342
343
344
345
346
347
348
349
350
352QAction *QDesignerFormWindowManagerInterface::actionSimplifyLayout()
const
354 return action(SimplifyLayoutAction);
358
359
360
361
362
365
366
367
368
371
372
373
374
375
376
379
380
381
382
383
384
387
388
389
390
391
392
395
396
397
398
401
402
403
404
405
408
409
410
411
412
413
414
417
418
419
420
423
424
425
426
427
428
429
430
431QAction *QDesignerFormWindowManagerInterface::actionUndo()
const
433 return action(UndoAction);
437
438
439
440
441
442
443
444
445QAction *QDesignerFormWindowManagerInterface::actionRedo()
const
447 return action(RedoAction);
451
452
453
454
455
456
457
458
461
462
463
464
465
466
467
470
471
472
473
474
475
476
477
480
481
482
483
484
485
486
487
490
491
492
493
496
497
498
499
500
501
502
503
506
507
508
509
510
511
514
515
516
517
518
519
520
523
524
525
526
527
528
529
532
533
534
535
536
537
Combined button and popup list for selecting options.