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,140 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<ui version="4.0">
|
|
3
|
+
<class>uiFindFilesWGT</class>
|
|
4
|
+
<widget class="QWidget" name="uiFindFilesWGT">
|
|
5
|
+
<property name="geometry">
|
|
6
|
+
<rect>
|
|
7
|
+
<x>0</x>
|
|
8
|
+
<y>0</y>
|
|
9
|
+
<width>636</width>
|
|
10
|
+
<height>41</height>
|
|
11
|
+
</rect>
|
|
12
|
+
</property>
|
|
13
|
+
<property name="windowTitle">
|
|
14
|
+
<string>Form</string>
|
|
15
|
+
</property>
|
|
16
|
+
<layout class="QGridLayout" name="gridLayout">
|
|
17
|
+
<item row="0" column="1">
|
|
18
|
+
<widget class="QLabel" name="uiFindLBL">
|
|
19
|
+
<property name="text">
|
|
20
|
+
<string>Find:</string>
|
|
21
|
+
</property>
|
|
22
|
+
</widget>
|
|
23
|
+
</item>
|
|
24
|
+
<item row="0" column="0">
|
|
25
|
+
<layout class="QHBoxLayout" name="uiFindOptionsLYT">
|
|
26
|
+
<item>
|
|
27
|
+
<widget class="QToolButton" name="uiRegexBTN">
|
|
28
|
+
<property name="toolTip">
|
|
29
|
+
<string>Regex (Alt + R)</string>
|
|
30
|
+
</property>
|
|
31
|
+
<property name="text">
|
|
32
|
+
<string>Regex</string>
|
|
33
|
+
</property>
|
|
34
|
+
<property name="checkable">
|
|
35
|
+
<bool>true</bool>
|
|
36
|
+
</property>
|
|
37
|
+
</widget>
|
|
38
|
+
</item>
|
|
39
|
+
<item>
|
|
40
|
+
<widget class="QToolButton" name="uiCaseSensitiveBTN">
|
|
41
|
+
<property name="toolTip">
|
|
42
|
+
<string>Case Sensitive (Alt + C)</string>
|
|
43
|
+
</property>
|
|
44
|
+
<property name="text">
|
|
45
|
+
<string>Case Sensitive</string>
|
|
46
|
+
</property>
|
|
47
|
+
<property name="checkable">
|
|
48
|
+
<bool>true</bool>
|
|
49
|
+
</property>
|
|
50
|
+
</widget>
|
|
51
|
+
</item>
|
|
52
|
+
<item>
|
|
53
|
+
<widget class="QSpinBox" name="uiContextSPN">
|
|
54
|
+
<property name="toolTip">
|
|
55
|
+
<string># of lines of context to show</string>
|
|
56
|
+
</property>
|
|
57
|
+
<property name="buttonSymbols">
|
|
58
|
+
<enum>QAbstractSpinBox::PlusMinus</enum>
|
|
59
|
+
</property>
|
|
60
|
+
<property name="value">
|
|
61
|
+
<number>2</number>
|
|
62
|
+
</property>
|
|
63
|
+
</widget>
|
|
64
|
+
</item>
|
|
65
|
+
</layout>
|
|
66
|
+
</item>
|
|
67
|
+
<item row="0" column="2">
|
|
68
|
+
<widget class="QLineEdit" name="uiFindTXT"/>
|
|
69
|
+
</item>
|
|
70
|
+
<item row="0" column="3">
|
|
71
|
+
<widget class="QPushButton" name="uiFindBTN">
|
|
72
|
+
<property name="text">
|
|
73
|
+
<string>Find</string>
|
|
74
|
+
</property>
|
|
75
|
+
</widget>
|
|
76
|
+
</item>
|
|
77
|
+
<item row="0" column="4">
|
|
78
|
+
<widget class="QToolButton" name="uiCloseBTN">
|
|
79
|
+
<property name="text">
|
|
80
|
+
<string>x</string>
|
|
81
|
+
</property>
|
|
82
|
+
</widget>
|
|
83
|
+
</item>
|
|
84
|
+
</layout>
|
|
85
|
+
</widget>
|
|
86
|
+
<resources/>
|
|
87
|
+
<connections>
|
|
88
|
+
<connection>
|
|
89
|
+
<sender>uiFindBTN</sender>
|
|
90
|
+
<signal>released()</signal>
|
|
91
|
+
<receiver>uiFindFilesWGT</receiver>
|
|
92
|
+
<slot>find()</slot>
|
|
93
|
+
<hints>
|
|
94
|
+
<hint type="sourcelabel">
|
|
95
|
+
<x>601</x>
|
|
96
|
+
<y>31</y>
|
|
97
|
+
</hint>
|
|
98
|
+
<hint type="destinationlabel">
|
|
99
|
+
<x>421</x>
|
|
100
|
+
<y>29</y>
|
|
101
|
+
</hint>
|
|
102
|
+
</hints>
|
|
103
|
+
</connection>
|
|
104
|
+
<connection>
|
|
105
|
+
<sender>uiFindTXT</sender>
|
|
106
|
+
<signal>returnPressed()</signal>
|
|
107
|
+
<receiver>uiFindFilesWGT</receiver>
|
|
108
|
+
<slot>find()</slot>
|
|
109
|
+
<hints>
|
|
110
|
+
<hint type="sourcelabel">
|
|
111
|
+
<x>488</x>
|
|
112
|
+
<y>23</y>
|
|
113
|
+
</hint>
|
|
114
|
+
<hint type="destinationlabel">
|
|
115
|
+
<x>501</x>
|
|
116
|
+
<y>65</y>
|
|
117
|
+
</hint>
|
|
118
|
+
</hints>
|
|
119
|
+
</connection>
|
|
120
|
+
<connection>
|
|
121
|
+
<sender>uiCloseBTN</sender>
|
|
122
|
+
<signal>released()</signal>
|
|
123
|
+
<receiver>uiFindFilesWGT</receiver>
|
|
124
|
+
<slot>hide()</slot>
|
|
125
|
+
<hints>
|
|
126
|
+
<hint type="sourcelabel">
|
|
127
|
+
<x>620</x>
|
|
128
|
+
<y>19</y>
|
|
129
|
+
</hint>
|
|
130
|
+
<hint type="destinationlabel">
|
|
131
|
+
<x>676</x>
|
|
132
|
+
<y>24</y>
|
|
133
|
+
</hint>
|
|
134
|
+
</hints>
|
|
135
|
+
</connection>
|
|
136
|
+
</connections>
|
|
137
|
+
<slots>
|
|
138
|
+
<slot>find()</slot>
|
|
139
|
+
</slots>
|
|
140
|
+
</ui>
|