PrEditor 2.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- preditor/__init__.py +315 -0
- preditor/__main__.py +13 -0
- preditor/about_module.py +165 -0
- preditor/cli.py +192 -0
- preditor/config.py +318 -0
- preditor/constants.py +13 -0
- preditor/contexts.py +210 -0
- preditor/cores/__init__.py +0 -0
- preditor/cores/core.py +20 -0
- preditor/dccs/.hab.json +10 -0
- preditor/dccs/maya/PrEditor_maya.mod +1 -0
- preditor/dccs/maya/README.md +22 -0
- preditor/dccs/maya/plug-ins/PrEditor_maya.py +141 -0
- preditor/dccs/studiomax/PackageContents.xml +32 -0
- preditor/dccs/studiomax/PrEditor-PrEditor_Show.mcr +8 -0
- preditor/dccs/studiomax/README.md +17 -0
- preditor/dccs/studiomax/preditor.ms +16 -0
- preditor/dccs/studiomax/preditor_menu.mnx +7 -0
- preditor/debug.py +149 -0
- preditor/delayable_engine/__init__.py +302 -0
- preditor/delayable_engine/delayables.py +85 -0
- preditor/enum.py +728 -0
- preditor/excepthooks.py +165 -0
- preditor/gui/__init__.py +56 -0
- preditor/gui/app.py +163 -0
- preditor/gui/codehighlighter.py +289 -0
- preditor/gui/completer.py +237 -0
- preditor/gui/console.py +605 -0
- preditor/gui/console_base.py +911 -0
- preditor/gui/dialog.py +181 -0
- preditor/gui/drag_tab_bar.py +625 -0
- preditor/gui/editor_chooser.py +57 -0
- preditor/gui/errordialog.py +69 -0
- preditor/gui/find_files.py +137 -0
- preditor/gui/fuzzy_search/__init__.py +0 -0
- preditor/gui/fuzzy_search/fuzzy_search.py +97 -0
- preditor/gui/group_tab_widget/__init__.py +0 -0
- preditor/gui/group_tab_widget/group_tab_widget.py +528 -0
- preditor/gui/group_tab_widget/grouped_tab_menu.py +35 -0
- preditor/gui/group_tab_widget/grouped_tab_models.py +107 -0
- preditor/gui/group_tab_widget/grouped_tab_widget.py +223 -0
- preditor/gui/group_tab_widget/one_tab_widget.py +96 -0
- preditor/gui/level_buttons.py +358 -0
- preditor/gui/logger_window_handler.py +77 -0
- preditor/gui/logger_window_plugin.py +35 -0
- preditor/gui/loggerwindow.py +2405 -0
- preditor/gui/newtabwidget.py +69 -0
- preditor/gui/output_console.py +11 -0
- preditor/gui/qtdesigner/__init__.py +21 -0
- preditor/gui/qtdesigner/_log_plugin.py +29 -0
- preditor/gui/qtdesigner/console_base_plugin.py +48 -0
- preditor/gui/qtdesigner/console_predit_plugin.py +48 -0
- preditor/gui/set_text_editor_path_dialog.py +61 -0
- preditor/gui/status_label.py +99 -0
- preditor/gui/suggest_path_quotes_dialog.py +50 -0
- preditor/gui/ui/editor_chooser.ui +93 -0
- preditor/gui/ui/errordialog.ui +74 -0
- preditor/gui/ui/find_files.ui +140 -0
- preditor/gui/ui/loggerwindow.ui +1909 -0
- preditor/gui/ui/set_text_editor_path_dialog.ui +189 -0
- preditor/gui/ui/suggest_path_quotes_dialog.ui +225 -0
- preditor/gui/window.py +161 -0
- preditor/gui/workbox_mixin.py +1139 -0
- preditor/gui/workbox_text_edit.py +136 -0
- preditor/gui/workboxwidget.py +315 -0
- preditor/logging_config.py +55 -0
- preditor/osystem.py +401 -0
- preditor/plugins.py +118 -0
- preditor/prefs.py +381 -0
- preditor/resource/environment_variables.html +26 -0
- preditor/resource/error_mail.html +85 -0
- preditor/resource/error_mail_inline.html +41 -0
- preditor/resource/img/README.md +17 -0
- preditor/resource/img/arrow_forward.png +0 -0
- preditor/resource/img/check-bold.png +0 -0
- preditor/resource/img/chevron-down.png +0 -0
- preditor/resource/img/chevron-up.png +0 -0
- preditor/resource/img/close-thick.png +0 -0
- preditor/resource/img/comment-edit.png +0 -0
- preditor/resource/img/content-copy.png +0 -0
- preditor/resource/img/content-cut.png +0 -0
- preditor/resource/img/content-duplicate.png +0 -0
- preditor/resource/img/content-paste.png +0 -0
- preditor/resource/img/content-save.png +0 -0
- preditor/resource/img/debug_disabled.png +0 -0
- preditor/resource/img/eye-check.png +0 -0
- preditor/resource/img/file-plus.png +0 -0
- preditor/resource/img/file-remove.png +0 -0
- preditor/resource/img/format-align-left.png +0 -0
- preditor/resource/img/format-letter-case-lower.png +0 -0
- preditor/resource/img/format-letter-case-upper.png +0 -0
- preditor/resource/img/format-letter-case.svg +1 -0
- preditor/resource/img/information.png +0 -0
- preditor/resource/img/logging_critical.png +0 -0
- preditor/resource/img/logging_custom.png +0 -0
- preditor/resource/img/logging_debug.png +0 -0
- preditor/resource/img/logging_error.png +0 -0
- preditor/resource/img/logging_info.png +0 -0
- preditor/resource/img/logging_not_set.png +0 -0
- preditor/resource/img/logging_warning.png +0 -0
- preditor/resource/img/marker.png +0 -0
- preditor/resource/img/play.png +0 -0
- preditor/resource/img/playlist-play.png +0 -0
- preditor/resource/img/plus-minus-variant.png +0 -0
- preditor/resource/img/preditor.ico +0 -0
- preditor/resource/img/preditor.png +0 -0
- preditor/resource/img/preditor.psd +0 -0
- preditor/resource/img/preditor.svg +44 -0
- preditor/resource/img/regex.svg +1 -0
- preditor/resource/img/restart.svg +1 -0
- preditor/resource/img/skip-forward-outline.png +0 -0
- preditor/resource/img/skip-next-outline.png +0 -0
- preditor/resource/img/skip-next.png +0 -0
- preditor/resource/img/skip-previous.png +0 -0
- preditor/resource/img/subdirectory-arrow-right.png +0 -0
- preditor/resource/img/text-search-variant.png +0 -0
- preditor/resource/img/warning-big.png +0 -0
- preditor/resource/lang/python.json +30 -0
- preditor/resource/pref_updates/pref_updates.json +17 -0
- preditor/resource/settings.ini +25 -0
- preditor/resource/stylesheet/Bright.css +76 -0
- preditor/resource/stylesheet/Dark.css +210 -0
- preditor/scintilla/__init__.py +40 -0
- preditor/scintilla/delayables/__init__.py +11 -0
- preditor/scintilla/delayables/smart_highlight.py +97 -0
- preditor/scintilla/delayables/spell_check.py +174 -0
- preditor/scintilla/documenteditor.py +1924 -0
- preditor/scintilla/finddialog.py +68 -0
- preditor/scintilla/lang/__init__.py +80 -0
- preditor/scintilla/lang/config/bash.ini +15 -0
- preditor/scintilla/lang/config/batch.ini +14 -0
- preditor/scintilla/lang/config/cpp.ini +19 -0
- preditor/scintilla/lang/config/css.ini +19 -0
- preditor/scintilla/lang/config/eyeonscript.ini +17 -0
- preditor/scintilla/lang/config/html.ini +21 -0
- preditor/scintilla/lang/config/javascript.ini +24 -0
- preditor/scintilla/lang/config/lua.ini +16 -0
- preditor/scintilla/lang/config/maxscript.ini +20 -0
- preditor/scintilla/lang/config/mel.ini +18 -0
- preditor/scintilla/lang/config/mu.ini +22 -0
- preditor/scintilla/lang/config/nsi.ini +19 -0
- preditor/scintilla/lang/config/perl.ini +19 -0
- preditor/scintilla/lang/config/puppet.ini +19 -0
- preditor/scintilla/lang/config/python.ini +28 -0
- preditor/scintilla/lang/config/ruby.ini +19 -0
- preditor/scintilla/lang/config/sql.ini +7 -0
- preditor/scintilla/lang/config/xml.ini +21 -0
- preditor/scintilla/lang/config/yaml.ini +18 -0
- preditor/scintilla/lang/language.py +240 -0
- preditor/scintilla/lexers/__init__.py +0 -0
- preditor/scintilla/lexers/cpplexer.py +22 -0
- preditor/scintilla/lexers/javascriptlexer.py +27 -0
- preditor/scintilla/lexers/maxscriptlexer.py +235 -0
- preditor/scintilla/lexers/mellexer.py +369 -0
- preditor/scintilla/lexers/mulexer.py +33 -0
- preditor/scintilla/lexers/pythonlexer.py +42 -0
- preditor/scintilla/ui/finddialog.ui +160 -0
- preditor/settings.py +71 -0
- preditor/stream/__init__.py +72 -0
- preditor/stream/console_handler.py +169 -0
- preditor/stream/director.py +144 -0
- preditor/stream/manager.py +97 -0
- preditor/streamhandler_helper.py +46 -0
- preditor/utils/__init__.py +191 -0
- preditor/utils/call_stack.py +86 -0
- preditor/utils/cute.py +106 -0
- preditor/utils/stylesheets.py +54 -0
- preditor/utils/text_search.py +338 -0
- preditor/version.py +34 -0
- preditor/weakref.py +363 -0
- preditor-2.1.0.dist-info/METADATA +308 -0
- preditor-2.1.0.dist-info/RECORD +179 -0
- preditor-2.1.0.dist-info/WHEEL +5 -0
- preditor-2.1.0.dist-info/entry_points.txt +19 -0
- preditor-2.1.0.dist-info/licenses/LICENSE +165 -0
- preditor-2.1.0.dist-info/top_level.txt +3 -0
- tests/encodings/test_ecoding.py +33 -0
- tests/find_files/test_find_files.py +74 -0
- tests/ide/test_delayable_engine.py +171 -0
|
@@ -0,0 +1,1909 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<ui version="4.0">
|
|
3
|
+
<class>PrEditorWindow</class>
|
|
4
|
+
<widget class="QMainWindow" name="PrEditorWindow">
|
|
5
|
+
<property name="geometry">
|
|
6
|
+
<rect>
|
|
7
|
+
<x>0</x>
|
|
8
|
+
<y>0</y>
|
|
9
|
+
<width>958</width>
|
|
10
|
+
<height>808</height>
|
|
11
|
+
</rect>
|
|
12
|
+
</property>
|
|
13
|
+
<property name="minimumSize">
|
|
14
|
+
<size>
|
|
15
|
+
<width>500</width>
|
|
16
|
+
<height>300</height>
|
|
17
|
+
</size>
|
|
18
|
+
</property>
|
|
19
|
+
<property name="windowTitle">
|
|
20
|
+
<string>PrEditor</string>
|
|
21
|
+
</property>
|
|
22
|
+
<widget class="QWidget" name="centralwidget">
|
|
23
|
+
<layout class="QGridLayout" name="gridLayout">
|
|
24
|
+
<item row="1" column="0">
|
|
25
|
+
<widget class="FindFiles" name="uiFindInWorkboxesWGT" native="true"/>
|
|
26
|
+
</item>
|
|
27
|
+
<item row="0" column="0">
|
|
28
|
+
<widget class="QSplitter" name="uiSplitterSPLIT">
|
|
29
|
+
<property name="orientation">
|
|
30
|
+
<enum>Qt::Vertical</enum>
|
|
31
|
+
</property>
|
|
32
|
+
<widget class="ConsolePrEdit" name="uiConsoleTXT">
|
|
33
|
+
<property name="minimumSize">
|
|
34
|
+
<size>
|
|
35
|
+
<width>0</width>
|
|
36
|
+
<height>100</height>
|
|
37
|
+
</size>
|
|
38
|
+
</property>
|
|
39
|
+
</widget>
|
|
40
|
+
<widget class="QStackedWidget" name="uiWorkboxSTACK">
|
|
41
|
+
<property name="frameShape">
|
|
42
|
+
<enum>QFrame::NoFrame</enum>
|
|
43
|
+
</property>
|
|
44
|
+
<property name="currentIndex">
|
|
45
|
+
<number>2</number>
|
|
46
|
+
</property>
|
|
47
|
+
<widget class="QWidget" name="Options">
|
|
48
|
+
<layout class="QVBoxLayout" name="verticalLayout_5">
|
|
49
|
+
<property name="leftMargin">
|
|
50
|
+
<number>0</number>
|
|
51
|
+
</property>
|
|
52
|
+
<property name="topMargin">
|
|
53
|
+
<number>0</number>
|
|
54
|
+
</property>
|
|
55
|
+
<property name="rightMargin">
|
|
56
|
+
<number>0</number>
|
|
57
|
+
</property>
|
|
58
|
+
<property name="bottomMargin">
|
|
59
|
+
<number>0</number>
|
|
60
|
+
</property>
|
|
61
|
+
<item>
|
|
62
|
+
<widget class="QScrollArea" name="uiOptionsSCRL">
|
|
63
|
+
<property name="widgetResizable">
|
|
64
|
+
<bool>true</bool>
|
|
65
|
+
</property>
|
|
66
|
+
<widget class="QWidget" name="scrollAreaWidgetContents_3">
|
|
67
|
+
<property name="geometry">
|
|
68
|
+
<rect>
|
|
69
|
+
<x>0</x>
|
|
70
|
+
<y>0</y>
|
|
71
|
+
<width>156</width>
|
|
72
|
+
<height>29</height>
|
|
73
|
+
</rect>
|
|
74
|
+
</property>
|
|
75
|
+
<layout class="QVBoxLayout" name="verticalLayout_7">
|
|
76
|
+
<property name="leftMargin">
|
|
77
|
+
<number>0</number>
|
|
78
|
+
</property>
|
|
79
|
+
<property name="topMargin">
|
|
80
|
+
<number>0</number>
|
|
81
|
+
</property>
|
|
82
|
+
<property name="rightMargin">
|
|
83
|
+
<number>0</number>
|
|
84
|
+
</property>
|
|
85
|
+
<property name="bottomMargin">
|
|
86
|
+
<number>0</number>
|
|
87
|
+
</property>
|
|
88
|
+
<item>
|
|
89
|
+
<widget class="EditorChooser" name="uiEditorChooserWGT" native="true"/>
|
|
90
|
+
</item>
|
|
91
|
+
<item>
|
|
92
|
+
<widget class="QDialogButtonBox" name="uiApplySettingsBTNS">
|
|
93
|
+
<property name="standardButtons">
|
|
94
|
+
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
|
95
|
+
</property>
|
|
96
|
+
</widget>
|
|
97
|
+
</item>
|
|
98
|
+
</layout>
|
|
99
|
+
</widget>
|
|
100
|
+
</widget>
|
|
101
|
+
</item>
|
|
102
|
+
</layout>
|
|
103
|
+
</widget>
|
|
104
|
+
<widget class="QWidget" name="WorkboxGroups">
|
|
105
|
+
<layout class="QVBoxLayout" name="verticalLayout_4">
|
|
106
|
+
<property name="leftMargin">
|
|
107
|
+
<number>0</number>
|
|
108
|
+
</property>
|
|
109
|
+
<property name="topMargin">
|
|
110
|
+
<number>0</number>
|
|
111
|
+
</property>
|
|
112
|
+
<property name="rightMargin">
|
|
113
|
+
<number>0</number>
|
|
114
|
+
</property>
|
|
115
|
+
<property name="bottomMargin">
|
|
116
|
+
<number>0</number>
|
|
117
|
+
</property>
|
|
118
|
+
<item>
|
|
119
|
+
<widget class="GroupTabWidget" name="uiWorkboxTAB">
|
|
120
|
+
<property name="minimumSize">
|
|
121
|
+
<size>
|
|
122
|
+
<width>0</width>
|
|
123
|
+
<height>100</height>
|
|
124
|
+
</size>
|
|
125
|
+
</property>
|
|
126
|
+
<property name="font">
|
|
127
|
+
<font>
|
|
128
|
+
<family>Courier</family>
|
|
129
|
+
<pointsize>16</pointsize>
|
|
130
|
+
</font>
|
|
131
|
+
</property>
|
|
132
|
+
</widget>
|
|
133
|
+
</item>
|
|
134
|
+
</layout>
|
|
135
|
+
</widget>
|
|
136
|
+
<widget class="QWidget" name="uiPreferencesPAGE">
|
|
137
|
+
<layout class="QVBoxLayout" name="verticalLayout_8">
|
|
138
|
+
<property name="leftMargin">
|
|
139
|
+
<number>0</number>
|
|
140
|
+
</property>
|
|
141
|
+
<property name="topMargin">
|
|
142
|
+
<number>0</number>
|
|
143
|
+
</property>
|
|
144
|
+
<property name="rightMargin">
|
|
145
|
+
<number>0</number>
|
|
146
|
+
</property>
|
|
147
|
+
<property name="bottomMargin">
|
|
148
|
+
<number>0</number>
|
|
149
|
+
</property>
|
|
150
|
+
<item>
|
|
151
|
+
<widget class="QScrollArea" name="uiPreferencesSCRL">
|
|
152
|
+
<property name="widgetResizable">
|
|
153
|
+
<bool>true</bool>
|
|
154
|
+
</property>
|
|
155
|
+
<widget class="QWidget" name="scrollAreaWidgetContents">
|
|
156
|
+
<property name="geometry">
|
|
157
|
+
<rect>
|
|
158
|
+
<x>0</x>
|
|
159
|
+
<y>0</y>
|
|
160
|
+
<width>938</width>
|
|
161
|
+
<height>447</height>
|
|
162
|
+
</rect>
|
|
163
|
+
</property>
|
|
164
|
+
<layout class="QGridLayout" name="gridLayout_2">
|
|
165
|
+
<item row="0" column="0">
|
|
166
|
+
<widget class="QGroupBox" name="uiPreferencesGRP">
|
|
167
|
+
<property name="sizePolicy">
|
|
168
|
+
<sizepolicy hsizetype="Maximum" vsizetype="Maximum">
|
|
169
|
+
<horstretch>0</horstretch>
|
|
170
|
+
<verstretch>0</verstretch>
|
|
171
|
+
</sizepolicy>
|
|
172
|
+
</property>
|
|
173
|
+
<property name="title">
|
|
174
|
+
<string>Preferences</string>
|
|
175
|
+
</property>
|
|
176
|
+
<layout class="QVBoxLayout" name="verticalLayout_12">
|
|
177
|
+
<property name="leftMargin">
|
|
178
|
+
<number>3</number>
|
|
179
|
+
</property>
|
|
180
|
+
<property name="topMargin">
|
|
181
|
+
<number>3</number>
|
|
182
|
+
</property>
|
|
183
|
+
<property name="rightMargin">
|
|
184
|
+
<number>3</number>
|
|
185
|
+
</property>
|
|
186
|
+
<property name="bottomMargin">
|
|
187
|
+
<number>3</number>
|
|
188
|
+
</property>
|
|
189
|
+
<item>
|
|
190
|
+
<widget class="QWidget" name="uiPreferencesWDGT" native="true">
|
|
191
|
+
<property name="sizePolicy">
|
|
192
|
+
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
|
|
193
|
+
<horstretch>0</horstretch>
|
|
194
|
+
<verstretch>0</verstretch>
|
|
195
|
+
</sizepolicy>
|
|
196
|
+
</property>
|
|
197
|
+
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
198
|
+
<property name="spacing">
|
|
199
|
+
<number>3</number>
|
|
200
|
+
</property>
|
|
201
|
+
<property name="leftMargin">
|
|
202
|
+
<number>3</number>
|
|
203
|
+
</property>
|
|
204
|
+
<property name="topMargin">
|
|
205
|
+
<number>3</number>
|
|
206
|
+
</property>
|
|
207
|
+
<property name="rightMargin">
|
|
208
|
+
<number>3</number>
|
|
209
|
+
</property>
|
|
210
|
+
<property name="bottomMargin">
|
|
211
|
+
<number>3</number>
|
|
212
|
+
</property>
|
|
213
|
+
<item>
|
|
214
|
+
<widget class="QWidget" name="uiPreferencesColumn1WDGT" native="true">
|
|
215
|
+
<layout class="QVBoxLayout" name="verticalLayout_6">
|
|
216
|
+
<property name="spacing">
|
|
217
|
+
<number>3</number>
|
|
218
|
+
</property>
|
|
219
|
+
<property name="leftMargin">
|
|
220
|
+
<number>3</number>
|
|
221
|
+
</property>
|
|
222
|
+
<property name="topMargin">
|
|
223
|
+
<number>3</number>
|
|
224
|
+
</property>
|
|
225
|
+
<property name="rightMargin">
|
|
226
|
+
<number>3</number>
|
|
227
|
+
</property>
|
|
228
|
+
<property name="bottomMargin">
|
|
229
|
+
<number>3</number>
|
|
230
|
+
</property>
|
|
231
|
+
<item>
|
|
232
|
+
<widget class="QGroupBox" name="uiPrefsGeneralGRP">
|
|
233
|
+
<property name="title">
|
|
234
|
+
<string>General</string>
|
|
235
|
+
</property>
|
|
236
|
+
<layout class="QVBoxLayout" name="uiPrefsGeneralLYT">
|
|
237
|
+
<property name="spacing">
|
|
238
|
+
<number>0</number>
|
|
239
|
+
</property>
|
|
240
|
+
<property name="leftMargin">
|
|
241
|
+
<number>3</number>
|
|
242
|
+
</property>
|
|
243
|
+
<property name="topMargin">
|
|
244
|
+
<number>3</number>
|
|
245
|
+
</property>
|
|
246
|
+
<property name="rightMargin">
|
|
247
|
+
<number>3</number>
|
|
248
|
+
</property>
|
|
249
|
+
<property name="bottomMargin">
|
|
250
|
+
<number>3</number>
|
|
251
|
+
</property>
|
|
252
|
+
<item>
|
|
253
|
+
<widget class="QCheckBox" name="uiAutoPromptCHK">
|
|
254
|
+
<property name="toolTip">
|
|
255
|
+
<string>After running workbox code, start a new prompt (>>> )</string>
|
|
256
|
+
</property>
|
|
257
|
+
<property name="text">
|
|
258
|
+
<string>Auto-prompt</string>
|
|
259
|
+
</property>
|
|
260
|
+
</widget>
|
|
261
|
+
</item>
|
|
262
|
+
<item>
|
|
263
|
+
<widget class="QCheckBox" name="uiConfirmBeforeCloseCHK">
|
|
264
|
+
<property name="text">
|
|
265
|
+
<string>Confirm before closing with Ctrl+Q action</string>
|
|
266
|
+
</property>
|
|
267
|
+
<property name="checked">
|
|
268
|
+
<bool>true</bool>
|
|
269
|
+
</property>
|
|
270
|
+
</widget>
|
|
271
|
+
</item>
|
|
272
|
+
<item>
|
|
273
|
+
<widget class="QCheckBox" name="uiWordWrapCHK">
|
|
274
|
+
<property name="text">
|
|
275
|
+
<string>Console Word Wrap</string>
|
|
276
|
+
</property>
|
|
277
|
+
</widget>
|
|
278
|
+
</item>
|
|
279
|
+
<item>
|
|
280
|
+
<widget class="QCheckBox" name="uiCopyTabsToSpacesCHK">
|
|
281
|
+
<property name="text">
|
|
282
|
+
<string>Convert tabs to spaces on copy</string>
|
|
283
|
+
</property>
|
|
284
|
+
</widget>
|
|
285
|
+
</item>
|
|
286
|
+
<item>
|
|
287
|
+
<widget class="QCheckBox" name="uiIndentationsTabsCHK">
|
|
288
|
+
<property name="text">
|
|
289
|
+
<string>Indent using tabs</string>
|
|
290
|
+
</property>
|
|
291
|
+
</widget>
|
|
292
|
+
</item>
|
|
293
|
+
<item>
|
|
294
|
+
<widget class="QCheckBox" name="uiSpellCheckEnabledCHK">
|
|
295
|
+
<property name="text">
|
|
296
|
+
<string>Spell check</string>
|
|
297
|
+
</property>
|
|
298
|
+
</widget>
|
|
299
|
+
</item>
|
|
300
|
+
<item>
|
|
301
|
+
<widget class="QCheckBox" name="uiEditorVerticalCHK">
|
|
302
|
+
<property name="text">
|
|
303
|
+
<string>Vertical editor</string>
|
|
304
|
+
</property>
|
|
305
|
+
</widget>
|
|
306
|
+
</item>
|
|
307
|
+
</layout>
|
|
308
|
+
</widget>
|
|
309
|
+
</item>
|
|
310
|
+
<item>
|
|
311
|
+
<widget class="QGroupBox" name="groupBox">
|
|
312
|
+
<property name="title">
|
|
313
|
+
<string>Files</string>
|
|
314
|
+
</property>
|
|
315
|
+
<layout class="QVBoxLayout" name="verticalLayout_9">
|
|
316
|
+
<property name="spacing">
|
|
317
|
+
<number>0</number>
|
|
318
|
+
</property>
|
|
319
|
+
<property name="leftMargin">
|
|
320
|
+
<number>3</number>
|
|
321
|
+
</property>
|
|
322
|
+
<property name="topMargin">
|
|
323
|
+
<number>3</number>
|
|
324
|
+
</property>
|
|
325
|
+
<property name="rightMargin">
|
|
326
|
+
<number>3</number>
|
|
327
|
+
</property>
|
|
328
|
+
<property name="bottomMargin">
|
|
329
|
+
<number>3</number>
|
|
330
|
+
</property>
|
|
331
|
+
<item>
|
|
332
|
+
<widget class="QCheckBox" name="uiAutoSaveSettingsCHK">
|
|
333
|
+
<property name="text">
|
|
334
|
+
<string>Auto save on close</string>
|
|
335
|
+
</property>
|
|
336
|
+
</widget>
|
|
337
|
+
</item>
|
|
338
|
+
<item>
|
|
339
|
+
<widget class="QCheckBox" name="uiPromptOnLinkedChangeCHK">
|
|
340
|
+
<property name="toolTip">
|
|
341
|
+
<string>If a linked file has been deleted or modified, ask how to handle.</string>
|
|
342
|
+
</property>
|
|
343
|
+
<property name="text">
|
|
344
|
+
<string>Prompt for linked file modification / deletion</string>
|
|
345
|
+
</property>
|
|
346
|
+
<property name="checked">
|
|
347
|
+
<bool>true</bool>
|
|
348
|
+
</property>
|
|
349
|
+
</widget>
|
|
350
|
+
</item>
|
|
351
|
+
</layout>
|
|
352
|
+
</widget>
|
|
353
|
+
</item>
|
|
354
|
+
<item>
|
|
355
|
+
<widget class="QGroupBox" name="uiPrefsClearGRP">
|
|
356
|
+
<property name="title">
|
|
357
|
+
<string>Clear</string>
|
|
358
|
+
</property>
|
|
359
|
+
<layout class="QVBoxLayout" name="uiPrefsClearLYT">
|
|
360
|
+
<property name="spacing">
|
|
361
|
+
<number>0</number>
|
|
362
|
+
</property>
|
|
363
|
+
<property name="leftMargin">
|
|
364
|
+
<number>3</number>
|
|
365
|
+
</property>
|
|
366
|
+
<property name="topMargin">
|
|
367
|
+
<number>3</number>
|
|
368
|
+
</property>
|
|
369
|
+
<property name="rightMargin">
|
|
370
|
+
<number>3</number>
|
|
371
|
+
</property>
|
|
372
|
+
<property name="bottomMargin">
|
|
373
|
+
<number>3</number>
|
|
374
|
+
</property>
|
|
375
|
+
<item>
|
|
376
|
+
<widget class="QCheckBox" name="uiClearBeforeRunningCHK">
|
|
377
|
+
<property name="text">
|
|
378
|
+
<string>Clear console before running workbox code</string>
|
|
379
|
+
</property>
|
|
380
|
+
</widget>
|
|
381
|
+
</item>
|
|
382
|
+
</layout>
|
|
383
|
+
</widget>
|
|
384
|
+
</item>
|
|
385
|
+
<item>
|
|
386
|
+
<spacer name="verticalSpacer_2">
|
|
387
|
+
<property name="orientation">
|
|
388
|
+
<enum>Qt::Vertical</enum>
|
|
389
|
+
</property>
|
|
390
|
+
<property name="sizeHint" stdset="0">
|
|
391
|
+
<size>
|
|
392
|
+
<width>20</width>
|
|
393
|
+
<height>0</height>
|
|
394
|
+
</size>
|
|
395
|
+
</property>
|
|
396
|
+
</spacer>
|
|
397
|
+
</item>
|
|
398
|
+
</layout>
|
|
399
|
+
</widget>
|
|
400
|
+
</item>
|
|
401
|
+
<item>
|
|
402
|
+
<widget class="QWidget" name="uiPreferencesColumn2WDGT" native="true">
|
|
403
|
+
<layout class="QVBoxLayout" name="verticalLayout_3">
|
|
404
|
+
<property name="spacing">
|
|
405
|
+
<number>3</number>
|
|
406
|
+
</property>
|
|
407
|
+
<property name="leftMargin">
|
|
408
|
+
<number>3</number>
|
|
409
|
+
</property>
|
|
410
|
+
<property name="topMargin">
|
|
411
|
+
<number>3</number>
|
|
412
|
+
</property>
|
|
413
|
+
<property name="rightMargin">
|
|
414
|
+
<number>3</number>
|
|
415
|
+
</property>
|
|
416
|
+
<property name="bottomMargin">
|
|
417
|
+
<number>3</number>
|
|
418
|
+
</property>
|
|
419
|
+
<item>
|
|
420
|
+
<widget class="QGroupBox" name="uiPrefsAutoCompleteGRP">
|
|
421
|
+
<property name="title">
|
|
422
|
+
<string>Auto-Completion</string>
|
|
423
|
+
</property>
|
|
424
|
+
<layout class="QVBoxLayout" name="uiPrefsAutoCompleteLYT">
|
|
425
|
+
<property name="spacing">
|
|
426
|
+
<number>0</number>
|
|
427
|
+
</property>
|
|
428
|
+
<property name="leftMargin">
|
|
429
|
+
<number>3</number>
|
|
430
|
+
</property>
|
|
431
|
+
<property name="topMargin">
|
|
432
|
+
<number>3</number>
|
|
433
|
+
</property>
|
|
434
|
+
<property name="rightMargin">
|
|
435
|
+
<number>3</number>
|
|
436
|
+
</property>
|
|
437
|
+
<property name="bottomMargin">
|
|
438
|
+
<number>3</number>
|
|
439
|
+
</property>
|
|
440
|
+
<item>
|
|
441
|
+
<widget class="QCheckBox" name="uiConsoleAutoCompleteEnabledCHK">
|
|
442
|
+
<property name="text">
|
|
443
|
+
<string>Auto-Complete in console</string>
|
|
444
|
+
</property>
|
|
445
|
+
</widget>
|
|
446
|
+
</item>
|
|
447
|
+
<item>
|
|
448
|
+
<widget class="QCheckBox" name="uiWorkboxAutoCompleteEnabledCHK">
|
|
449
|
+
<property name="text">
|
|
450
|
+
<string>Auto-Complete in workbox</string>
|
|
451
|
+
</property>
|
|
452
|
+
</widget>
|
|
453
|
+
</item>
|
|
454
|
+
<item>
|
|
455
|
+
<widget class="QCheckBox" name="uiHighlightExactCompletionCHK">
|
|
456
|
+
<property name="text">
|
|
457
|
+
<string>Highligh exact completion</string>
|
|
458
|
+
</property>
|
|
459
|
+
</widget>
|
|
460
|
+
</item>
|
|
461
|
+
</layout>
|
|
462
|
+
</widget>
|
|
463
|
+
</item>
|
|
464
|
+
<item>
|
|
465
|
+
<widget class="QGroupBox" name="uiPrefsCodeHighlightingGRP">
|
|
466
|
+
<property name="title">
|
|
467
|
+
<string>Code Highlighting</string>
|
|
468
|
+
</property>
|
|
469
|
+
<layout class="QVBoxLayout" name="uiPrefsCodeHighlightingLYT">
|
|
470
|
+
<property name="spacing">
|
|
471
|
+
<number>0</number>
|
|
472
|
+
</property>
|
|
473
|
+
<property name="leftMargin">
|
|
474
|
+
<number>3</number>
|
|
475
|
+
</property>
|
|
476
|
+
<property name="topMargin">
|
|
477
|
+
<number>3</number>
|
|
478
|
+
</property>
|
|
479
|
+
<property name="rightMargin">
|
|
480
|
+
<number>3</number>
|
|
481
|
+
</property>
|
|
482
|
+
<property name="bottomMargin">
|
|
483
|
+
<number>3</number>
|
|
484
|
+
</property>
|
|
485
|
+
<item>
|
|
486
|
+
<widget class="QCheckBox" name="uiConsoleHighlightEnabledCHK">
|
|
487
|
+
<property name="text">
|
|
488
|
+
<string>Code highlighting in console</string>
|
|
489
|
+
</property>
|
|
490
|
+
<property name="checked">
|
|
491
|
+
<bool>true</bool>
|
|
492
|
+
</property>
|
|
493
|
+
</widget>
|
|
494
|
+
</item>
|
|
495
|
+
</layout>
|
|
496
|
+
</widget>
|
|
497
|
+
</item>
|
|
498
|
+
<item>
|
|
499
|
+
<widget class="QGroupBox" name="uiPrefsTracebacksGRP">
|
|
500
|
+
<property name="title">
|
|
501
|
+
<string>Tracebacks</string>
|
|
502
|
+
</property>
|
|
503
|
+
<layout class="QVBoxLayout" name="uiPrefsTracebacksLYT">
|
|
504
|
+
<property name="spacing">
|
|
505
|
+
<number>0</number>
|
|
506
|
+
</property>
|
|
507
|
+
<property name="leftMargin">
|
|
508
|
+
<number>3</number>
|
|
509
|
+
</property>
|
|
510
|
+
<property name="topMargin">
|
|
511
|
+
<number>3</number>
|
|
512
|
+
</property>
|
|
513
|
+
<property name="rightMargin">
|
|
514
|
+
<number>3</number>
|
|
515
|
+
</property>
|
|
516
|
+
<property name="bottomMargin">
|
|
517
|
+
<number>3</number>
|
|
518
|
+
</property>
|
|
519
|
+
<item>
|
|
520
|
+
<widget class="QCheckBox" name="uiErrorHyperlinksCHK">
|
|
521
|
+
<property name="text">
|
|
522
|
+
<string>Error hyperlinks</string>
|
|
523
|
+
</property>
|
|
524
|
+
</widget>
|
|
525
|
+
</item>
|
|
526
|
+
<item>
|
|
527
|
+
<widget class="QCheckBox" name="uiSeparateTracebackCHK">
|
|
528
|
+
<property name="text">
|
|
529
|
+
<string>Visually separate internal PrEditor traceback</string>
|
|
530
|
+
</property>
|
|
531
|
+
</widget>
|
|
532
|
+
</item>
|
|
533
|
+
</layout>
|
|
534
|
+
</widget>
|
|
535
|
+
</item>
|
|
536
|
+
<item>
|
|
537
|
+
<widget class="QGroupBox" name="uiPrefsInternalDebugGRP">
|
|
538
|
+
<property name="title">
|
|
539
|
+
<string>Internal Debug</string>
|
|
540
|
+
</property>
|
|
541
|
+
<layout class="QVBoxLayout" name="uiPrefsInternalDebugLYT">
|
|
542
|
+
<property name="spacing">
|
|
543
|
+
<number>0</number>
|
|
544
|
+
</property>
|
|
545
|
+
<property name="leftMargin">
|
|
546
|
+
<number>3</number>
|
|
547
|
+
</property>
|
|
548
|
+
<property name="topMargin">
|
|
549
|
+
<number>3</number>
|
|
550
|
+
</property>
|
|
551
|
+
<property name="rightMargin">
|
|
552
|
+
<number>3</number>
|
|
553
|
+
</property>
|
|
554
|
+
<property name="bottomMargin">
|
|
555
|
+
<number>3</number>
|
|
556
|
+
</property>
|
|
557
|
+
<item>
|
|
558
|
+
<widget class="QCheckBox" name="uiExtraTooltipInfoCHK">
|
|
559
|
+
<property name="text">
|
|
560
|
+
<string>Display extra workbox info in tooltips</string>
|
|
561
|
+
</property>
|
|
562
|
+
</widget>
|
|
563
|
+
</item>
|
|
564
|
+
</layout>
|
|
565
|
+
</widget>
|
|
566
|
+
</item>
|
|
567
|
+
<item>
|
|
568
|
+
<spacer name="verticalSpacer">
|
|
569
|
+
<property name="orientation">
|
|
570
|
+
<enum>Qt::Vertical</enum>
|
|
571
|
+
</property>
|
|
572
|
+
<property name="sizeHint" stdset="0">
|
|
573
|
+
<size>
|
|
574
|
+
<width>20</width>
|
|
575
|
+
<height>0</height>
|
|
576
|
+
</size>
|
|
577
|
+
</property>
|
|
578
|
+
</spacer>
|
|
579
|
+
</item>
|
|
580
|
+
</layout>
|
|
581
|
+
</widget>
|
|
582
|
+
</item>
|
|
583
|
+
<item>
|
|
584
|
+
<widget class="QWidget" name="uiPreferencesColumn3WDGT" native="true">
|
|
585
|
+
<layout class="QVBoxLayout" name="verticalLayout_11">
|
|
586
|
+
<property name="spacing">
|
|
587
|
+
<number>3</number>
|
|
588
|
+
</property>
|
|
589
|
+
<property name="leftMargin">
|
|
590
|
+
<number>3</number>
|
|
591
|
+
</property>
|
|
592
|
+
<property name="topMargin">
|
|
593
|
+
<number>3</number>
|
|
594
|
+
</property>
|
|
595
|
+
<property name="rightMargin">
|
|
596
|
+
<number>3</number>
|
|
597
|
+
</property>
|
|
598
|
+
<property name="bottomMargin">
|
|
599
|
+
<number>3</number>
|
|
600
|
+
</property>
|
|
601
|
+
<item>
|
|
602
|
+
<widget class="QGroupBox" name="uiPrefsNumericSettingsGRP">
|
|
603
|
+
<property name="title">
|
|
604
|
+
<string>Numeric Settings</string>
|
|
605
|
+
</property>
|
|
606
|
+
<layout class="QGridLayout" name="gridLayout_3">
|
|
607
|
+
<property name="leftMargin">
|
|
608
|
+
<number>3</number>
|
|
609
|
+
</property>
|
|
610
|
+
<property name="topMargin">
|
|
611
|
+
<number>3</number>
|
|
612
|
+
</property>
|
|
613
|
+
<property name="rightMargin">
|
|
614
|
+
<number>3</number>
|
|
615
|
+
</property>
|
|
616
|
+
<property name="bottomMargin">
|
|
617
|
+
<number>3</number>
|
|
618
|
+
</property>
|
|
619
|
+
<property name="spacing">
|
|
620
|
+
<number>3</number>
|
|
621
|
+
</property>
|
|
622
|
+
<item row="0" column="1">
|
|
623
|
+
<widget class="QSpinBox" name="uiMaxNumRecentWorkboxesSPIN">
|
|
624
|
+
<property name="sizePolicy">
|
|
625
|
+
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
|
626
|
+
<horstretch>0</horstretch>
|
|
627
|
+
<verstretch>0</verstretch>
|
|
628
|
+
</sizepolicy>
|
|
629
|
+
</property>
|
|
630
|
+
<property name="toolTip">
|
|
631
|
+
<string>Set the maximun number of backup files on disk per workbox.
|
|
632
|
+
Must be at least 1</string>
|
|
633
|
+
</property>
|
|
634
|
+
<property name="minimum">
|
|
635
|
+
<number>1</number>
|
|
636
|
+
</property>
|
|
637
|
+
<property name="maximum">
|
|
638
|
+
<number>999</number>
|
|
639
|
+
</property>
|
|
640
|
+
<property name="value">
|
|
641
|
+
<number>25</number>
|
|
642
|
+
</property>
|
|
643
|
+
</widget>
|
|
644
|
+
</item>
|
|
645
|
+
<item row="2" column="0">
|
|
646
|
+
<widget class="QLabel" name="label">
|
|
647
|
+
<property name="toolTip">
|
|
648
|
+
<string>'If running code in the logger takes X seconds or longer,
|
|
649
|
+
the window will flash if it is not in focus.
|
|
650
|
+
Setting the value to zero will disable flashing.'</string>
|
|
651
|
+
</property>
|
|
652
|
+
<property name="text">
|
|
653
|
+
<string>Flash Interval</string>
|
|
654
|
+
</property>
|
|
655
|
+
<property name="alignment">
|
|
656
|
+
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
|
657
|
+
</property>
|
|
658
|
+
</widget>
|
|
659
|
+
</item>
|
|
660
|
+
<item row="2" column="1">
|
|
661
|
+
<widget class="QDoubleSpinBox" name="uiFlashTimeSPIN">
|
|
662
|
+
<property name="toolTip">
|
|
663
|
+
<string>'If running code in the logger takes X seconds or longer,
|
|
664
|
+
the window will flash if it is not in focus.
|
|
665
|
+
Setting the value to zero will disable flashing.'</string>
|
|
666
|
+
</property>
|
|
667
|
+
</widget>
|
|
668
|
+
</item>
|
|
669
|
+
<item row="0" column="0">
|
|
670
|
+
<widget class="QLabel" name="label_3">
|
|
671
|
+
<property name="toolTip">
|
|
672
|
+
<string>Set the maximun number of backup files on disk per workbox.
|
|
673
|
+
Must be at least 1</string>
|
|
674
|
+
</property>
|
|
675
|
+
<property name="text">
|
|
676
|
+
<string>Max recently closed workboxes</string>
|
|
677
|
+
</property>
|
|
678
|
+
<property name="alignment">
|
|
679
|
+
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
|
680
|
+
</property>
|
|
681
|
+
</widget>
|
|
682
|
+
</item>
|
|
683
|
+
<item row="1" column="0">
|
|
684
|
+
<widget class="QLabel" name="label_2">
|
|
685
|
+
<property name="toolTip">
|
|
686
|
+
<string>Set the maximun number of backup files on disk per workbox.
|
|
687
|
+
Must be at least 1</string>
|
|
688
|
+
</property>
|
|
689
|
+
<property name="text">
|
|
690
|
+
<string>Max number of Backups</string>
|
|
691
|
+
</property>
|
|
692
|
+
<property name="alignment">
|
|
693
|
+
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
|
694
|
+
</property>
|
|
695
|
+
</widget>
|
|
696
|
+
</item>
|
|
697
|
+
<item row="1" column="1">
|
|
698
|
+
<widget class="QSpinBox" name="uiMaxNumBackupsSPIN">
|
|
699
|
+
<property name="toolTip">
|
|
700
|
+
<string>Set the maximun number of backup files on disk per workbox.
|
|
701
|
+
Must be at least 1</string>
|
|
702
|
+
</property>
|
|
703
|
+
<property name="minimum">
|
|
704
|
+
<number>1</number>
|
|
705
|
+
</property>
|
|
706
|
+
<property name="maximum">
|
|
707
|
+
<number>999</number>
|
|
708
|
+
</property>
|
|
709
|
+
</widget>
|
|
710
|
+
</item>
|
|
711
|
+
</layout>
|
|
712
|
+
</widget>
|
|
713
|
+
</item>
|
|
714
|
+
<item>
|
|
715
|
+
<widget class="QGroupBox" name="uiCodeExecutionGRP">
|
|
716
|
+
<property name="title">
|
|
717
|
+
<string>Code Execution</string>
|
|
718
|
+
</property>
|
|
719
|
+
<layout class="QGridLayout" name="gridLayout_4">
|
|
720
|
+
<property name="leftMargin">
|
|
721
|
+
<number>3</number>
|
|
722
|
+
</property>
|
|
723
|
+
<property name="topMargin">
|
|
724
|
+
<number>3</number>
|
|
725
|
+
</property>
|
|
726
|
+
<property name="rightMargin">
|
|
727
|
+
<number>3</number>
|
|
728
|
+
</property>
|
|
729
|
+
<property name="bottomMargin">
|
|
730
|
+
<number>3</number>
|
|
731
|
+
</property>
|
|
732
|
+
<property name="spacing">
|
|
733
|
+
<number>3</number>
|
|
734
|
+
</property>
|
|
735
|
+
<item row="0" column="0">
|
|
736
|
+
<widget class="QCheckBox" name="uiRepaintConsolesOnWriteCHK">
|
|
737
|
+
<property name="toolTip">
|
|
738
|
+
<string><html><head/><body><p>Enables refreshing of consoles when prints are written. Enabling seeing output when running blocking code would normally prevent Qt from displaying that output until the blocking code finishes.</p></body></html></string>
|
|
739
|
+
</property>
|
|
740
|
+
<property name="text">
|
|
741
|
+
<string>Repaint on writes per sec.</string>
|
|
742
|
+
</property>
|
|
743
|
+
<property name="checked">
|
|
744
|
+
<bool>true</bool>
|
|
745
|
+
</property>
|
|
746
|
+
</widget>
|
|
747
|
+
</item>
|
|
748
|
+
<item row="0" column="1">
|
|
749
|
+
<widget class="QDoubleSpinBox" name="uiRepaintConsolesPerSecondSPIN">
|
|
750
|
+
<property name="toolTip">
|
|
751
|
+
<string><html><head/><body><p>Only refresh consoles if more than X seconds has elapsed from the previous refresh. Useful for seeing the output from blocking code while its running, but could potentially slow down code execution time if set to short.</p></body></html></string>
|
|
752
|
+
</property>
|
|
753
|
+
<property name="maximum">
|
|
754
|
+
<double>600.000000000000000</double>
|
|
755
|
+
</property>
|
|
756
|
+
<property name="singleStep">
|
|
757
|
+
<double>0.100000000000000</double>
|
|
758
|
+
</property>
|
|
759
|
+
<property name="value">
|
|
760
|
+
<double>0.200000000000000</double>
|
|
761
|
+
</property>
|
|
762
|
+
</widget>
|
|
763
|
+
</item>
|
|
764
|
+
<item row="1" column="0" colspan="2">
|
|
765
|
+
<widget class="QCheckBox" name="uiRepaintProcessEventsOccasionallyCHK">
|
|
766
|
+
<property name="toolTip">
|
|
767
|
+
<string><html><head/><body><p>When &quot;Repaint on writes per sec.&quot; is enabled it calls `repaint` instead of `QApplication.processEvents()`. This only updates the consoles and not all of Qt when running blocking code. However if the Qt app looses focus this will stop updating after a few seconds. Enabling this will enable calling `QApplication.processEvents()` every few seconds.</p></body></html></string>
|
|
768
|
+
</property>
|
|
769
|
+
<property name="text">
|
|
770
|
+
<string>Process Events occasionally</string>
|
|
771
|
+
</property>
|
|
772
|
+
<property name="checked">
|
|
773
|
+
<bool>true</bool>
|
|
774
|
+
</property>
|
|
775
|
+
</widget>
|
|
776
|
+
</item>
|
|
777
|
+
</layout>
|
|
778
|
+
</widget>
|
|
779
|
+
</item>
|
|
780
|
+
<item>
|
|
781
|
+
<widget class="QGroupBox" name="uiPrefsOnDiskGRP">
|
|
782
|
+
<property name="title">
|
|
783
|
+
<string>Prefs files on disk</string>
|
|
784
|
+
</property>
|
|
785
|
+
<layout class="QVBoxLayout" name="verticalLayout_14">
|
|
786
|
+
<property name="spacing">
|
|
787
|
+
<number>3</number>
|
|
788
|
+
</property>
|
|
789
|
+
<property name="leftMargin">
|
|
790
|
+
<number>0</number>
|
|
791
|
+
</property>
|
|
792
|
+
<property name="topMargin">
|
|
793
|
+
<number>0</number>
|
|
794
|
+
</property>
|
|
795
|
+
<property name="rightMargin">
|
|
796
|
+
<number>0</number>
|
|
797
|
+
</property>
|
|
798
|
+
<property name="bottomMargin">
|
|
799
|
+
<number>0</number>
|
|
800
|
+
</property>
|
|
801
|
+
<item>
|
|
802
|
+
<widget class="QWidget" name="widget_11" native="true">
|
|
803
|
+
<layout class="QGridLayout" name="uiPrefsOnDiskLYT">
|
|
804
|
+
<property name="leftMargin">
|
|
805
|
+
<number>3</number>
|
|
806
|
+
</property>
|
|
807
|
+
<property name="topMargin">
|
|
808
|
+
<number>3</number>
|
|
809
|
+
</property>
|
|
810
|
+
<property name="rightMargin">
|
|
811
|
+
<number>3</number>
|
|
812
|
+
</property>
|
|
813
|
+
<property name="bottomMargin">
|
|
814
|
+
<number>3</number>
|
|
815
|
+
</property>
|
|
816
|
+
<property name="spacing">
|
|
817
|
+
<number>3</number>
|
|
818
|
+
</property>
|
|
819
|
+
<item row="1" column="0">
|
|
820
|
+
<widget class="QPushButton" name="uiPrefsBackupBTN">
|
|
821
|
+
<property name="toolTip">
|
|
822
|
+
<string>This may take a long time.</string>
|
|
823
|
+
</property>
|
|
824
|
+
<property name="text">
|
|
825
|
+
<string> Backup</string>
|
|
826
|
+
</property>
|
|
827
|
+
</widget>
|
|
828
|
+
</item>
|
|
829
|
+
<item row="0" column="0">
|
|
830
|
+
<widget class="QPushButton" name="uiPrefsBrowseBTN">
|
|
831
|
+
<property name="text">
|
|
832
|
+
<string>Browse</string>
|
|
833
|
+
</property>
|
|
834
|
+
</widget>
|
|
835
|
+
</item>
|
|
836
|
+
</layout>
|
|
837
|
+
</widget>
|
|
838
|
+
</item>
|
|
839
|
+
</layout>
|
|
840
|
+
</widget>
|
|
841
|
+
</item>
|
|
842
|
+
<item>
|
|
843
|
+
<spacer name="verticalSpacer_5">
|
|
844
|
+
<property name="orientation">
|
|
845
|
+
<enum>Qt::Vertical</enum>
|
|
846
|
+
</property>
|
|
847
|
+
<property name="sizeHint" stdset="0">
|
|
848
|
+
<size>
|
|
849
|
+
<width>20</width>
|
|
850
|
+
<height>0</height>
|
|
851
|
+
</size>
|
|
852
|
+
</property>
|
|
853
|
+
</spacer>
|
|
854
|
+
</item>
|
|
855
|
+
</layout>
|
|
856
|
+
</widget>
|
|
857
|
+
</item>
|
|
858
|
+
</layout>
|
|
859
|
+
</widget>
|
|
860
|
+
</item>
|
|
861
|
+
<item>
|
|
862
|
+
<widget class="QDialogButtonBox" name="uiClosePreferencesBTN">
|
|
863
|
+
<property name="standardButtons">
|
|
864
|
+
<set>QDialogButtonBox::Close</set>
|
|
865
|
+
</property>
|
|
866
|
+
</widget>
|
|
867
|
+
</item>
|
|
868
|
+
</layout>
|
|
869
|
+
</widget>
|
|
870
|
+
</item>
|
|
871
|
+
<item row="0" column="1">
|
|
872
|
+
<spacer name="horizontalSpacer">
|
|
873
|
+
<property name="orientation">
|
|
874
|
+
<enum>Qt::Horizontal</enum>
|
|
875
|
+
</property>
|
|
876
|
+
<property name="sizeHint" stdset="0">
|
|
877
|
+
<size>
|
|
878
|
+
<width>0</width>
|
|
879
|
+
<height>20</height>
|
|
880
|
+
</size>
|
|
881
|
+
</property>
|
|
882
|
+
</spacer>
|
|
883
|
+
</item>
|
|
884
|
+
<item row="1" column="0">
|
|
885
|
+
<spacer name="verticalSpacer_3">
|
|
886
|
+
<property name="orientation">
|
|
887
|
+
<enum>Qt::Vertical</enum>
|
|
888
|
+
</property>
|
|
889
|
+
<property name="sizeHint" stdset="0">
|
|
890
|
+
<size>
|
|
891
|
+
<width>10</width>
|
|
892
|
+
<height>0</height>
|
|
893
|
+
</size>
|
|
894
|
+
</property>
|
|
895
|
+
</spacer>
|
|
896
|
+
</item>
|
|
897
|
+
</layout>
|
|
898
|
+
</widget>
|
|
899
|
+
</widget>
|
|
900
|
+
</item>
|
|
901
|
+
</layout>
|
|
902
|
+
</widget>
|
|
903
|
+
</widget>
|
|
904
|
+
</widget>
|
|
905
|
+
</item>
|
|
906
|
+
</layout>
|
|
907
|
+
</widget>
|
|
908
|
+
<widget class="QMenuBar" name="uiMenuBar">
|
|
909
|
+
<property name="geometry">
|
|
910
|
+
<rect>
|
|
911
|
+
<x>0</x>
|
|
912
|
+
<y>0</y>
|
|
913
|
+
<width>958</width>
|
|
914
|
+
<height>21</height>
|
|
915
|
+
</rect>
|
|
916
|
+
</property>
|
|
917
|
+
<widget class="QMenu" name="uiDebugMENU">
|
|
918
|
+
<property name="title">
|
|
919
|
+
<string>Debug</string>
|
|
920
|
+
</property>
|
|
921
|
+
<addaction name="separator"/>
|
|
922
|
+
<addaction name="uiResetWarningFiltersACT"/>
|
|
923
|
+
<addaction name="separator"/>
|
|
924
|
+
<addaction name="uiLogToFileACT"/>
|
|
925
|
+
<addaction name="uiLogToFileClearACT"/>
|
|
926
|
+
</widget>
|
|
927
|
+
<widget class="QMenu" name="uiFileMENU">
|
|
928
|
+
<property name="title">
|
|
929
|
+
<string comment="File Menu">&File</string>
|
|
930
|
+
</property>
|
|
931
|
+
<widget class="QMenu" name="uiClosedWorkboxesMENU">
|
|
932
|
+
<property name="title">
|
|
933
|
+
<string>Recently Closed Workboxes</string>
|
|
934
|
+
</property>
|
|
935
|
+
</widget>
|
|
936
|
+
<addaction name="uiNewWorkboxACT"/>
|
|
937
|
+
<addaction name="uiCloseWorkboxACT"/>
|
|
938
|
+
<addaction name="separator"/>
|
|
939
|
+
<addaction name="uiSaveConsoleSettingsACT"/>
|
|
940
|
+
<addaction name="uiRestartACT"/>
|
|
941
|
+
<addaction name="separator"/>
|
|
942
|
+
<addaction name="uiClosedWorkboxesMENU"/>
|
|
943
|
+
<addaction name="uiOpenMostRecentWorkboxACT"/>
|
|
944
|
+
<addaction name="uiEmptyWorkboxRecycleBinACT"/>
|
|
945
|
+
<addaction name="separator"/>
|
|
946
|
+
<addaction name="uiCloseLoggerACT"/>
|
|
947
|
+
</widget>
|
|
948
|
+
<widget class="QMenu" name="uiHelpMENU">
|
|
949
|
+
<property name="title">
|
|
950
|
+
<string>Help</string>
|
|
951
|
+
</property>
|
|
952
|
+
<widget class="QMenu" name="uiPreferencesMENU">
|
|
953
|
+
<property name="title">
|
|
954
|
+
<string>Preferences</string>
|
|
955
|
+
</property>
|
|
956
|
+
</widget>
|
|
957
|
+
<addaction name="uiPreferencesMENU"/>
|
|
958
|
+
<addaction name="uiEnvironmentVarsACT"/>
|
|
959
|
+
<addaction name="separator"/>
|
|
960
|
+
<addaction name="uiAboutPreditorACT"/>
|
|
961
|
+
</widget>
|
|
962
|
+
<widget class="QMenu" name="uiRunMENU">
|
|
963
|
+
<property name="title">
|
|
964
|
+
<string>Run</string>
|
|
965
|
+
</property>
|
|
966
|
+
<addaction name="uiRunSelectedACT"/>
|
|
967
|
+
<addaction name="uiRunSelectedDontTruncateACT"/>
|
|
968
|
+
<addaction name="uiRunAllACT"/>
|
|
969
|
+
<addaction name="separator"/>
|
|
970
|
+
<addaction name="uiClearToLastPromptACT"/>
|
|
971
|
+
<addaction name="uiRunFirstWorkboxACT"/>
|
|
972
|
+
</widget>
|
|
973
|
+
<widget class="QMenu" name="uiOptionsMENU">
|
|
974
|
+
<property name="title">
|
|
975
|
+
<string>&Options</string>
|
|
976
|
+
</property>
|
|
977
|
+
<widget class="QMenu" name="uiStyleMENU">
|
|
978
|
+
<property name="title">
|
|
979
|
+
<string>Style</string>
|
|
980
|
+
</property>
|
|
981
|
+
</widget>
|
|
982
|
+
<widget class="QMenu" name="uiCompleterModeMENU">
|
|
983
|
+
<property name="toolTip">
|
|
984
|
+
<string/>
|
|
985
|
+
</property>
|
|
986
|
+
<property name="title">
|
|
987
|
+
<string>Auto-Complete Mode</string>
|
|
988
|
+
</property>
|
|
989
|
+
<addaction name="separator"/>
|
|
990
|
+
</widget>
|
|
991
|
+
<widget class="QMenu" name="uiSelectFontsMENU">
|
|
992
|
+
<property name="title">
|
|
993
|
+
<string>Select Font</string>
|
|
994
|
+
</property>
|
|
995
|
+
<addaction name="uiSelectMonospaceFontACT"/>
|
|
996
|
+
<addaction name="uiSelectProportionalFontACT"/>
|
|
997
|
+
<addaction name="uiSelectAllFontACT"/>
|
|
998
|
+
</widget>
|
|
999
|
+
<addaction name="uiPreferencesACT"/>
|
|
1000
|
+
<addaction name="separator"/>
|
|
1001
|
+
<addaction name="uiAutoCompleteCaseSensitiveACT"/>
|
|
1002
|
+
<addaction name="uiCompleterModeMENU"/>
|
|
1003
|
+
<addaction name="separator"/>
|
|
1004
|
+
<addaction name="uiClearLogACT"/>
|
|
1005
|
+
<addaction name="separator"/>
|
|
1006
|
+
<addaction name="uiSelectFontsMENU"/>
|
|
1007
|
+
<addaction name="uiSelectGuiFontsMENU"/>
|
|
1008
|
+
<addaction name="uiDecreaseCodeFontSizeACT"/>
|
|
1009
|
+
<addaction name="uiIncreaseCodeFontSizeACT"/>
|
|
1010
|
+
<addaction name="uiDecreaseGuiFontSizeACT"/>
|
|
1011
|
+
<addaction name="uiIncreaseGuiFontSizeACT"/>
|
|
1012
|
+
<addaction name="uiStyleMENU"/>
|
|
1013
|
+
<addaction name="separator"/>
|
|
1014
|
+
<addaction name="uiSetPreferredTextEditorPathACT"/>
|
|
1015
|
+
<addaction name="uiSetWorkboxEditorACT"/>
|
|
1016
|
+
</widget>
|
|
1017
|
+
<widget class="QMenu" name="uiEditMENU">
|
|
1018
|
+
<property name="title">
|
|
1019
|
+
<string>Edit</string>
|
|
1020
|
+
</property>
|
|
1021
|
+
<widget class="QMenu" name="uiFocus_to_GroupMENU">
|
|
1022
|
+
<property name="title">
|
|
1023
|
+
<string>Focus to Group</string>
|
|
1024
|
+
</property>
|
|
1025
|
+
<addaction name="uiGroup1ACT"/>
|
|
1026
|
+
<addaction name="uiGroup2ACT"/>
|
|
1027
|
+
<addaction name="uiGroup3ACT"/>
|
|
1028
|
+
<addaction name="uiGroup4ACT"/>
|
|
1029
|
+
<addaction name="uiGroup5ACT"/>
|
|
1030
|
+
<addaction name="uiGroup6ACT"/>
|
|
1031
|
+
<addaction name="uiGroup7ACT"/>
|
|
1032
|
+
<addaction name="uiGroup8ACT"/>
|
|
1033
|
+
<addaction name="separator"/>
|
|
1034
|
+
<addaction name="uiGroupLastACT"/>
|
|
1035
|
+
</widget>
|
|
1036
|
+
<widget class="QMenu" name="uiFocus_to_TabMENU">
|
|
1037
|
+
<property name="title">
|
|
1038
|
+
<string>Focus to Tab</string>
|
|
1039
|
+
</property>
|
|
1040
|
+
<action name="uiTab1ACT">
|
|
1041
|
+
<property name="text">
|
|
1042
|
+
<string>Focus to Tab 1</string>
|
|
1043
|
+
</property>
|
|
1044
|
+
<property name="shortcut">
|
|
1045
|
+
<string>Ctrl+1</string>
|
|
1046
|
+
</property>
|
|
1047
|
+
</action>
|
|
1048
|
+
<action name="uiTab2ACT">
|
|
1049
|
+
<property name="text">
|
|
1050
|
+
<string>Focus to Tab 2</string>
|
|
1051
|
+
</property>
|
|
1052
|
+
<property name="shortcut">
|
|
1053
|
+
<string>Ctrl+2</string>
|
|
1054
|
+
</property>
|
|
1055
|
+
</action>
|
|
1056
|
+
<action name="uiTab3ACT">
|
|
1057
|
+
<property name="text">
|
|
1058
|
+
<string>Focus to Tab 3</string>
|
|
1059
|
+
</property>
|
|
1060
|
+
<property name="shortcut">
|
|
1061
|
+
<string>Ctrl+3</string>
|
|
1062
|
+
</property>
|
|
1063
|
+
</action>
|
|
1064
|
+
<action name="uiTab4ACT">
|
|
1065
|
+
<property name="text">
|
|
1066
|
+
<string>Focus to Tab 4</string>
|
|
1067
|
+
</property>
|
|
1068
|
+
<property name="shortcut">
|
|
1069
|
+
<string>Ctrl+4</string>
|
|
1070
|
+
</property>
|
|
1071
|
+
</action>
|
|
1072
|
+
<action name="uiTab5ACT">
|
|
1073
|
+
<property name="text">
|
|
1074
|
+
<string>Focus to Tab 5</string>
|
|
1075
|
+
</property>
|
|
1076
|
+
<property name="shortcut">
|
|
1077
|
+
<string>Ctrl+5</string>
|
|
1078
|
+
</property>
|
|
1079
|
+
</action>
|
|
1080
|
+
<action name="uiTab6ACT">
|
|
1081
|
+
<property name="text">
|
|
1082
|
+
<string>Focus to Tab 6</string>
|
|
1083
|
+
</property>
|
|
1084
|
+
<property name="shortcut">
|
|
1085
|
+
<string>Ctrl+6</string>
|
|
1086
|
+
</property>
|
|
1087
|
+
</action>
|
|
1088
|
+
<action name="uiTab7ACT">
|
|
1089
|
+
<property name="text">
|
|
1090
|
+
<string>Focus to Tab 7</string>
|
|
1091
|
+
</property>
|
|
1092
|
+
<property name="shortcut">
|
|
1093
|
+
<string>Ctrl+7</string>
|
|
1094
|
+
</property>
|
|
1095
|
+
</action>
|
|
1096
|
+
<action name="uiTab8ACT">
|
|
1097
|
+
<property name="text">
|
|
1098
|
+
<string>Focus to Tab 8</string>
|
|
1099
|
+
</property>
|
|
1100
|
+
<property name="shortcut">
|
|
1101
|
+
<string>Ctrl+8</string>
|
|
1102
|
+
</property>
|
|
1103
|
+
</action>
|
|
1104
|
+
<action name="uiTabLastACT">
|
|
1105
|
+
<property name="text">
|
|
1106
|
+
<string>Focus to Last Tab</string>
|
|
1107
|
+
</property>
|
|
1108
|
+
<property name="shortcut">
|
|
1109
|
+
<string>Ctrl+9</string>
|
|
1110
|
+
</property>
|
|
1111
|
+
</action>
|
|
1112
|
+
<addaction name="uiTab1ACT"/>
|
|
1113
|
+
<addaction name="uiTab2ACT"/>
|
|
1114
|
+
<addaction name="uiTab3ACT"/>
|
|
1115
|
+
<addaction name="uiTab4ACT"/>
|
|
1116
|
+
<addaction name="uiTab5ACT"/>
|
|
1117
|
+
<addaction name="uiTab6ACT"/>
|
|
1118
|
+
<addaction name="uiTab7ACT"/>
|
|
1119
|
+
<addaction name="uiTab8ACT"/>
|
|
1120
|
+
<addaction name="separator"/>
|
|
1121
|
+
<addaction name="uiTabLastACT"/>
|
|
1122
|
+
</widget>
|
|
1123
|
+
<addaction name="uiCommentToggleACT"/>
|
|
1124
|
+
<addaction name="separator"/>
|
|
1125
|
+
<addaction name="uiGetPrevCmdACT"/>
|
|
1126
|
+
<addaction name="uiGetNextCmdACT"/>
|
|
1127
|
+
<addaction name="separator"/>
|
|
1128
|
+
<addaction name="uiFocusToConsoleACT"/>
|
|
1129
|
+
<addaction name="uiCopyToConsoleACT"/>
|
|
1130
|
+
<addaction name="uiFocusToWorkboxACT"/>
|
|
1131
|
+
<addaction name="uiCopyToWorkboxACT"/>
|
|
1132
|
+
<addaction name="separator"/>
|
|
1133
|
+
<addaction name="uiNextTabACT"/>
|
|
1134
|
+
<addaction name="uiPrevTabACT"/>
|
|
1135
|
+
<addaction name="separator"/>
|
|
1136
|
+
<addaction name="uiFocus_to_GroupMENU"/>
|
|
1137
|
+
<addaction name="uiFocus_to_TabMENU"/>
|
|
1138
|
+
<addaction name="separator"/>
|
|
1139
|
+
<addaction name="uiFindInWorkboxesACT"/>
|
|
1140
|
+
<addaction name="uiFocusNameACT"/>
|
|
1141
|
+
<addaction name="separator"/>
|
|
1142
|
+
<addaction name="uiShowFirstWorkboxVersionACT"/>
|
|
1143
|
+
<addaction name="uiShowPreviousWorkboxVersionACT"/>
|
|
1144
|
+
<addaction name="uiShowNextWorkboxVersionACT"/>
|
|
1145
|
+
<addaction name="uiShowLastWorkboxVersionACT"/>
|
|
1146
|
+
</widget>
|
|
1147
|
+
<addaction name="uiFileMENU"/>
|
|
1148
|
+
<addaction name="uiEditMENU"/>
|
|
1149
|
+
<addaction name="uiDebugMENU"/>
|
|
1150
|
+
<addaction name="uiRunMENU"/>
|
|
1151
|
+
<addaction name="uiOptionsMENU"/>
|
|
1152
|
+
<addaction name="uiHelpMENU"/>
|
|
1153
|
+
</widget>
|
|
1154
|
+
<widget class="QToolBar" name="uiConsoleTOOLBAR">
|
|
1155
|
+
<property name="windowTitle">
|
|
1156
|
+
<string>Console Toolbar</string>
|
|
1157
|
+
</property>
|
|
1158
|
+
<attribute name="toolBarArea">
|
|
1159
|
+
<enum>TopToolBarArea</enum>
|
|
1160
|
+
</attribute>
|
|
1161
|
+
<attribute name="toolBarBreak">
|
|
1162
|
+
<bool>false</bool>
|
|
1163
|
+
</attribute>
|
|
1164
|
+
<addaction name="uiRunSelectedACT"/>
|
|
1165
|
+
<addaction name="uiRunAllACT"/>
|
|
1166
|
+
<addaction name="separator"/>
|
|
1167
|
+
<addaction name="uiClearLogACT"/>
|
|
1168
|
+
</widget>
|
|
1169
|
+
<action name="uiSaveLogACT">
|
|
1170
|
+
<property name="text">
|
|
1171
|
+
<string>&Save Log...</string>
|
|
1172
|
+
</property>
|
|
1173
|
+
</action>
|
|
1174
|
+
<action name="uiNoDebugACT">
|
|
1175
|
+
<property name="checkable">
|
|
1176
|
+
<bool>true</bool>
|
|
1177
|
+
</property>
|
|
1178
|
+
<property name="text">
|
|
1179
|
+
<string>&Disabled</string>
|
|
1180
|
+
</property>
|
|
1181
|
+
</action>
|
|
1182
|
+
<action name="uiDebugLowACT">
|
|
1183
|
+
<property name="checkable">
|
|
1184
|
+
<bool>true</bool>
|
|
1185
|
+
</property>
|
|
1186
|
+
<property name="text">
|
|
1187
|
+
<string>&Low Level</string>
|
|
1188
|
+
</property>
|
|
1189
|
+
</action>
|
|
1190
|
+
<action name="uiDebugMidACT">
|
|
1191
|
+
<property name="checkable">
|
|
1192
|
+
<bool>true</bool>
|
|
1193
|
+
</property>
|
|
1194
|
+
<property name="text">
|
|
1195
|
+
<string>&Mid Level</string>
|
|
1196
|
+
</property>
|
|
1197
|
+
</action>
|
|
1198
|
+
<action name="uiDebugHighACT">
|
|
1199
|
+
<property name="checkable">
|
|
1200
|
+
<bool>true</bool>
|
|
1201
|
+
</property>
|
|
1202
|
+
<property name="text">
|
|
1203
|
+
<string>&High Level</string>
|
|
1204
|
+
</property>
|
|
1205
|
+
</action>
|
|
1206
|
+
<action name="uiClearLogACT">
|
|
1207
|
+
<property name="text">
|
|
1208
|
+
<string>&Clear Python Console</string>
|
|
1209
|
+
</property>
|
|
1210
|
+
<property name="toolTip">
|
|
1211
|
+
<string>Clears the top section of PrEditor. This does not clear the workbox.</string>
|
|
1212
|
+
</property>
|
|
1213
|
+
<property name="shortcut">
|
|
1214
|
+
<string>Ctrl+Alt+Shift+D</string>
|
|
1215
|
+
</property>
|
|
1216
|
+
</action>
|
|
1217
|
+
<action name="uiRunLineACT">
|
|
1218
|
+
<property name="text">
|
|
1219
|
+
<string>Run Line...</string>
|
|
1220
|
+
</property>
|
|
1221
|
+
<property name="shortcut">
|
|
1222
|
+
<string>Enter</string>
|
|
1223
|
+
</property>
|
|
1224
|
+
</action>
|
|
1225
|
+
<action name="uiRunAllACT">
|
|
1226
|
+
<property name="text">
|
|
1227
|
+
<string>Run All</string>
|
|
1228
|
+
</property>
|
|
1229
|
+
<property name="toolTip">
|
|
1230
|
+
<string>Run all code from the current workbox</string>
|
|
1231
|
+
</property>
|
|
1232
|
+
<property name="shortcut">
|
|
1233
|
+
<string>Ctrl+Return</string>
|
|
1234
|
+
</property>
|
|
1235
|
+
</action>
|
|
1236
|
+
<action name="uiClearWorkspaceACT">
|
|
1237
|
+
<property name="text">
|
|
1238
|
+
<string>Clear Workspace...</string>
|
|
1239
|
+
</property>
|
|
1240
|
+
</action>
|
|
1241
|
+
<action name="uiRunSelectedACT">
|
|
1242
|
+
<property name="text">
|
|
1243
|
+
<string>Run Selected - truncate return value</string>
|
|
1244
|
+
</property>
|
|
1245
|
+
<property name="toolTip">
|
|
1246
|
+
<string><html><head/><body><p>Run some code from the current workbox. If you have text selected, only the selected text is run. With no text selected, the current line is run. You can also use the Number Pad Enter key to activate this.</p></body></html></string>
|
|
1247
|
+
</property>
|
|
1248
|
+
<property name="shortcut">
|
|
1249
|
+
<string>Shift+Return</string>
|
|
1250
|
+
</property>
|
|
1251
|
+
</action>
|
|
1252
|
+
<action name="uiSaveConsoleSettingsACT">
|
|
1253
|
+
<property name="text">
|
|
1254
|
+
<string>Save Console Settings</string>
|
|
1255
|
+
</property>
|
|
1256
|
+
<property name="toolTip">
|
|
1257
|
+
<string>Save Console Settings and all Workbox code</string>
|
|
1258
|
+
</property>
|
|
1259
|
+
<property name="shortcut">
|
|
1260
|
+
<string>Ctrl+S</string>
|
|
1261
|
+
</property>
|
|
1262
|
+
</action>
|
|
1263
|
+
<action name="uiCloseLoggerACT">
|
|
1264
|
+
<property name="text">
|
|
1265
|
+
<string>Close</string>
|
|
1266
|
+
</property>
|
|
1267
|
+
<property name="toolTip">
|
|
1268
|
+
<string>Close</string>
|
|
1269
|
+
</property>
|
|
1270
|
+
<property name="shortcut">
|
|
1271
|
+
<string>Ctrl+Q</string>
|
|
1272
|
+
</property>
|
|
1273
|
+
</action>
|
|
1274
|
+
<action name="uiClearToLastPromptACT">
|
|
1275
|
+
<property name="text">
|
|
1276
|
+
<string>Clear to Last Prompt</string>
|
|
1277
|
+
</property>
|
|
1278
|
+
<property name="toolTip">
|
|
1279
|
+
<string>Clear console to the last prompt</string>
|
|
1280
|
+
</property>
|
|
1281
|
+
<property name="shortcut">
|
|
1282
|
+
<string>Ctrl+Shift+Backspace</string>
|
|
1283
|
+
</property>
|
|
1284
|
+
</action>
|
|
1285
|
+
<action name="uiResetWarningFiltersACT">
|
|
1286
|
+
<property name="text">
|
|
1287
|
+
<string>Reset Warning Filters</string>
|
|
1288
|
+
</property>
|
|
1289
|
+
<property name="toolTip">
|
|
1290
|
+
<string>Clears all warning filters so you see all warnings.</string>
|
|
1291
|
+
</property>
|
|
1292
|
+
</action>
|
|
1293
|
+
<action name="uiAboutPreditorACT">
|
|
1294
|
+
<property name="text">
|
|
1295
|
+
<string>About PrEditor</string>
|
|
1296
|
+
</property>
|
|
1297
|
+
</action>
|
|
1298
|
+
<action name="uiEnvironmentVarsACT">
|
|
1299
|
+
<property name="text">
|
|
1300
|
+
<string>Environment Variables...</string>
|
|
1301
|
+
</property>
|
|
1302
|
+
</action>
|
|
1303
|
+
<action name="uiSetFlashWindowIntervalACT">
|
|
1304
|
+
<property name="text">
|
|
1305
|
+
<string>Set flash window interval...</string>
|
|
1306
|
+
</property>
|
|
1307
|
+
<property name="toolTip">
|
|
1308
|
+
<string>If executing code takes longer than this many seconds, flash the main window of the application.</string>
|
|
1309
|
+
</property>
|
|
1310
|
+
</action>
|
|
1311
|
+
<action name="uiLogToFileACT">
|
|
1312
|
+
<property name="text">
|
|
1313
|
+
<string>Log Output to File</string>
|
|
1314
|
+
</property>
|
|
1315
|
+
<property name="toolTip">
|
|
1316
|
+
<string>Log Output to a log File</string>
|
|
1317
|
+
</property>
|
|
1318
|
+
</action>
|
|
1319
|
+
<action name="actionSone">
|
|
1320
|
+
<property name="text">
|
|
1321
|
+
<string>None</string>
|
|
1322
|
+
</property>
|
|
1323
|
+
</action>
|
|
1324
|
+
<action name="uiTreegruntShortcutACT">
|
|
1325
|
+
<property name="text">
|
|
1326
|
+
<string>Treegrunt</string>
|
|
1327
|
+
</property>
|
|
1328
|
+
</action>
|
|
1329
|
+
<action name="uiPythonLoggerShortcutACT">
|
|
1330
|
+
<property name="text">
|
|
1331
|
+
<string>PrEditor</string>
|
|
1332
|
+
</property>
|
|
1333
|
+
</action>
|
|
1334
|
+
<action name="uiBlurIdeShortcutACT">
|
|
1335
|
+
<property name="text">
|
|
1336
|
+
<string>Blur IDE</string>
|
|
1337
|
+
</property>
|
|
1338
|
+
</action>
|
|
1339
|
+
<action name="uiLogToFileClearACT">
|
|
1340
|
+
<property name="text">
|
|
1341
|
+
<string>Clear Output File</string>
|
|
1342
|
+
</property>
|
|
1343
|
+
</action>
|
|
1344
|
+
<action name="uiAutoCompleteCaseSensitiveACT">
|
|
1345
|
+
<property name="checkable">
|
|
1346
|
+
<bool>true</bool>
|
|
1347
|
+
</property>
|
|
1348
|
+
<property name="text">
|
|
1349
|
+
<string>Auto-Complete - Case Sensitive</string>
|
|
1350
|
+
</property>
|
|
1351
|
+
<property name="toolTip">
|
|
1352
|
+
<string>Choose auto-completion case-sensitivity</string>
|
|
1353
|
+
</property>
|
|
1354
|
+
<property name="shortcut">
|
|
1355
|
+
<string>Ctrl+I</string>
|
|
1356
|
+
</property>
|
|
1357
|
+
</action>
|
|
1358
|
+
<action name="uiStartsWithModeACT">
|
|
1359
|
+
<property name="checkable">
|
|
1360
|
+
<bool>true</bool>
|
|
1361
|
+
</property>
|
|
1362
|
+
<property name="text">
|
|
1363
|
+
<string>StartsWith</string>
|
|
1364
|
+
</property>
|
|
1365
|
+
</action>
|
|
1366
|
+
<action name="uiOuterFuzzyModeACT">
|
|
1367
|
+
<property name="checkable">
|
|
1368
|
+
<bool>true</bool>
|
|
1369
|
+
</property>
|
|
1370
|
+
<property name="text">
|
|
1371
|
+
<string>OuterFuzzy</string>
|
|
1372
|
+
</property>
|
|
1373
|
+
</action>
|
|
1374
|
+
<action name="uiFullFuzzyModeACT">
|
|
1375
|
+
<property name="checkable">
|
|
1376
|
+
<bool>true</bool>
|
|
1377
|
+
</property>
|
|
1378
|
+
<property name="text">
|
|
1379
|
+
<string>FullFuzzy</string>
|
|
1380
|
+
</property>
|
|
1381
|
+
</action>
|
|
1382
|
+
<action name="uiCycleCompleterModeACT">
|
|
1383
|
+
<property name="text">
|
|
1384
|
+
<string>Cycle Completer Modes</string>
|
|
1385
|
+
</property>
|
|
1386
|
+
<property name="shortcut">
|
|
1387
|
+
<string>Ctrl+M</string>
|
|
1388
|
+
</property>
|
|
1389
|
+
</action>
|
|
1390
|
+
<action name="uiNewWorkboxACT">
|
|
1391
|
+
<property name="text">
|
|
1392
|
+
<string>New Workbox</string>
|
|
1393
|
+
</property>
|
|
1394
|
+
<property name="toolTip">
|
|
1395
|
+
<string>Create a new workbox</string>
|
|
1396
|
+
</property>
|
|
1397
|
+
<property name="shortcut">
|
|
1398
|
+
<string>Ctrl+N</string>
|
|
1399
|
+
</property>
|
|
1400
|
+
</action>
|
|
1401
|
+
<action name="uiCloseWorkboxACT">
|
|
1402
|
+
<property name="text">
|
|
1403
|
+
<string>Close Workbox</string>
|
|
1404
|
+
</property>
|
|
1405
|
+
<property name="toolTip">
|
|
1406
|
+
<string>Close the current workbox</string>
|
|
1407
|
+
</property>
|
|
1408
|
+
<property name="shortcut">
|
|
1409
|
+
<string>Ctrl+W</string>
|
|
1410
|
+
</property>
|
|
1411
|
+
</action>
|
|
1412
|
+
<action name="uiGetPrevCmdACT">
|
|
1413
|
+
<property name="text">
|
|
1414
|
+
<string>Get Previous Command</string>
|
|
1415
|
+
</property>
|
|
1416
|
+
<property name="toolTip">
|
|
1417
|
+
<string>Get Previous Command (like in a command prompt)</string>
|
|
1418
|
+
</property>
|
|
1419
|
+
<property name="shortcut">
|
|
1420
|
+
<string>Ctrl+Up</string>
|
|
1421
|
+
</property>
|
|
1422
|
+
</action>
|
|
1423
|
+
<action name="uiGetNextCmdACT">
|
|
1424
|
+
<property name="text">
|
|
1425
|
+
<string>Get Next Command</string>
|
|
1426
|
+
</property>
|
|
1427
|
+
<property name="toolTip">
|
|
1428
|
+
<string>Get Next Command (like in a command prompt)</string>
|
|
1429
|
+
</property>
|
|
1430
|
+
<property name="shortcut">
|
|
1431
|
+
<string>Ctrl+Down</string>
|
|
1432
|
+
</property>
|
|
1433
|
+
</action>
|
|
1434
|
+
<action name="uiFocusToConsoleACT">
|
|
1435
|
+
<property name="text">
|
|
1436
|
+
<string>Focus to Console</string>
|
|
1437
|
+
</property>
|
|
1438
|
+
<property name="toolTip">
|
|
1439
|
+
<string>Set focus to the console</string>
|
|
1440
|
+
</property>
|
|
1441
|
+
<property name="shortcut">
|
|
1442
|
+
<string>Ctrl+Shift+PgUp</string>
|
|
1443
|
+
</property>
|
|
1444
|
+
</action>
|
|
1445
|
+
<action name="uiCopyToConsoleACT">
|
|
1446
|
+
<property name="text">
|
|
1447
|
+
<string>Focus and Copy to Console</string>
|
|
1448
|
+
</property>
|
|
1449
|
+
<property name="toolTip">
|
|
1450
|
+
<string>Set focus to the console and copy/paste selection or line</string>
|
|
1451
|
+
</property>
|
|
1452
|
+
<property name="shortcut">
|
|
1453
|
+
<string>Ctrl+Alt+Shift+PgUp</string>
|
|
1454
|
+
</property>
|
|
1455
|
+
</action>
|
|
1456
|
+
<action name="uiFocusToWorkboxACT">
|
|
1457
|
+
<property name="text">
|
|
1458
|
+
<string>Focus to Workbox</string>
|
|
1459
|
+
</property>
|
|
1460
|
+
<property name="toolTip">
|
|
1461
|
+
<string>Set focus to the current workbox</string>
|
|
1462
|
+
</property>
|
|
1463
|
+
<property name="shortcut">
|
|
1464
|
+
<string>Ctrl+Shift+PgDown</string>
|
|
1465
|
+
</property>
|
|
1466
|
+
</action>
|
|
1467
|
+
<action name="uiCopyToWorkboxACT">
|
|
1468
|
+
<property name="text">
|
|
1469
|
+
<string>Focus and Copy to Workbox</string>
|
|
1470
|
+
</property>
|
|
1471
|
+
<property name="toolTip">
|
|
1472
|
+
<string>Set focus to the current workbox and copy/paste selection or line</string>
|
|
1473
|
+
</property>
|
|
1474
|
+
<property name="shortcut">
|
|
1475
|
+
<string>Ctrl+Alt+Shift+PgDown</string>
|
|
1476
|
+
</property>
|
|
1477
|
+
</action>
|
|
1478
|
+
<action name="uiNextTabACT">
|
|
1479
|
+
<property name="text">
|
|
1480
|
+
<string>Focus to Next Tab</string>
|
|
1481
|
+
</property>
|
|
1482
|
+
<property name="toolTip">
|
|
1483
|
+
<string>Set focus to the next workbox tab</string>
|
|
1484
|
+
</property>
|
|
1485
|
+
<property name="shortcut">
|
|
1486
|
+
<string>Ctrl+Tab</string>
|
|
1487
|
+
</property>
|
|
1488
|
+
</action>
|
|
1489
|
+
<action name="uiPrevTabACT">
|
|
1490
|
+
<property name="text">
|
|
1491
|
+
<string>Focus to Previous Tab</string>
|
|
1492
|
+
</property>
|
|
1493
|
+
<property name="toolTip">
|
|
1494
|
+
<string>Set focus to the previous workbox tab</string>
|
|
1495
|
+
</property>
|
|
1496
|
+
<property name="shortcut">
|
|
1497
|
+
<string>Ctrl+Shift+Tab</string>
|
|
1498
|
+
</property>
|
|
1499
|
+
</action>
|
|
1500
|
+
<action name="uiLinesInNewWorkboxACT">
|
|
1501
|
+
<property name="checkable">
|
|
1502
|
+
<bool>true</bool>
|
|
1503
|
+
</property>
|
|
1504
|
+
<property name="text">
|
|
1505
|
+
<string>Add lines to new workbox</string>
|
|
1506
|
+
</property>
|
|
1507
|
+
</action>
|
|
1508
|
+
<action name="uiSetPreferredTextEditorPathACT">
|
|
1509
|
+
<property name="text">
|
|
1510
|
+
<string>Set Preferred Text Editor Path</string>
|
|
1511
|
+
</property>
|
|
1512
|
+
</action>
|
|
1513
|
+
<action name="uiSelectCurrentLineACT">
|
|
1514
|
+
<property name="text">
|
|
1515
|
+
<string>Select Current Line</string>
|
|
1516
|
+
</property>
|
|
1517
|
+
</action>
|
|
1518
|
+
<action name="uiTab0ACT">
|
|
1519
|
+
<property name="text">
|
|
1520
|
+
<string>Focus to Tab 0</string>
|
|
1521
|
+
</property>
|
|
1522
|
+
<property name="iconText">
|
|
1523
|
+
<string>Focus to Tab 0</string>
|
|
1524
|
+
</property>
|
|
1525
|
+
<property name="toolTip">
|
|
1526
|
+
<string>Focus to Tab 0</string>
|
|
1527
|
+
</property>
|
|
1528
|
+
</action>
|
|
1529
|
+
<action name="uiCommentToggleACT">
|
|
1530
|
+
<property name="text">
|
|
1531
|
+
<string>Comment Toggle</string>
|
|
1532
|
+
</property>
|
|
1533
|
+
<property name="shortcut">
|
|
1534
|
+
<string>Ctrl+/</string>
|
|
1535
|
+
</property>
|
|
1536
|
+
</action>
|
|
1537
|
+
<action name="uiSetWorkboxEditorACT">
|
|
1538
|
+
<property name="text">
|
|
1539
|
+
<string>Set Workbox Editor</string>
|
|
1540
|
+
</property>
|
|
1541
|
+
</action>
|
|
1542
|
+
<action name="uiGroup1ACT">
|
|
1543
|
+
<property name="text">
|
|
1544
|
+
<string>Focus to Group 1</string>
|
|
1545
|
+
</property>
|
|
1546
|
+
<property name="shortcut">
|
|
1547
|
+
<string>Ctrl+Alt+1</string>
|
|
1548
|
+
</property>
|
|
1549
|
+
</action>
|
|
1550
|
+
<action name="actionFocus">
|
|
1551
|
+
<property name="text">
|
|
1552
|
+
<string>Focus</string>
|
|
1553
|
+
</property>
|
|
1554
|
+
</action>
|
|
1555
|
+
<action name="uiGroup2ACT">
|
|
1556
|
+
<property name="text">
|
|
1557
|
+
<string>Focus to Group 2</string>
|
|
1558
|
+
</property>
|
|
1559
|
+
<property name="shortcut">
|
|
1560
|
+
<string>Ctrl+Alt+2</string>
|
|
1561
|
+
</property>
|
|
1562
|
+
</action>
|
|
1563
|
+
<action name="uiGroup3ACT">
|
|
1564
|
+
<property name="text">
|
|
1565
|
+
<string>Focus to Group 3</string>
|
|
1566
|
+
</property>
|
|
1567
|
+
<property name="shortcut">
|
|
1568
|
+
<string>Ctrl+Alt+3</string>
|
|
1569
|
+
</property>
|
|
1570
|
+
</action>
|
|
1571
|
+
<action name="uiGroup4ACT">
|
|
1572
|
+
<property name="text">
|
|
1573
|
+
<string>Focus to Group 4</string>
|
|
1574
|
+
</property>
|
|
1575
|
+
<property name="shortcut">
|
|
1576
|
+
<string>Ctrl+Alt+4</string>
|
|
1577
|
+
</property>
|
|
1578
|
+
</action>
|
|
1579
|
+
<action name="uiGroup5ACT">
|
|
1580
|
+
<property name="text">
|
|
1581
|
+
<string>Focus to Group 5</string>
|
|
1582
|
+
</property>
|
|
1583
|
+
<property name="shortcut">
|
|
1584
|
+
<string>Ctrl+Alt+5</string>
|
|
1585
|
+
</property>
|
|
1586
|
+
</action>
|
|
1587
|
+
<action name="uiGroup6ACT">
|
|
1588
|
+
<property name="text">
|
|
1589
|
+
<string>Focus to Group 6</string>
|
|
1590
|
+
</property>
|
|
1591
|
+
<property name="shortcut">
|
|
1592
|
+
<string>Ctrl+Alt+6</string>
|
|
1593
|
+
</property>
|
|
1594
|
+
</action>
|
|
1595
|
+
<action name="uiGroup7ACT">
|
|
1596
|
+
<property name="text">
|
|
1597
|
+
<string>Focus to Group 7</string>
|
|
1598
|
+
</property>
|
|
1599
|
+
<property name="shortcut">
|
|
1600
|
+
<string>Ctrl+Alt+7</string>
|
|
1601
|
+
</property>
|
|
1602
|
+
</action>
|
|
1603
|
+
<action name="uiGroup8ACT">
|
|
1604
|
+
<property name="text">
|
|
1605
|
+
<string>Focus to Group 8</string>
|
|
1606
|
+
</property>
|
|
1607
|
+
<property name="shortcut">
|
|
1608
|
+
<string>Ctrl+Alt+8</string>
|
|
1609
|
+
</property>
|
|
1610
|
+
</action>
|
|
1611
|
+
<action name="uiGroupLastACT">
|
|
1612
|
+
<property name="text">
|
|
1613
|
+
<string>Focus to Last Group</string>
|
|
1614
|
+
</property>
|
|
1615
|
+
<property name="shortcut">
|
|
1616
|
+
<string>Ctrl+Alt+9</string>
|
|
1617
|
+
</property>
|
|
1618
|
+
</action>
|
|
1619
|
+
<action name="uiFocusNameACT">
|
|
1620
|
+
<property name="text">
|
|
1621
|
+
<string>Focus To Name</string>
|
|
1622
|
+
</property>
|
|
1623
|
+
<property name="shortcut">
|
|
1624
|
+
<string>Ctrl+P</string>
|
|
1625
|
+
</property>
|
|
1626
|
+
</action>
|
|
1627
|
+
<action name="uiRestartACT">
|
|
1628
|
+
<property name="text">
|
|
1629
|
+
<string>Restart PrEditor</string>
|
|
1630
|
+
</property>
|
|
1631
|
+
<property name="toolTip">
|
|
1632
|
+
<string>Closes PrEditor and launches a new process with the same cli arguments.</string>
|
|
1633
|
+
</property>
|
|
1634
|
+
<property name="shortcut">
|
|
1635
|
+
<string>Ctrl+Alt+Shift+R</string>
|
|
1636
|
+
</property>
|
|
1637
|
+
</action>
|
|
1638
|
+
<action name="uiFindInWorkboxesACT">
|
|
1639
|
+
<property name="text">
|
|
1640
|
+
<string>Find in Workboxes</string>
|
|
1641
|
+
</property>
|
|
1642
|
+
<property name="shortcut">
|
|
1643
|
+
<string>Ctrl+Shift+F</string>
|
|
1644
|
+
</property>
|
|
1645
|
+
</action>
|
|
1646
|
+
<action name="uiSelectMonospaceFontACT">
|
|
1647
|
+
<property name="text">
|
|
1648
|
+
<string>Choose from monospace fonts</string>
|
|
1649
|
+
</property>
|
|
1650
|
+
<property name="toolTip">
|
|
1651
|
+
<string>Choose from monospace fonts</string>
|
|
1652
|
+
</property>
|
|
1653
|
+
</action>
|
|
1654
|
+
<action name="uiSelectProportionalFontACT">
|
|
1655
|
+
<property name="text">
|
|
1656
|
+
<string>Choose from proportional fonts</string>
|
|
1657
|
+
</property>
|
|
1658
|
+
<property name="toolTip">
|
|
1659
|
+
<string>Choose from proportional fonts</string>
|
|
1660
|
+
</property>
|
|
1661
|
+
</action>
|
|
1662
|
+
<action name="uiSelectAllFontACT">
|
|
1663
|
+
<property name="text">
|
|
1664
|
+
<string>Choose from all fonts</string>
|
|
1665
|
+
</property>
|
|
1666
|
+
<property name="toolTip">
|
|
1667
|
+
<string>Choose from all fonts</string>
|
|
1668
|
+
</property>
|
|
1669
|
+
</action>
|
|
1670
|
+
<action name="uiRunSelectedDontTruncateACT">
|
|
1671
|
+
<property name="text">
|
|
1672
|
+
<string>Run Selected - don't truncate return value</string>
|
|
1673
|
+
</property>
|
|
1674
|
+
<property name="shortcut">
|
|
1675
|
+
<string>Ctrl+Shift+Return</string>
|
|
1676
|
+
</property>
|
|
1677
|
+
</action>
|
|
1678
|
+
<action name="uiShowFirstWorkboxVersionACT">
|
|
1679
|
+
<property name="text">
|
|
1680
|
+
<string>Show First Workbox Version</string>
|
|
1681
|
+
</property>
|
|
1682
|
+
<property name="shortcut">
|
|
1683
|
+
<string>Ctrl+Alt+Shift+[</string>
|
|
1684
|
+
</property>
|
|
1685
|
+
</action>
|
|
1686
|
+
<action name="uiShowPreviousWorkboxVersionACT">
|
|
1687
|
+
<property name="text">
|
|
1688
|
+
<string>Show Previous Workbox Version</string>
|
|
1689
|
+
</property>
|
|
1690
|
+
<property name="shortcut">
|
|
1691
|
+
<string>Ctrl+Alt+[</string>
|
|
1692
|
+
</property>
|
|
1693
|
+
</action>
|
|
1694
|
+
<action name="uiShowNextWorkboxVersionACT">
|
|
1695
|
+
<property name="text">
|
|
1696
|
+
<string>Show Next Workbox Version</string>
|
|
1697
|
+
</property>
|
|
1698
|
+
<property name="shortcut">
|
|
1699
|
+
<string>Ctrl+Alt+]</string>
|
|
1700
|
+
</property>
|
|
1701
|
+
</action>
|
|
1702
|
+
<action name="uiShowLastWorkboxVersionACT">
|
|
1703
|
+
<property name="text">
|
|
1704
|
+
<string>Show Last Workbox Version</string>
|
|
1705
|
+
</property>
|
|
1706
|
+
<property name="shortcut">
|
|
1707
|
+
<string>Ctrl+Alt+Shift+]</string>
|
|
1708
|
+
</property>
|
|
1709
|
+
</action>
|
|
1710
|
+
<action name="uiSelectGuiFontsMENU">
|
|
1711
|
+
<property name="text">
|
|
1712
|
+
<string>Select Gui Font</string>
|
|
1713
|
+
</property>
|
|
1714
|
+
</action>
|
|
1715
|
+
<action name="uiIncreaseCodeFontSizeACT">
|
|
1716
|
+
<property name="text">
|
|
1717
|
+
<string>Increase Code Font Size</string>
|
|
1718
|
+
</property>
|
|
1719
|
+
<property name="toolTip">
|
|
1720
|
+
<string>..or Ctrl+Scroll Up</string>
|
|
1721
|
+
</property>
|
|
1722
|
+
<property name="shortcut">
|
|
1723
|
+
<string>Ctrl++</string>
|
|
1724
|
+
</property>
|
|
1725
|
+
</action>
|
|
1726
|
+
<action name="uiIncreaseGuiFontSizeACT">
|
|
1727
|
+
<property name="text">
|
|
1728
|
+
<string>Increase Gui Font Size</string>
|
|
1729
|
+
</property>
|
|
1730
|
+
<property name="toolTip">
|
|
1731
|
+
<string>..or Ctrl+Alt+Scroll Up</string>
|
|
1732
|
+
</property>
|
|
1733
|
+
<property name="shortcut">
|
|
1734
|
+
<string>Ctrl+Alt++</string>
|
|
1735
|
+
</property>
|
|
1736
|
+
</action>
|
|
1737
|
+
<action name="uiDecreaseCodeFontSizeACT">
|
|
1738
|
+
<property name="text">
|
|
1739
|
+
<string>Decrease Code Font Size</string>
|
|
1740
|
+
</property>
|
|
1741
|
+
<property name="toolTip">
|
|
1742
|
+
<string>..or Ctrl+Scroll Down</string>
|
|
1743
|
+
</property>
|
|
1744
|
+
<property name="shortcut">
|
|
1745
|
+
<string>Ctrl+-</string>
|
|
1746
|
+
</property>
|
|
1747
|
+
</action>
|
|
1748
|
+
<action name="uiDecreaseGuiFontSizeACT">
|
|
1749
|
+
<property name="text">
|
|
1750
|
+
<string>Decrease Gui Font Size</string>
|
|
1751
|
+
</property>
|
|
1752
|
+
<property name="toolTip">
|
|
1753
|
+
<string>..or Ctrl+Alt+Scroll Down</string>
|
|
1754
|
+
</property>
|
|
1755
|
+
<property name="shortcut">
|
|
1756
|
+
<string>Ctrl+Alt+-</string>
|
|
1757
|
+
</property>
|
|
1758
|
+
</action>
|
|
1759
|
+
<action name="uiRunFirstWorkboxACT">
|
|
1760
|
+
<property name="text">
|
|
1761
|
+
<string>Run First Workbox</string>
|
|
1762
|
+
</property>
|
|
1763
|
+
<property name="toolTip">
|
|
1764
|
+
<string>Run First Workbox (of the first group), which may have things like common imports, helper functions, etc.</string>
|
|
1765
|
+
</property>
|
|
1766
|
+
<property name="shortcut">
|
|
1767
|
+
<string>Alt+1</string>
|
|
1768
|
+
</property>
|
|
1769
|
+
</action>
|
|
1770
|
+
<action name="uiPreferencesACT">
|
|
1771
|
+
<property name="text">
|
|
1772
|
+
<string>Preferences</string>
|
|
1773
|
+
</property>
|
|
1774
|
+
</action>
|
|
1775
|
+
<action name="uiEmptyWorkboxRecycleBinACT">
|
|
1776
|
+
<property name="text">
|
|
1777
|
+
<string>Empty Workbox Recycle Bin</string>
|
|
1778
|
+
</property>
|
|
1779
|
+
<property name="toolTip">
|
|
1780
|
+
<string>Once a workbox is pruned off the Recently Closed Workboxes list
|
|
1781
|
+
(as determiend by Max Recently Closed Workboxes preference), it
|
|
1782
|
+
goes to the Workbox Recycle Bin.
|
|
1783
|
+
This button removes those (very old) workboxes.</string>
|
|
1784
|
+
</property>
|
|
1785
|
+
</action>
|
|
1786
|
+
<action name="uiOpenMostRecentWorkboxACT">
|
|
1787
|
+
<property name="text">
|
|
1788
|
+
<string>Open most recently closed Workbox</string>
|
|
1789
|
+
</property>
|
|
1790
|
+
<property name="shortcut">
|
|
1791
|
+
<string>Ctrl+Shift+T</string>
|
|
1792
|
+
</property>
|
|
1793
|
+
</action>
|
|
1794
|
+
</widget>
|
|
1795
|
+
<customwidgets>
|
|
1796
|
+
<customwidget>
|
|
1797
|
+
<class>ConsolePrEdit</class>
|
|
1798
|
+
<extends>QTextEdit</extends>
|
|
1799
|
+
<header>preditor.gui.console</header>
|
|
1800
|
+
</customwidget>
|
|
1801
|
+
<customwidget>
|
|
1802
|
+
<class>GroupTabWidget</class>
|
|
1803
|
+
<extends>QTabWidget</extends>
|
|
1804
|
+
<header>preditor.gui.group_tab_widget.group_tab_widget.h</header>
|
|
1805
|
+
<container>1</container>
|
|
1806
|
+
</customwidget>
|
|
1807
|
+
<customwidget>
|
|
1808
|
+
<class>EditorChooser</class>
|
|
1809
|
+
<extends>QWidget</extends>
|
|
1810
|
+
<header>preditor.gui.editor_chooser.h</header>
|
|
1811
|
+
</customwidget>
|
|
1812
|
+
<customwidget>
|
|
1813
|
+
<class>FindFiles</class>
|
|
1814
|
+
<extends>QWidget</extends>
|
|
1815
|
+
<header>preditor.gui.find_files.h</header>
|
|
1816
|
+
<container>1</container>
|
|
1817
|
+
</customwidget>
|
|
1818
|
+
</customwidgets>
|
|
1819
|
+
<resources/>
|
|
1820
|
+
<connections>
|
|
1821
|
+
<connection>
|
|
1822
|
+
<sender>uiApplySettingsBTNS</sender>
|
|
1823
|
+
<signal>accepted()</signal>
|
|
1824
|
+
<receiver>PrEditorWindow</receiver>
|
|
1825
|
+
<slot>apply_options()</slot>
|
|
1826
|
+
<hints>
|
|
1827
|
+
<hint type="sourcelabel">
|
|
1828
|
+
<x>165</x>
|
|
1829
|
+
<y>363</y>
|
|
1830
|
+
</hint>
|
|
1831
|
+
<hint type="destinationlabel">
|
|
1832
|
+
<x>586</x>
|
|
1833
|
+
<y>387</y>
|
|
1834
|
+
</hint>
|
|
1835
|
+
</hints>
|
|
1836
|
+
</connection>
|
|
1837
|
+
<connection>
|
|
1838
|
+
<sender>uiSetWorkboxEditorACT</sender>
|
|
1839
|
+
<signal>triggered()</signal>
|
|
1840
|
+
<receiver>PrEditorWindow</receiver>
|
|
1841
|
+
<slot>show_workbox_options()</slot>
|
|
1842
|
+
<hints>
|
|
1843
|
+
<hint type="sourcelabel">
|
|
1844
|
+
<x>-1</x>
|
|
1845
|
+
<y>-1</y>
|
|
1846
|
+
</hint>
|
|
1847
|
+
<hint type="destinationlabel">
|
|
1848
|
+
<x>397</x>
|
|
1849
|
+
<y>202</y>
|
|
1850
|
+
</hint>
|
|
1851
|
+
</hints>
|
|
1852
|
+
</connection>
|
|
1853
|
+
<connection>
|
|
1854
|
+
<sender>uiPreferencesACT</sender>
|
|
1855
|
+
<signal>triggered()</signal>
|
|
1856
|
+
<receiver>PrEditorWindow</receiver>
|
|
1857
|
+
<slot>show_preferences()</slot>
|
|
1858
|
+
<hints>
|
|
1859
|
+
<hint type="sourcelabel">
|
|
1860
|
+
<x>-1</x>
|
|
1861
|
+
<y>-1</y>
|
|
1862
|
+
</hint>
|
|
1863
|
+
<hint type="destinationlabel">
|
|
1864
|
+
<x>397</x>
|
|
1865
|
+
<y>202</y>
|
|
1866
|
+
</hint>
|
|
1867
|
+
</hints>
|
|
1868
|
+
</connection>
|
|
1869
|
+
<connection>
|
|
1870
|
+
<sender>uiApplySettingsBTNS</sender>
|
|
1871
|
+
<signal>rejected()</signal>
|
|
1872
|
+
<receiver>PrEditorWindow</receiver>
|
|
1873
|
+
<slot>update_workbox_stack()</slot>
|
|
1874
|
+
<hints>
|
|
1875
|
+
<hint type="sourcelabel">
|
|
1876
|
+
<x>165</x>
|
|
1877
|
+
<y>363</y>
|
|
1878
|
+
</hint>
|
|
1879
|
+
<hint type="destinationlabel">
|
|
1880
|
+
<x>747</x>
|
|
1881
|
+
<y>401</y>
|
|
1882
|
+
</hint>
|
|
1883
|
+
</hints>
|
|
1884
|
+
</connection>
|
|
1885
|
+
<connection>
|
|
1886
|
+
<sender>uiFindInWorkboxesACT</sender>
|
|
1887
|
+
<signal>triggered()</signal>
|
|
1888
|
+
<receiver>PrEditorWindow</receiver>
|
|
1889
|
+
<slot>show_find_in_workboxes()</slot>
|
|
1890
|
+
<hints>
|
|
1891
|
+
<hint type="sourcelabel">
|
|
1892
|
+
<x>-1</x>
|
|
1893
|
+
<y>-1</y>
|
|
1894
|
+
</hint>
|
|
1895
|
+
<hint type="destinationlabel">
|
|
1896
|
+
<x>397</x>
|
|
1897
|
+
<y>202</y>
|
|
1898
|
+
</hint>
|
|
1899
|
+
</hints>
|
|
1900
|
+
</connection>
|
|
1901
|
+
</connections>
|
|
1902
|
+
<slots>
|
|
1903
|
+
<slot>apply_options()</slot>
|
|
1904
|
+
<slot>reset_options()</slot>
|
|
1905
|
+
<slot>show_workbox_options()</slot>
|
|
1906
|
+
<slot>update_workbox_stack()</slot>
|
|
1907
|
+
<slot>show_find_in_workboxes()</slot>
|
|
1908
|
+
</slots>
|
|
1909
|
+
</ui>
|