PrEditor 1.0.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.
Potentially problematic release.
This version of PrEditor might be problematic. Click here for more details.
- preditor/__init__.py +322 -0
- preditor/__main__.py +13 -0
- preditor/about_module.py +161 -0
- preditor/cli.py +192 -0
- preditor/config.py +302 -0
- preditor/contexts.py +119 -0
- preditor/cores/__init__.py +0 -0
- preditor/cores/core.py +20 -0
- preditor/dccs/maya/PrEditor_maya.mod +2 -0
- preditor/dccs/maya/plug-ins/PrEditor_maya.py +110 -0
- preditor/debug.py +144 -0
- preditor/delayable_engine/__init__.py +302 -0
- preditor/delayable_engine/delayables.py +85 -0
- preditor/enum.py +728 -0
- preditor/excepthooks.py +131 -0
- preditor/gui/__init__.py +93 -0
- preditor/gui/app.py +160 -0
- preditor/gui/codehighlighter.py +209 -0
- preditor/gui/completer.py +226 -0
- preditor/gui/console.py +867 -0
- preditor/gui/dialog.py +178 -0
- preditor/gui/drag_tab_bar.py +190 -0
- preditor/gui/editor_chooser.py +57 -0
- preditor/gui/errordialog.py +68 -0
- preditor/gui/find_files.py +125 -0
- preditor/gui/fuzzy_search/__init__.py +0 -0
- preditor/gui/fuzzy_search/fuzzy_search.py +93 -0
- preditor/gui/group_tab_widget/__init__.py +325 -0
- preditor/gui/group_tab_widget/grouped_tab_menu.py +35 -0
- preditor/gui/group_tab_widget/grouped_tab_models.py +108 -0
- preditor/gui/group_tab_widget/grouped_tab_widget.py +78 -0
- preditor/gui/group_tab_widget/one_tab_widget.py +54 -0
- preditor/gui/level_buttons.py +343 -0
- preditor/gui/logger_window_handler.py +48 -0
- preditor/gui/logger_window_plugin.py +32 -0
- preditor/gui/loggerwindow.py +1385 -0
- preditor/gui/newtabwidget.py +69 -0
- preditor/gui/set_text_editor_path_dialog.py +59 -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 +1105 -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 +389 -0
- preditor/gui/workbox_text_edit.py +137 -0
- preditor/gui/workboxwidget.py +298 -0
- preditor/logging_config.py +52 -0
- preditor/osystem.py +401 -0
- preditor/plugins.py +118 -0
- preditor/prefs.py +74 -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/settings.ini +25 -0
- preditor/resource/stylesheet/Bright.css +65 -0
- preditor/resource/stylesheet/Dark.css +199 -0
- preditor/scintilla/__init__.py +22 -0
- preditor/scintilla/delayables/__init__.py +11 -0
- preditor/scintilla/delayables/smart_highlight.py +94 -0
- preditor/scintilla/delayables/spell_check.py +173 -0
- preditor/scintilla/documenteditor.py +2038 -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 +21 -0
- preditor/scintilla/lexers/javascriptlexer.py +25 -0
- preditor/scintilla/lexers/maxscriptlexer.py +234 -0
- preditor/scintilla/lexers/mellexer.py +368 -0
- preditor/scintilla/lexers/mulexer.py +32 -0
- preditor/scintilla/lexers/pythonlexer.py +41 -0
- preditor/scintilla/ui/finddialog.ui +160 -0
- preditor/settings.py +71 -0
- preditor/stream/__init__.py +80 -0
- preditor/stream/director.py +73 -0
- preditor/stream/manager.py +74 -0
- preditor/streamhandler_helper.py +46 -0
- preditor/utils/__init__.py +0 -0
- preditor/utils/cute.py +30 -0
- preditor/utils/stylesheets.py +54 -0
- preditor/utils/text_search.py +342 -0
- preditor/version.py +21 -0
- preditor/weakref.py +363 -0
- preditor-1.0.0.dist-info/METADATA +224 -0
- preditor-1.0.0.dist-info/RECORD +158 -0
- preditor-1.0.0.dist-info/WHEEL +5 -0
- preditor-1.0.0.dist-info/entry_points.txt +18 -0
- preditor-1.0.0.dist-info/licenses/LICENSE +165 -0
- preditor-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1105 @@
|
|
|
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>796</width>
|
|
10
|
+
<height>406</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="QVBoxLayout" name="verticalLayout">
|
|
24
|
+
<item>
|
|
25
|
+
<widget class="QSplitter" name="uiSplitterSPLIT">
|
|
26
|
+
<property name="orientation">
|
|
27
|
+
<enum>Qt::Vertical</enum>
|
|
28
|
+
</property>
|
|
29
|
+
<widget class="ConsolePrEdit" name="uiConsoleTXT">
|
|
30
|
+
<property name="minimumSize">
|
|
31
|
+
<size>
|
|
32
|
+
<width>0</width>
|
|
33
|
+
<height>100</height>
|
|
34
|
+
</size>
|
|
35
|
+
</property>
|
|
36
|
+
</widget>
|
|
37
|
+
<widget class="QStackedWidget" name="uiWorkboxSTACK">
|
|
38
|
+
<property name="currentIndex">
|
|
39
|
+
<number>0</number>
|
|
40
|
+
</property>
|
|
41
|
+
<widget class="QWidget" name="Options">
|
|
42
|
+
<layout class="QVBoxLayout" name="verticalLayout_5">
|
|
43
|
+
<item>
|
|
44
|
+
<widget class="EditorChooser" name="uiEditorChooserWGT" native="true"/>
|
|
45
|
+
</item>
|
|
46
|
+
<item>
|
|
47
|
+
<widget class="QDialogButtonBox" name="uiApplySettingsBTNS">
|
|
48
|
+
<property name="standardButtons">
|
|
49
|
+
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
|
50
|
+
</property>
|
|
51
|
+
</widget>
|
|
52
|
+
</item>
|
|
53
|
+
</layout>
|
|
54
|
+
</widget>
|
|
55
|
+
<widget class="QWidget" name="WorkboxGroups">
|
|
56
|
+
<layout class="QVBoxLayout" name="verticalLayout_4">
|
|
57
|
+
<property name="leftMargin">
|
|
58
|
+
<number>0</number>
|
|
59
|
+
</property>
|
|
60
|
+
<property name="topMargin">
|
|
61
|
+
<number>0</number>
|
|
62
|
+
</property>
|
|
63
|
+
<property name="rightMargin">
|
|
64
|
+
<number>0</number>
|
|
65
|
+
</property>
|
|
66
|
+
<property name="bottomMargin">
|
|
67
|
+
<number>0</number>
|
|
68
|
+
</property>
|
|
69
|
+
<item>
|
|
70
|
+
<widget class="GroupTabWidget" name="uiWorkboxTAB">
|
|
71
|
+
<property name="minimumSize">
|
|
72
|
+
<size>
|
|
73
|
+
<width>0</width>
|
|
74
|
+
<height>100</height>
|
|
75
|
+
</size>
|
|
76
|
+
</property>
|
|
77
|
+
</widget>
|
|
78
|
+
</item>
|
|
79
|
+
</layout>
|
|
80
|
+
</widget>
|
|
81
|
+
</widget>
|
|
82
|
+
</widget>
|
|
83
|
+
</item>
|
|
84
|
+
<item>
|
|
85
|
+
<widget class="FindFiles" name="uiFindInWorkboxesWGT" native="true"/>
|
|
86
|
+
</item>
|
|
87
|
+
</layout>
|
|
88
|
+
</widget>
|
|
89
|
+
<widget class="QMenuBar" name="uiMenuBar">
|
|
90
|
+
<property name="geometry">
|
|
91
|
+
<rect>
|
|
92
|
+
<x>0</x>
|
|
93
|
+
<y>0</y>
|
|
94
|
+
<width>796</width>
|
|
95
|
+
<height>21</height>
|
|
96
|
+
</rect>
|
|
97
|
+
</property>
|
|
98
|
+
<widget class="QMenu" name="uiDebugMENU">
|
|
99
|
+
<property name="title">
|
|
100
|
+
<string>Debug</string>
|
|
101
|
+
</property>
|
|
102
|
+
<addaction name="separator"/>
|
|
103
|
+
<addaction name="uiResetWarningFiltersACT"/>
|
|
104
|
+
<addaction name="separator"/>
|
|
105
|
+
<addaction name="uiLogToFileACT"/>
|
|
106
|
+
<addaction name="uiLogToFileClearACT"/>
|
|
107
|
+
</widget>
|
|
108
|
+
<widget class="QMenu" name="uiFileMENU">
|
|
109
|
+
<property name="title">
|
|
110
|
+
<string comment="File Menu">&File</string>
|
|
111
|
+
</property>
|
|
112
|
+
<addaction name="uiNewWorkboxACT"/>
|
|
113
|
+
<addaction name="uiCloseWorkboxACT"/>
|
|
114
|
+
<addaction name="separator"/>
|
|
115
|
+
<addaction name="uiSaveConsoleSettingsACT"/>
|
|
116
|
+
<addaction name="uiRestartACT"/>
|
|
117
|
+
<addaction name="uiCloseLoggerACT"/>
|
|
118
|
+
</widget>
|
|
119
|
+
<widget class="QMenu" name="uiHelpMENU">
|
|
120
|
+
<property name="title">
|
|
121
|
+
<string>Help</string>
|
|
122
|
+
</property>
|
|
123
|
+
<widget class="QMenu" name="uiPreferencesMENU">
|
|
124
|
+
<property name="title">
|
|
125
|
+
<string>Preferences</string>
|
|
126
|
+
</property>
|
|
127
|
+
<addaction name="uiBrowsePreferencesACT"/>
|
|
128
|
+
<addaction name="uiBackupPreferencesACT"/>
|
|
129
|
+
</widget>
|
|
130
|
+
<addaction name="uiPreferencesMENU"/>
|
|
131
|
+
<addaction name="uiEnvironmentVarsACT"/>
|
|
132
|
+
<addaction name="separator"/>
|
|
133
|
+
<addaction name="uiAboutPreditorACT"/>
|
|
134
|
+
</widget>
|
|
135
|
+
<widget class="QMenu" name="uiRunMENU">
|
|
136
|
+
<property name="title">
|
|
137
|
+
<string>Run</string>
|
|
138
|
+
</property>
|
|
139
|
+
<addaction name="uiRunSelectedACT"/>
|
|
140
|
+
<addaction name="uiRunSelectedDontTruncateACT"/>
|
|
141
|
+
<addaction name="uiRunAllACT"/>
|
|
142
|
+
<addaction name="separator"/>
|
|
143
|
+
<addaction name="uiClearBeforeRunningACT"/>
|
|
144
|
+
<addaction name="uiClearToLastPromptACT"/>
|
|
145
|
+
<addaction name="uiSelectTextACT"/>
|
|
146
|
+
</widget>
|
|
147
|
+
<widget class="QMenu" name="uiOptionsMENU">
|
|
148
|
+
<property name="title">
|
|
149
|
+
<string>&Options</string>
|
|
150
|
+
</property>
|
|
151
|
+
<widget class="QMenu" name="uiStyleMENU">
|
|
152
|
+
<property name="title">
|
|
153
|
+
<string>Style</string>
|
|
154
|
+
</property>
|
|
155
|
+
</widget>
|
|
156
|
+
<widget class="QMenu" name="uiCompleterModeMENU">
|
|
157
|
+
<property name="toolTip">
|
|
158
|
+
<string/>
|
|
159
|
+
</property>
|
|
160
|
+
<property name="title">
|
|
161
|
+
<string>Auto-Complete Mode</string>
|
|
162
|
+
</property>
|
|
163
|
+
<addaction name="separator"/>
|
|
164
|
+
</widget>
|
|
165
|
+
<widget class="QMenu" name="uiSelectFontsMENU">
|
|
166
|
+
<property name="title">
|
|
167
|
+
<string>Select Font</string>
|
|
168
|
+
</property>
|
|
169
|
+
<addaction name="uiSelectMonospaceFontACT"/>
|
|
170
|
+
<addaction name="uiSelectProportionalFontACT"/>
|
|
171
|
+
<addaction name="uiSelectAllFontACT"/>
|
|
172
|
+
</widget>
|
|
173
|
+
<addaction name="uiConsoleAutoCompleteEnabledACT"/>
|
|
174
|
+
<addaction name="uiWorkboxAutoCompleteEnabledACT"/>
|
|
175
|
+
<addaction name="uiSpellCheckEnabledACT"/>
|
|
176
|
+
<addaction name="uiAutoCompleteCaseSensitiveACT"/>
|
|
177
|
+
<addaction name="uiCompleterModeMENU"/>
|
|
178
|
+
<addaction name="uiHighlightExactCompletionACT"/>
|
|
179
|
+
<addaction name="separator"/>
|
|
180
|
+
<addaction name="uiClearLogACT"/>
|
|
181
|
+
<addaction name="separator"/>
|
|
182
|
+
<addaction name="uiSelectFontsMENU"/>
|
|
183
|
+
<addaction name="uiStyleMENU"/>
|
|
184
|
+
<addaction name="separator"/>
|
|
185
|
+
<addaction name="uiIndentationsTabsACT"/>
|
|
186
|
+
<addaction name="uiCopyTabsToSpacesACT"/>
|
|
187
|
+
<addaction name="uiWordWrapACT"/>
|
|
188
|
+
<addaction name="uiEditorVerticalACT"/>
|
|
189
|
+
<addaction name="uiAutoPromptACT"/>
|
|
190
|
+
<addaction name="uiLinesInNewWorkboxACT"/>
|
|
191
|
+
<addaction name="uiAutoSaveSettingssACT"/>
|
|
192
|
+
<addaction name="separator"/>
|
|
193
|
+
<addaction name="uiSetFlashWindowIntervalACT"/>
|
|
194
|
+
<addaction name="separator"/>
|
|
195
|
+
<addaction name="uiErrorHyperlinksACT"/>
|
|
196
|
+
<addaction name="uiSetPreferredTextEditorPathACT"/>
|
|
197
|
+
<addaction name="uiSetWorkboxEditorACT"/>
|
|
198
|
+
</widget>
|
|
199
|
+
<widget class="QMenu" name="uiEditMENU">
|
|
200
|
+
<property name="title">
|
|
201
|
+
<string>Edit</string>
|
|
202
|
+
</property>
|
|
203
|
+
<widget class="QMenu" name="uiFocus_to_GroupMENU">
|
|
204
|
+
<property name="title">
|
|
205
|
+
<string>Focus to Group</string>
|
|
206
|
+
</property>
|
|
207
|
+
<addaction name="uiGroup1ACT"/>
|
|
208
|
+
<addaction name="uiGroup2ACT"/>
|
|
209
|
+
<addaction name="uiGroup3ACT"/>
|
|
210
|
+
<addaction name="uiGroup4ACT"/>
|
|
211
|
+
<addaction name="uiGroup5ACT"/>
|
|
212
|
+
<addaction name="uiGroup6ACT"/>
|
|
213
|
+
<addaction name="uiGroup7ACT"/>
|
|
214
|
+
<addaction name="uiGroup8ACT"/>
|
|
215
|
+
<addaction name="separator"/>
|
|
216
|
+
<addaction name="uiGroupLastACT"/>
|
|
217
|
+
</widget>
|
|
218
|
+
<widget class="QMenu" name="uiFocus_to_TabMENU">
|
|
219
|
+
<property name="title">
|
|
220
|
+
<string>Focus to Tab</string>
|
|
221
|
+
</property>
|
|
222
|
+
<action name="uiTab1ACT">
|
|
223
|
+
<property name="text">
|
|
224
|
+
<string>Focus to Tab 1</string>
|
|
225
|
+
</property>
|
|
226
|
+
<property name="shortcut">
|
|
227
|
+
<string>Ctrl+1</string>
|
|
228
|
+
</property>
|
|
229
|
+
</action>
|
|
230
|
+
<action name="uiTab2ACT">
|
|
231
|
+
<property name="text">
|
|
232
|
+
<string>Focus to Tab 2</string>
|
|
233
|
+
</property>
|
|
234
|
+
<property name="shortcut">
|
|
235
|
+
<string>Ctrl+2</string>
|
|
236
|
+
</property>
|
|
237
|
+
</action>
|
|
238
|
+
<action name="uiTab3ACT">
|
|
239
|
+
<property name="text">
|
|
240
|
+
<string>Focus to Tab 3</string>
|
|
241
|
+
</property>
|
|
242
|
+
<property name="shortcut">
|
|
243
|
+
<string>Ctrl+3</string>
|
|
244
|
+
</property>
|
|
245
|
+
</action>
|
|
246
|
+
<action name="uiTab4ACT">
|
|
247
|
+
<property name="text">
|
|
248
|
+
<string>Focus to Tab 4</string>
|
|
249
|
+
</property>
|
|
250
|
+
<property name="shortcut">
|
|
251
|
+
<string>Ctrl+4</string>
|
|
252
|
+
</property>
|
|
253
|
+
</action>
|
|
254
|
+
<action name="uiTab5ACT">
|
|
255
|
+
<property name="text">
|
|
256
|
+
<string>Focus to Tab 5</string>
|
|
257
|
+
</property>
|
|
258
|
+
<property name="shortcut">
|
|
259
|
+
<string>Ctrl+5</string>
|
|
260
|
+
</property>
|
|
261
|
+
</action>
|
|
262
|
+
<action name="uiTab6ACT">
|
|
263
|
+
<property name="text">
|
|
264
|
+
<string>Focus to Tab 6</string>
|
|
265
|
+
</property>
|
|
266
|
+
<property name="shortcut">
|
|
267
|
+
<string>Ctrl+6</string>
|
|
268
|
+
</property>
|
|
269
|
+
</action>
|
|
270
|
+
<action name="uiTab7ACT">
|
|
271
|
+
<property name="text">
|
|
272
|
+
<string>Focus to Tab 7</string>
|
|
273
|
+
</property>
|
|
274
|
+
<property name="shortcut">
|
|
275
|
+
<string>Ctrl+7</string>
|
|
276
|
+
</property>
|
|
277
|
+
</action>
|
|
278
|
+
<action name="uiTab8ACT">
|
|
279
|
+
<property name="text">
|
|
280
|
+
<string>Focus to Tab 8</string>
|
|
281
|
+
</property>
|
|
282
|
+
<property name="shortcut">
|
|
283
|
+
<string>Ctrl+8</string>
|
|
284
|
+
</property>
|
|
285
|
+
</action>
|
|
286
|
+
<action name="uiTabLastACT">
|
|
287
|
+
<property name="text">
|
|
288
|
+
<string>Focus to Last Tab</string>
|
|
289
|
+
</property>
|
|
290
|
+
<property name="shortcut">
|
|
291
|
+
<string>Ctrl+9</string>
|
|
292
|
+
</property>
|
|
293
|
+
</action>
|
|
294
|
+
<addaction name="uiTab1ACT"/>
|
|
295
|
+
<addaction name="uiTab2ACT"/>
|
|
296
|
+
<addaction name="uiTab3ACT"/>
|
|
297
|
+
<addaction name="uiTab4ACT"/>
|
|
298
|
+
<addaction name="uiTab5ACT"/>
|
|
299
|
+
<addaction name="uiTab6ACT"/>
|
|
300
|
+
<addaction name="uiTab7ACT"/>
|
|
301
|
+
<addaction name="uiTab8ACT"/>
|
|
302
|
+
<addaction name="separator"/>
|
|
303
|
+
<addaction name="uiTabLastACT"/>
|
|
304
|
+
</widget>
|
|
305
|
+
<addaction name="uiCommentToggleACT"/>
|
|
306
|
+
<addaction name="separator"/>
|
|
307
|
+
<addaction name="uiGetPrevCmdACT"/>
|
|
308
|
+
<addaction name="uiGetNextCmdACT"/>
|
|
309
|
+
<addaction name="separator"/>
|
|
310
|
+
<addaction name="uiFocusToConsoleACT"/>
|
|
311
|
+
<addaction name="uiCopyToConsoleACT"/>
|
|
312
|
+
<addaction name="uiFocusToWorkboxACT"/>
|
|
313
|
+
<addaction name="uiCopyToWorkboxACT"/>
|
|
314
|
+
<addaction name="separator"/>
|
|
315
|
+
<addaction name="uiNextTabACT"/>
|
|
316
|
+
<addaction name="uiPrevTabACT"/>
|
|
317
|
+
<addaction name="separator"/>
|
|
318
|
+
<addaction name="uiFocus_to_GroupMENU"/>
|
|
319
|
+
<addaction name="uiFocus_to_TabMENU"/>
|
|
320
|
+
<addaction name="separator"/>
|
|
321
|
+
<addaction name="uiFindInWorkboxesACT"/>
|
|
322
|
+
<addaction name="uiFocusNameACT"/>
|
|
323
|
+
</widget>
|
|
324
|
+
<addaction name="uiFileMENU"/>
|
|
325
|
+
<addaction name="uiEditMENU"/>
|
|
326
|
+
<addaction name="uiDebugMENU"/>
|
|
327
|
+
<addaction name="uiRunMENU"/>
|
|
328
|
+
<addaction name="uiOptionsMENU"/>
|
|
329
|
+
<addaction name="uiHelpMENU"/>
|
|
330
|
+
</widget>
|
|
331
|
+
<widget class="QToolBar" name="uiConsoleTOOLBAR">
|
|
332
|
+
<property name="windowTitle">
|
|
333
|
+
<string>Console Toolbar</string>
|
|
334
|
+
</property>
|
|
335
|
+
<attribute name="toolBarArea">
|
|
336
|
+
<enum>TopToolBarArea</enum>
|
|
337
|
+
</attribute>
|
|
338
|
+
<attribute name="toolBarBreak">
|
|
339
|
+
<bool>false</bool>
|
|
340
|
+
</attribute>
|
|
341
|
+
<addaction name="uiRunSelectedACT"/>
|
|
342
|
+
<addaction name="uiRunAllACT"/>
|
|
343
|
+
<addaction name="separator"/>
|
|
344
|
+
<addaction name="uiClearLogACT"/>
|
|
345
|
+
</widget>
|
|
346
|
+
<action name="uiSaveLogACT">
|
|
347
|
+
<property name="text">
|
|
348
|
+
<string>&Save Log...</string>
|
|
349
|
+
</property>
|
|
350
|
+
</action>
|
|
351
|
+
<action name="uiNoDebugACT">
|
|
352
|
+
<property name="checkable">
|
|
353
|
+
<bool>true</bool>
|
|
354
|
+
</property>
|
|
355
|
+
<property name="text">
|
|
356
|
+
<string>&Disabled</string>
|
|
357
|
+
</property>
|
|
358
|
+
</action>
|
|
359
|
+
<action name="uiDebugLowACT">
|
|
360
|
+
<property name="checkable">
|
|
361
|
+
<bool>true</bool>
|
|
362
|
+
</property>
|
|
363
|
+
<property name="text">
|
|
364
|
+
<string>&Low Level</string>
|
|
365
|
+
</property>
|
|
366
|
+
</action>
|
|
367
|
+
<action name="uiDebugMidACT">
|
|
368
|
+
<property name="checkable">
|
|
369
|
+
<bool>true</bool>
|
|
370
|
+
</property>
|
|
371
|
+
<property name="text">
|
|
372
|
+
<string>&Mid Level</string>
|
|
373
|
+
</property>
|
|
374
|
+
</action>
|
|
375
|
+
<action name="uiDebugHighACT">
|
|
376
|
+
<property name="checkable">
|
|
377
|
+
<bool>true</bool>
|
|
378
|
+
</property>
|
|
379
|
+
<property name="text">
|
|
380
|
+
<string>&High Level</string>
|
|
381
|
+
</property>
|
|
382
|
+
</action>
|
|
383
|
+
<action name="uiClearLogACT">
|
|
384
|
+
<property name="text">
|
|
385
|
+
<string>&Clear Python Console</string>
|
|
386
|
+
</property>
|
|
387
|
+
<property name="toolTip">
|
|
388
|
+
<string>Clears the top section of PrEditor. This does not clear the workbox.</string>
|
|
389
|
+
</property>
|
|
390
|
+
<property name="shortcut">
|
|
391
|
+
<string>Ctrl+Alt+Shift+D</string>
|
|
392
|
+
</property>
|
|
393
|
+
</action>
|
|
394
|
+
<action name="uiConsoleAutoCompleteEnabledACT">
|
|
395
|
+
<property name="checkable">
|
|
396
|
+
<bool>true</bool>
|
|
397
|
+
</property>
|
|
398
|
+
<property name="checked">
|
|
399
|
+
<bool>false</bool>
|
|
400
|
+
</property>
|
|
401
|
+
<property name="text">
|
|
402
|
+
<string>Use Auto-Complete in console</string>
|
|
403
|
+
</property>
|
|
404
|
+
<property name="iconText">
|
|
405
|
+
<string>Use Auto-Complete in console</string>
|
|
406
|
+
</property>
|
|
407
|
+
<property name="toolTip">
|
|
408
|
+
<string>Use Auto-Complete in console</string>
|
|
409
|
+
</property>
|
|
410
|
+
</action>
|
|
411
|
+
<action name="uiRunLineACT">
|
|
412
|
+
<property name="text">
|
|
413
|
+
<string>Run Line...</string>
|
|
414
|
+
</property>
|
|
415
|
+
<property name="shortcut">
|
|
416
|
+
<string>Enter</string>
|
|
417
|
+
</property>
|
|
418
|
+
</action>
|
|
419
|
+
<action name="uiRunAllACT">
|
|
420
|
+
<property name="text">
|
|
421
|
+
<string>Run All</string>
|
|
422
|
+
</property>
|
|
423
|
+
<property name="toolTip">
|
|
424
|
+
<string>Run all code from the current workbox</string>
|
|
425
|
+
</property>
|
|
426
|
+
<property name="shortcut">
|
|
427
|
+
<string>Ctrl+Return</string>
|
|
428
|
+
</property>
|
|
429
|
+
</action>
|
|
430
|
+
<action name="uiClearWorkspaceACT">
|
|
431
|
+
<property name="text">
|
|
432
|
+
<string>Clear Workspace...</string>
|
|
433
|
+
</property>
|
|
434
|
+
</action>
|
|
435
|
+
<action name="uiRunSelectedACT">
|
|
436
|
+
<property name="text">
|
|
437
|
+
<string>Run Selected - truncate return value</string>
|
|
438
|
+
</property>
|
|
439
|
+
<property name="toolTip">
|
|
440
|
+
<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>
|
|
441
|
+
</property>
|
|
442
|
+
<property name="shortcut">
|
|
443
|
+
<string>Shift+Return</string>
|
|
444
|
+
</property>
|
|
445
|
+
</action>
|
|
446
|
+
<action name="uiIndentationsTabsACT">
|
|
447
|
+
<property name="checkable">
|
|
448
|
+
<bool>true</bool>
|
|
449
|
+
</property>
|
|
450
|
+
<property name="text">
|
|
451
|
+
<string>Indentations use tabs</string>
|
|
452
|
+
</property>
|
|
453
|
+
</action>
|
|
454
|
+
<action name="uiWordWrapACT">
|
|
455
|
+
<property name="checkable">
|
|
456
|
+
<bool>true</bool>
|
|
457
|
+
</property>
|
|
458
|
+
<property name="text">
|
|
459
|
+
<string>Enable Console Word Wrap</string>
|
|
460
|
+
</property>
|
|
461
|
+
<property name="toolTip">
|
|
462
|
+
<string>Enable word wrap in the python output console</string>
|
|
463
|
+
</property>
|
|
464
|
+
</action>
|
|
465
|
+
<action name="uiSaveConsoleSettingsACT">
|
|
466
|
+
<property name="text">
|
|
467
|
+
<string>Save Console Settings</string>
|
|
468
|
+
</property>
|
|
469
|
+
<property name="toolTip">
|
|
470
|
+
<string>Save Console Settings and all Workbox code</string>
|
|
471
|
+
</property>
|
|
472
|
+
<property name="shortcut">
|
|
473
|
+
<string>Ctrl+S</string>
|
|
474
|
+
</property>
|
|
475
|
+
</action>
|
|
476
|
+
<action name="uiClearBeforeRunningACT">
|
|
477
|
+
<property name="checkable">
|
|
478
|
+
<bool>true</bool>
|
|
479
|
+
</property>
|
|
480
|
+
<property name="text">
|
|
481
|
+
<string>Clear before running workbox code</string>
|
|
482
|
+
</property>
|
|
483
|
+
<property name="toolTip">
|
|
484
|
+
<string>Clear console log before running workbox code.</string>
|
|
485
|
+
</property>
|
|
486
|
+
</action>
|
|
487
|
+
<action name="uiCloseLoggerACT">
|
|
488
|
+
<property name="text">
|
|
489
|
+
<string>Close</string>
|
|
490
|
+
</property>
|
|
491
|
+
<property name="toolTip">
|
|
492
|
+
<string>Close</string>
|
|
493
|
+
</property>
|
|
494
|
+
<property name="shortcut">
|
|
495
|
+
<string>Ctrl+Q</string>
|
|
496
|
+
</property>
|
|
497
|
+
</action>
|
|
498
|
+
<action name="uiEditorVerticalACT">
|
|
499
|
+
<property name="checkable">
|
|
500
|
+
<bool>true</bool>
|
|
501
|
+
</property>
|
|
502
|
+
<property name="text">
|
|
503
|
+
<string>Editor Vertical</string>
|
|
504
|
+
</property>
|
|
505
|
+
<property name="toolTip">
|
|
506
|
+
<string>Editor Vertical</string>
|
|
507
|
+
</property>
|
|
508
|
+
</action>
|
|
509
|
+
<action name="uiClearToLastPromptACT">
|
|
510
|
+
<property name="text">
|
|
511
|
+
<string>Clear to Last Prompt</string>
|
|
512
|
+
</property>
|
|
513
|
+
<property name="toolTip">
|
|
514
|
+
<string>Clear console to the last prompt</string>
|
|
515
|
+
</property>
|
|
516
|
+
<property name="shortcut">
|
|
517
|
+
<string>Ctrl+Shift+Backspace</string>
|
|
518
|
+
</property>
|
|
519
|
+
</action>
|
|
520
|
+
<action name="uiCopyTabsToSpacesACT">
|
|
521
|
+
<property name="checkable">
|
|
522
|
+
<bool>true</bool>
|
|
523
|
+
</property>
|
|
524
|
+
<property name="text">
|
|
525
|
+
<string>Convert Tabs to Spaces on Copy</string>
|
|
526
|
+
</property>
|
|
527
|
+
</action>
|
|
528
|
+
<action name="uiResetWarningFiltersACT">
|
|
529
|
+
<property name="text">
|
|
530
|
+
<string>Reset Warning Filters</string>
|
|
531
|
+
</property>
|
|
532
|
+
<property name="toolTip">
|
|
533
|
+
<string>Clears all warning filters so you see all warnings.</string>
|
|
534
|
+
</property>
|
|
535
|
+
</action>
|
|
536
|
+
<action name="uiAboutPreditorACT">
|
|
537
|
+
<property name="text">
|
|
538
|
+
<string>About PrEditor</string>
|
|
539
|
+
</property>
|
|
540
|
+
</action>
|
|
541
|
+
<action name="uiEnvironmentVarsACT">
|
|
542
|
+
<property name="text">
|
|
543
|
+
<string>Environment Variables...</string>
|
|
544
|
+
</property>
|
|
545
|
+
</action>
|
|
546
|
+
<action name="uiSetFlashWindowIntervalACT">
|
|
547
|
+
<property name="text">
|
|
548
|
+
<string>Set flash window interval...</string>
|
|
549
|
+
</property>
|
|
550
|
+
<property name="toolTip">
|
|
551
|
+
<string>If executing code takes longer than this many seconds, flash the main window of the application.</string>
|
|
552
|
+
</property>
|
|
553
|
+
</action>
|
|
554
|
+
<action name="uiSpellCheckEnabledACT">
|
|
555
|
+
<property name="checkable">
|
|
556
|
+
<bool>true</bool>
|
|
557
|
+
</property>
|
|
558
|
+
<property name="text">
|
|
559
|
+
<string>Use Spell-Check</string>
|
|
560
|
+
</property>
|
|
561
|
+
</action>
|
|
562
|
+
<action name="uiLogToFileACT">
|
|
563
|
+
<property name="text">
|
|
564
|
+
<string>Log Output to File</string>
|
|
565
|
+
</property>
|
|
566
|
+
<property name="toolTip">
|
|
567
|
+
<string>Log Output to a log File</string>
|
|
568
|
+
</property>
|
|
569
|
+
</action>
|
|
570
|
+
<action name="actionSone">
|
|
571
|
+
<property name="text">
|
|
572
|
+
<string>None</string>
|
|
573
|
+
</property>
|
|
574
|
+
</action>
|
|
575
|
+
<action name="uiTreegruntShortcutACT">
|
|
576
|
+
<property name="text">
|
|
577
|
+
<string>Treegrunt</string>
|
|
578
|
+
</property>
|
|
579
|
+
</action>
|
|
580
|
+
<action name="uiPythonLoggerShortcutACT">
|
|
581
|
+
<property name="text">
|
|
582
|
+
<string>PrEditor</string>
|
|
583
|
+
</property>
|
|
584
|
+
</action>
|
|
585
|
+
<action name="uiBlurIdeShortcutACT">
|
|
586
|
+
<property name="text">
|
|
587
|
+
<string>Blur IDE</string>
|
|
588
|
+
</property>
|
|
589
|
+
</action>
|
|
590
|
+
<action name="uiLogToFileClearACT">
|
|
591
|
+
<property name="text">
|
|
592
|
+
<string>Clear Output File</string>
|
|
593
|
+
</property>
|
|
594
|
+
</action>
|
|
595
|
+
<action name="uiBrowsePreferencesACT">
|
|
596
|
+
<property name="text">
|
|
597
|
+
<string>Browse...</string>
|
|
598
|
+
</property>
|
|
599
|
+
<property name="toolTip">
|
|
600
|
+
<string>Browse Preferences</string>
|
|
601
|
+
</property>
|
|
602
|
+
</action>
|
|
603
|
+
<action name="uiAutoCompleteCaseSensitiveACT">
|
|
604
|
+
<property name="checkable">
|
|
605
|
+
<bool>true</bool>
|
|
606
|
+
</property>
|
|
607
|
+
<property name="text">
|
|
608
|
+
<string>Auto-Complete - Case Sensitive</string>
|
|
609
|
+
</property>
|
|
610
|
+
<property name="toolTip">
|
|
611
|
+
<string>Choose auto-completion case-sensitivity</string>
|
|
612
|
+
</property>
|
|
613
|
+
<property name="shortcut">
|
|
614
|
+
<string>Ctrl+I</string>
|
|
615
|
+
</property>
|
|
616
|
+
</action>
|
|
617
|
+
<action name="uiStartsWithModeACT">
|
|
618
|
+
<property name="checkable">
|
|
619
|
+
<bool>true</bool>
|
|
620
|
+
</property>
|
|
621
|
+
<property name="text">
|
|
622
|
+
<string>StartsWith</string>
|
|
623
|
+
</property>
|
|
624
|
+
</action>
|
|
625
|
+
<action name="uiOuterFuzzyModeACT">
|
|
626
|
+
<property name="checkable">
|
|
627
|
+
<bool>true</bool>
|
|
628
|
+
</property>
|
|
629
|
+
<property name="text">
|
|
630
|
+
<string>OuterFuzzy</string>
|
|
631
|
+
</property>
|
|
632
|
+
</action>
|
|
633
|
+
<action name="uiFullFuzzyModeACT">
|
|
634
|
+
<property name="checkable">
|
|
635
|
+
<bool>true</bool>
|
|
636
|
+
</property>
|
|
637
|
+
<property name="text">
|
|
638
|
+
<string>FullFuzzy</string>
|
|
639
|
+
</property>
|
|
640
|
+
</action>
|
|
641
|
+
<action name="uiCycleCompleterModeACT">
|
|
642
|
+
<property name="text">
|
|
643
|
+
<string>Cycle Completer Modes</string>
|
|
644
|
+
</property>
|
|
645
|
+
<property name="shortcut">
|
|
646
|
+
<string>Ctrl+M</string>
|
|
647
|
+
</property>
|
|
648
|
+
</action>
|
|
649
|
+
<action name="uiAutoSaveSettingssACT">
|
|
650
|
+
<property name="checkable">
|
|
651
|
+
<bool>true</bool>
|
|
652
|
+
</property>
|
|
653
|
+
<property name="checked">
|
|
654
|
+
<bool>true</bool>
|
|
655
|
+
</property>
|
|
656
|
+
<property name="text">
|
|
657
|
+
<string>Auto-Save Console Settings</string>
|
|
658
|
+
</property>
|
|
659
|
+
<property name="toolTip">
|
|
660
|
+
<string>Auto-Save Console Settings and Workbox code.
|
|
661
|
+
Useful if often using multiple DCC instances simultaneously.
|
|
662
|
+
Must manually save instead.</string>
|
|
663
|
+
</property>
|
|
664
|
+
</action>
|
|
665
|
+
<action name="uiNewWorkboxACT">
|
|
666
|
+
<property name="text">
|
|
667
|
+
<string>New Workbox</string>
|
|
668
|
+
</property>
|
|
669
|
+
<property name="toolTip">
|
|
670
|
+
<string>Create a new workbox</string>
|
|
671
|
+
</property>
|
|
672
|
+
<property name="shortcut">
|
|
673
|
+
<string>Ctrl+N</string>
|
|
674
|
+
</property>
|
|
675
|
+
</action>
|
|
676
|
+
<action name="uiCloseWorkboxACT">
|
|
677
|
+
<property name="text">
|
|
678
|
+
<string>Close Workbox</string>
|
|
679
|
+
</property>
|
|
680
|
+
<property name="toolTip">
|
|
681
|
+
<string>Close the current workbox</string>
|
|
682
|
+
</property>
|
|
683
|
+
<property name="shortcut">
|
|
684
|
+
<string>Ctrl+W</string>
|
|
685
|
+
</property>
|
|
686
|
+
</action>
|
|
687
|
+
<action name="uiGetPrevCmdACT">
|
|
688
|
+
<property name="text">
|
|
689
|
+
<string>Get Previous Command</string>
|
|
690
|
+
</property>
|
|
691
|
+
<property name="toolTip">
|
|
692
|
+
<string>Get Previous Command (like in a command prompt)</string>
|
|
693
|
+
</property>
|
|
694
|
+
<property name="shortcut">
|
|
695
|
+
<string>Ctrl+Up</string>
|
|
696
|
+
</property>
|
|
697
|
+
</action>
|
|
698
|
+
<action name="uiGetNextCmdACT">
|
|
699
|
+
<property name="text">
|
|
700
|
+
<string>Get Next Command</string>
|
|
701
|
+
</property>
|
|
702
|
+
<property name="toolTip">
|
|
703
|
+
<string>Get Next Command (like in a command prompt)</string>
|
|
704
|
+
</property>
|
|
705
|
+
<property name="shortcut">
|
|
706
|
+
<string>Ctrl+Down</string>
|
|
707
|
+
</property>
|
|
708
|
+
</action>
|
|
709
|
+
<action name="uiFocusToConsoleACT">
|
|
710
|
+
<property name="text">
|
|
711
|
+
<string>Focus to Console</string>
|
|
712
|
+
</property>
|
|
713
|
+
<property name="toolTip">
|
|
714
|
+
<string>Set focus to the console</string>
|
|
715
|
+
</property>
|
|
716
|
+
<property name="shortcut">
|
|
717
|
+
<string>Ctrl+Shift+PgUp</string>
|
|
718
|
+
</property>
|
|
719
|
+
</action>
|
|
720
|
+
<action name="uiCopyToConsoleACT">
|
|
721
|
+
<property name="text">
|
|
722
|
+
<string>Focus and Copy to Console</string>
|
|
723
|
+
</property>
|
|
724
|
+
<property name="toolTip">
|
|
725
|
+
<string>Set focus to the console and copy/paste selection or line</string>
|
|
726
|
+
</property>
|
|
727
|
+
<property name="shortcut">
|
|
728
|
+
<string>Ctrl+Alt+Shift+PgUp</string>
|
|
729
|
+
</property>
|
|
730
|
+
</action>
|
|
731
|
+
<action name="uiFocusToWorkboxACT">
|
|
732
|
+
<property name="text">
|
|
733
|
+
<string>Focus to Workbox</string>
|
|
734
|
+
</property>
|
|
735
|
+
<property name="toolTip">
|
|
736
|
+
<string>Set focus to the current workbox</string>
|
|
737
|
+
</property>
|
|
738
|
+
<property name="shortcut">
|
|
739
|
+
<string>Ctrl+Shift+PgDown</string>
|
|
740
|
+
</property>
|
|
741
|
+
</action>
|
|
742
|
+
<action name="uiCopyToWorkboxACT">
|
|
743
|
+
<property name="text">
|
|
744
|
+
<string>Focus and Copy to Workbox</string>
|
|
745
|
+
</property>
|
|
746
|
+
<property name="toolTip">
|
|
747
|
+
<string>Set focus to the current workbox and copy/paste selection or line</string>
|
|
748
|
+
</property>
|
|
749
|
+
<property name="shortcut">
|
|
750
|
+
<string>Ctrl+Alt+Shift+PgDown</string>
|
|
751
|
+
</property>
|
|
752
|
+
</action>
|
|
753
|
+
<action name="uiNextTabACT">
|
|
754
|
+
<property name="text">
|
|
755
|
+
<string>Focus to Next Tab</string>
|
|
756
|
+
</property>
|
|
757
|
+
<property name="toolTip">
|
|
758
|
+
<string>Set focus to the next workbox tab</string>
|
|
759
|
+
</property>
|
|
760
|
+
<property name="shortcut">
|
|
761
|
+
<string>Ctrl+Tab</string>
|
|
762
|
+
</property>
|
|
763
|
+
</action>
|
|
764
|
+
<action name="uiPrevTabACT">
|
|
765
|
+
<property name="text">
|
|
766
|
+
<string>Focus to Previous Tab</string>
|
|
767
|
+
</property>
|
|
768
|
+
<property name="toolTip">
|
|
769
|
+
<string>Set focus to the previous workbox tab</string>
|
|
770
|
+
</property>
|
|
771
|
+
<property name="shortcut">
|
|
772
|
+
<string>Ctrl+Shift+Tab</string>
|
|
773
|
+
</property>
|
|
774
|
+
</action>
|
|
775
|
+
<action name="uiAutoPromptACT">
|
|
776
|
+
<property name="checkable">
|
|
777
|
+
<bool>true</bool>
|
|
778
|
+
</property>
|
|
779
|
+
<property name="text">
|
|
780
|
+
<string>Auto-prompt</string>
|
|
781
|
+
</property>
|
|
782
|
+
</action>
|
|
783
|
+
<action name="uiLinesInNewWorkboxACT">
|
|
784
|
+
<property name="checkable">
|
|
785
|
+
<bool>true</bool>
|
|
786
|
+
</property>
|
|
787
|
+
<property name="text">
|
|
788
|
+
<string>Add lines to new workbox</string>
|
|
789
|
+
</property>
|
|
790
|
+
</action>
|
|
791
|
+
<action name="uiSetPreferredTextEditorPathACT">
|
|
792
|
+
<property name="text">
|
|
793
|
+
<string>Set Preferred Text Editor Path</string>
|
|
794
|
+
</property>
|
|
795
|
+
</action>
|
|
796
|
+
<action name="uiErrorHyperlinksACT">
|
|
797
|
+
<property name="checkable">
|
|
798
|
+
<bool>true</bool>
|
|
799
|
+
</property>
|
|
800
|
+
<property name="text">
|
|
801
|
+
<string>Error Hyperlinks</string>
|
|
802
|
+
</property>
|
|
803
|
+
<property name="toolTip">
|
|
804
|
+
<string>Show Error Hyperlinks, which can be clicked to open the indicated module
|
|
805
|
+
at the indicated line in the specified text editor.
|
|
806
|
+
</string>
|
|
807
|
+
</property>
|
|
808
|
+
</action>
|
|
809
|
+
<action name="uiSelectCurrentLineACT">
|
|
810
|
+
<property name="text">
|
|
811
|
+
<string>Select Current Line</string>
|
|
812
|
+
</property>
|
|
813
|
+
</action>
|
|
814
|
+
<action name="uiTab0ACT">
|
|
815
|
+
<property name="text">
|
|
816
|
+
<string>Focus to Tab 0</string>
|
|
817
|
+
</property>
|
|
818
|
+
<property name="iconText">
|
|
819
|
+
<string>Focus to Tab 0</string>
|
|
820
|
+
</property>
|
|
821
|
+
<property name="toolTip">
|
|
822
|
+
<string>Focus to Tab 0</string>
|
|
823
|
+
</property>
|
|
824
|
+
</action>
|
|
825
|
+
<action name="uiCommentToggleACT">
|
|
826
|
+
<property name="text">
|
|
827
|
+
<string>Comment Toggle</string>
|
|
828
|
+
</property>
|
|
829
|
+
<property name="shortcut">
|
|
830
|
+
<string>Ctrl+/</string>
|
|
831
|
+
</property>
|
|
832
|
+
</action>
|
|
833
|
+
<action name="uiSetWorkboxEditorACT">
|
|
834
|
+
<property name="text">
|
|
835
|
+
<string>Set Workbox Editor</string>
|
|
836
|
+
</property>
|
|
837
|
+
</action>
|
|
838
|
+
<action name="uiGroup1ACT">
|
|
839
|
+
<property name="text">
|
|
840
|
+
<string>Focus to Group 1</string>
|
|
841
|
+
</property>
|
|
842
|
+
<property name="shortcut">
|
|
843
|
+
<string>Ctrl+Alt+1</string>
|
|
844
|
+
</property>
|
|
845
|
+
</action>
|
|
846
|
+
<action name="actionFocus">
|
|
847
|
+
<property name="text">
|
|
848
|
+
<string>Focus</string>
|
|
849
|
+
</property>
|
|
850
|
+
</action>
|
|
851
|
+
<action name="uiGroup2ACT">
|
|
852
|
+
<property name="text">
|
|
853
|
+
<string>Focus to Group 2</string>
|
|
854
|
+
</property>
|
|
855
|
+
<property name="shortcut">
|
|
856
|
+
<string>Ctrl+Alt+2</string>
|
|
857
|
+
</property>
|
|
858
|
+
</action>
|
|
859
|
+
<action name="uiGroup3ACT">
|
|
860
|
+
<property name="text">
|
|
861
|
+
<string>Focus to Group 3</string>
|
|
862
|
+
</property>
|
|
863
|
+
<property name="shortcut">
|
|
864
|
+
<string>Ctrl+Alt+3</string>
|
|
865
|
+
</property>
|
|
866
|
+
</action>
|
|
867
|
+
<action name="uiGroup4ACT">
|
|
868
|
+
<property name="text">
|
|
869
|
+
<string>Focus to Group 4</string>
|
|
870
|
+
</property>
|
|
871
|
+
<property name="shortcut">
|
|
872
|
+
<string>Ctrl+Alt+4</string>
|
|
873
|
+
</property>
|
|
874
|
+
</action>
|
|
875
|
+
<action name="uiGroup5ACT">
|
|
876
|
+
<property name="text">
|
|
877
|
+
<string>Focus to Group 5</string>
|
|
878
|
+
</property>
|
|
879
|
+
<property name="shortcut">
|
|
880
|
+
<string>Ctrl+Alt+5</string>
|
|
881
|
+
</property>
|
|
882
|
+
</action>
|
|
883
|
+
<action name="uiGroup6ACT">
|
|
884
|
+
<property name="text">
|
|
885
|
+
<string>Focus to Group 6</string>
|
|
886
|
+
</property>
|
|
887
|
+
<property name="shortcut">
|
|
888
|
+
<string>Ctrl+Alt+6</string>
|
|
889
|
+
</property>
|
|
890
|
+
</action>
|
|
891
|
+
<action name="uiGroup7ACT">
|
|
892
|
+
<property name="text">
|
|
893
|
+
<string>Focus to Group 7</string>
|
|
894
|
+
</property>
|
|
895
|
+
<property name="shortcut">
|
|
896
|
+
<string>Ctrl+Alt+7</string>
|
|
897
|
+
</property>
|
|
898
|
+
</action>
|
|
899
|
+
<action name="uiGroup8ACT">
|
|
900
|
+
<property name="text">
|
|
901
|
+
<string>Focus to Group 8</string>
|
|
902
|
+
</property>
|
|
903
|
+
<property name="shortcut">
|
|
904
|
+
<string>Ctrl+Alt+8</string>
|
|
905
|
+
</property>
|
|
906
|
+
</action>
|
|
907
|
+
<action name="uiGroupLastACT">
|
|
908
|
+
<property name="text">
|
|
909
|
+
<string>Focus to Last Group</string>
|
|
910
|
+
</property>
|
|
911
|
+
<property name="shortcut">
|
|
912
|
+
<string>Ctrl+Alt+9</string>
|
|
913
|
+
</property>
|
|
914
|
+
</action>
|
|
915
|
+
<action name="uiBackupPreferencesACT">
|
|
916
|
+
<property name="text">
|
|
917
|
+
<string>Backup</string>
|
|
918
|
+
</property>
|
|
919
|
+
</action>
|
|
920
|
+
<action name="uiFocusNameACT">
|
|
921
|
+
<property name="text">
|
|
922
|
+
<string>Focus To Name</string>
|
|
923
|
+
</property>
|
|
924
|
+
<property name="shortcut">
|
|
925
|
+
<string>Ctrl+P</string>
|
|
926
|
+
</property>
|
|
927
|
+
</action>
|
|
928
|
+
<action name="uiRestartACT">
|
|
929
|
+
<property name="text">
|
|
930
|
+
<string>Restart PrEditor</string>
|
|
931
|
+
</property>
|
|
932
|
+
<property name="toolTip">
|
|
933
|
+
<string>Closes PrEditor and launches a new process with the same cli arguments.</string>
|
|
934
|
+
</property>
|
|
935
|
+
<property name="shortcut">
|
|
936
|
+
<string>Ctrl+Alt+Shift+R</string>
|
|
937
|
+
</property>
|
|
938
|
+
</action>
|
|
939
|
+
<action name="uiFindInWorkboxesACT">
|
|
940
|
+
<property name="text">
|
|
941
|
+
<string>Find in Workboxes</string>
|
|
942
|
+
</property>
|
|
943
|
+
<property name="shortcut">
|
|
944
|
+
<string>Ctrl+Shift+F</string>
|
|
945
|
+
</property>
|
|
946
|
+
</action>
|
|
947
|
+
<action name="uiSelectTextACT">
|
|
948
|
+
<property name="checkable">
|
|
949
|
+
<bool>true</bool>
|
|
950
|
+
</property>
|
|
951
|
+
<property name="checked">
|
|
952
|
+
<bool>true</bool>
|
|
953
|
+
</property>
|
|
954
|
+
<property name="text">
|
|
955
|
+
<string>Select text when Run Selected w/o selection</string>
|
|
956
|
+
</property>
|
|
957
|
+
</action>
|
|
958
|
+
<action name="uiWorkboxAutoCompleteEnabledACT">
|
|
959
|
+
<property name="checkable">
|
|
960
|
+
<bool>true</bool>
|
|
961
|
+
</property>
|
|
962
|
+
<property name="text">
|
|
963
|
+
<string>Use Auto-Complete in workbox</string>
|
|
964
|
+
</property>
|
|
965
|
+
</action>
|
|
966
|
+
<action name="uiSelectMonospaceFontACT">
|
|
967
|
+
<property name="text">
|
|
968
|
+
<string>Choose from monospace fonts</string>
|
|
969
|
+
</property>
|
|
970
|
+
<property name="toolTip">
|
|
971
|
+
<string>Choose from monospace fonts</string>
|
|
972
|
+
</property>
|
|
973
|
+
</action>
|
|
974
|
+
<action name="uiSelectProportionalFontACT">
|
|
975
|
+
<property name="text">
|
|
976
|
+
<string>Choose from proportional fonts</string>
|
|
977
|
+
</property>
|
|
978
|
+
<property name="toolTip">
|
|
979
|
+
<string>Choose from proportional fonts</string>
|
|
980
|
+
</property>
|
|
981
|
+
</action>
|
|
982
|
+
<action name="uiSelectAllFontACT">
|
|
983
|
+
<property name="text">
|
|
984
|
+
<string>Choose from all fonts</string>
|
|
985
|
+
</property>
|
|
986
|
+
<property name="toolTip">
|
|
987
|
+
<string>Choose from all fonts</string>
|
|
988
|
+
</property>
|
|
989
|
+
</action>
|
|
990
|
+
<action name="uiRunSelectedDontTruncateACT">
|
|
991
|
+
<property name="text">
|
|
992
|
+
<string>Run Selected - don't truncate return value</string>
|
|
993
|
+
</property>
|
|
994
|
+
<property name="shortcut">
|
|
995
|
+
<string>Ctrl+Shift+Return</string>
|
|
996
|
+
</property>
|
|
997
|
+
</action>
|
|
998
|
+
<action name="uiHighlightExactCompletionACT">
|
|
999
|
+
<property name="checkable">
|
|
1000
|
+
<bool>true</bool>
|
|
1001
|
+
</property>
|
|
1002
|
+
<property name="text">
|
|
1003
|
+
<string>Highlight Exact Completion</string>
|
|
1004
|
+
</property>
|
|
1005
|
+
</action>
|
|
1006
|
+
</widget>
|
|
1007
|
+
<customwidgets>
|
|
1008
|
+
<customwidget>
|
|
1009
|
+
<class>GroupTabWidget</class>
|
|
1010
|
+
<extends>QTabWidget</extends>
|
|
1011
|
+
<header>preditor.gui.group_tab_widget.h</header>
|
|
1012
|
+
<container>1</container>
|
|
1013
|
+
</customwidget>
|
|
1014
|
+
<customwidget>
|
|
1015
|
+
<class>ConsolePrEdit</class>
|
|
1016
|
+
<extends>QTextEdit</extends>
|
|
1017
|
+
<header>preditor.gui.console.h</header>
|
|
1018
|
+
</customwidget>
|
|
1019
|
+
<customwidget>
|
|
1020
|
+
<class>EditorChooser</class>
|
|
1021
|
+
<extends>QWidget</extends>
|
|
1022
|
+
<header>preditor.gui.editor_chooser.h</header>
|
|
1023
|
+
</customwidget>
|
|
1024
|
+
<customwidget>
|
|
1025
|
+
<class>FindFiles</class>
|
|
1026
|
+
<extends>QWidget</extends>
|
|
1027
|
+
<header>preditor.gui.find_files.h</header>
|
|
1028
|
+
<container>1</container>
|
|
1029
|
+
</customwidget>
|
|
1030
|
+
</customwidgets>
|
|
1031
|
+
<resources/>
|
|
1032
|
+
<connections>
|
|
1033
|
+
<connection>
|
|
1034
|
+
<sender>uiApplySettingsBTNS</sender>
|
|
1035
|
+
<signal>accepted()</signal>
|
|
1036
|
+
<receiver>PrEditorWindow</receiver>
|
|
1037
|
+
<slot>apply_options()</slot>
|
|
1038
|
+
<hints>
|
|
1039
|
+
<hint type="sourcelabel">
|
|
1040
|
+
<x>558</x>
|
|
1041
|
+
<y>367</y>
|
|
1042
|
+
</hint>
|
|
1043
|
+
<hint type="destinationlabel">
|
|
1044
|
+
<x>586</x>
|
|
1045
|
+
<y>387</y>
|
|
1046
|
+
</hint>
|
|
1047
|
+
</hints>
|
|
1048
|
+
</connection>
|
|
1049
|
+
<connection>
|
|
1050
|
+
<sender>uiSetWorkboxEditorACT</sender>
|
|
1051
|
+
<signal>triggered()</signal>
|
|
1052
|
+
<receiver>PrEditorWindow</receiver>
|
|
1053
|
+
<slot>show_workbox_options()</slot>
|
|
1054
|
+
<hints>
|
|
1055
|
+
<hint type="sourcelabel">
|
|
1056
|
+
<x>-1</x>
|
|
1057
|
+
<y>-1</y>
|
|
1058
|
+
</hint>
|
|
1059
|
+
<hint type="destinationlabel">
|
|
1060
|
+
<x>397</x>
|
|
1061
|
+
<y>202</y>
|
|
1062
|
+
</hint>
|
|
1063
|
+
</hints>
|
|
1064
|
+
</connection>
|
|
1065
|
+
<connection>
|
|
1066
|
+
<sender>uiApplySettingsBTNS</sender>
|
|
1067
|
+
<signal>rejected()</signal>
|
|
1068
|
+
<receiver>PrEditorWindow</receiver>
|
|
1069
|
+
<slot>update_workbox_stack()</slot>
|
|
1070
|
+
<hints>
|
|
1071
|
+
<hint type="sourcelabel">
|
|
1072
|
+
<x>763</x>
|
|
1073
|
+
<y>371</y>
|
|
1074
|
+
</hint>
|
|
1075
|
+
<hint type="destinationlabel">
|
|
1076
|
+
<x>747</x>
|
|
1077
|
+
<y>401</y>
|
|
1078
|
+
</hint>
|
|
1079
|
+
</hints>
|
|
1080
|
+
</connection>
|
|
1081
|
+
<connection>
|
|
1082
|
+
<sender>uiFindInWorkboxesACT</sender>
|
|
1083
|
+
<signal>triggered()</signal>
|
|
1084
|
+
<receiver>PrEditorWindow</receiver>
|
|
1085
|
+
<slot>show_find_in_workboxes()</slot>
|
|
1086
|
+
<hints>
|
|
1087
|
+
<hint type="sourcelabel">
|
|
1088
|
+
<x>-1</x>
|
|
1089
|
+
<y>-1</y>
|
|
1090
|
+
</hint>
|
|
1091
|
+
<hint type="destinationlabel">
|
|
1092
|
+
<x>397</x>
|
|
1093
|
+
<y>202</y>
|
|
1094
|
+
</hint>
|
|
1095
|
+
</hints>
|
|
1096
|
+
</connection>
|
|
1097
|
+
</connections>
|
|
1098
|
+
<slots>
|
|
1099
|
+
<slot>apply_options()</slot>
|
|
1100
|
+
<slot>reset_options()</slot>
|
|
1101
|
+
<slot>show_workbox_options()</slot>
|
|
1102
|
+
<slot>update_workbox_stack()</slot>
|
|
1103
|
+
<slot>show_find_in_workboxes()</slot>
|
|
1104
|
+
</slots>
|
|
1105
|
+
</ui>
|