-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathshortcutsWindow.blp
More file actions
119 lines (95 loc) · 2.31 KB
/
shortcutsWindow.blp
File metadata and controls
119 lines (95 loc) · 2.31 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
using Gtk 4.0;
ShortcutsWindow window {
hide-on-close: true;
ShortcutsSection {
ShortcutsGroup {
title: _("Application");
ShortcutsShortcut {
accelerator: "<Control>Return";
title: _("Run Code");
}
ShortcutsShortcut {
accelerator: "<Control><Shift>Return";
title: _("Format");
}
ShortcutsShortcut {
accelerator: "<Control>O";
title: _("Open Project");
}
ShortcutsShortcut {
accelerator: "<Control><Shift>O";
title: _("Open Library");
}
ShortcutsShortcut {
accelerator: "<Control><Shift>I";
title: _("Inspector");
}
ShortcutsShortcut {
accelerator: "<Control>W";
title: _("Close Window");
}
ShortcutsShortcut {
accelerator: "<Control>question";
title: _("Keyboard Shortcuts");
}
ShortcutsShortcut {
accelerator: "<Control>Q";
title: _("Quit");
}
}
ShortcutsGroup {
title: _("Editor");
ShortcutsShortcut {
accelerator: "<Control>X";
title: _("Cut");
}
ShortcutsShortcut {
accelerator: "<Control>C";
title: _("Copy");
}
ShortcutsShortcut {
accelerator: "<Control>V";
title: _("Paste");
}
ShortcutsShortcut {
accelerator: "<Control>F";
title: _("Find");
}
ShortcutsShortcut {
accelerator: "<Control>Z";
title: _("Undo");
}
ShortcutsShortcut {
accelerator: "<Control><Shift>Z";
title: _("Redo");
}
ShortcutsShortcut {
accelerator: "<Control><Shift>X";
title: _("Show XML in UI panel");
}
ShortcutsShortcut {
accelerator: "<Control><Shift>B";
title: _("Show blueprint in UI panel");
}
}
ShortcutsGroup {
title: _("Console");
ShortcutsShortcut {
accelerator: "<Control><Shift>K";
title: _("Toggle Console");
}
ShortcutsShortcut {
accelerator: "<Control><Shift>C";
title: _("Copy");
}
ShortcutsShortcut {
accelerator: "<Control><Shift>A";
title: _("Select All");
}
ShortcutsShortcut {
accelerator: "<Control>K";
title: _("Clear");
}
}
}
}