PrEditor 0.0.0.dev1__py2.py3-none-any.whl → 0.1.0__py2.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-0.1.0.dist-info/LICENSE +165 -0
- PrEditor-0.1.0.dist-info/METADATA +212 -0
- PrEditor-0.1.0.dist-info/RECORD +149 -0
- {PrEditor-0.0.0.dev1.dist-info → PrEditor-0.1.0.dist-info}/WHEEL +1 -1
- PrEditor-0.1.0.dist-info/entry_points.txt +18 -0
- PrEditor-0.1.0.dist-info/top_level.txt +1 -0
- preditor/__init__.py +301 -0
- {blurdev → preditor}/__main__.py +13 -13
- preditor/about_module.py +166 -0
- preditor/cli.py +192 -0
- {blurdev → preditor}/contexts.py +119 -119
- preditor/cores/core.py +65 -0
- preditor/dccs/maya/PrEditor_maya.mod +2 -0
- preditor/dccs/maya/plug-ins/PrEditor_maya.py +108 -0
- preditor/debug.py +294 -0
- blurdev/scintilla/delayable_engine.py → preditor/delayable_engine/__init__.py +310 -299
- blurdev/scintilla/delayables/base.py → preditor/delayable_engine/delayables.py +85 -85
- {blurdev → preditor}/enum.py +728 -1003
- {blurdev → preditor}/gui/__init__.py +84 -125
- preditor/gui/app.py +159 -0
- {blurdev → preditor}/gui/codehighlighter.py +209 -219
- {blurdev → preditor}/gui/completer.py +226 -236
- {blurdev → preditor}/gui/console.py +801 -858
- {blurdev → preditor}/gui/dialog.py +200 -216
- preditor/gui/drag_tab_bar.py +190 -0
- preditor/gui/editor_chooser.py +57 -0
- {blurdev → preditor}/gui/errordialog.py +100 -97
- preditor/gui/fuzzy_search/fuzzy_search.py +93 -0
- preditor/gui/group_tab_widget/__init__.py +319 -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 +75 -0
- preditor/gui/group_tab_widget/one_tab_widget.py +54 -0
- preditor/gui/level_buttons.py +349 -0
- {blurdev → preditor}/gui/logger_window_handler.py +46 -45
- {blurdev → preditor}/gui/loggerwindow.py +1205 -1417
- {blurdev → preditor}/gui/newtabwidget.py +69 -68
- {blurdev → preditor}/gui/redmine_login_dialog.py +63 -61
- {blurdev → preditor}/gui/set_text_editor_path_dialog.py +59 -57
- preditor/gui/ui/editor_chooser.ui +93 -0
- {blurdev → preditor}/gui/ui/errordialog.ui +81 -81
- {blurdev → preditor}/gui/ui/loggerwindow.ui +1030 -864
- {blurdev → preditor}/gui/ui/redmine_login_dialog.ui +124 -124
- {blurdev → preditor}/gui/ui/set_text_editor_path_dialog.ui +149 -149
- {blurdev → preditor}/gui/window.py +183 -199
- preditor/gui/workbox_mixin.py +357 -0
- preditor/gui/workbox_text_edit.py +117 -0
- preditor/gui/workboxwidget.py +276 -0
- preditor/logging_config.py +52 -0
- preditor/osystem.py +401 -0
- preditor/plugins.py +65 -0
- preditor/prefs.py +74 -0
- {blurdev → preditor}/resource/environment_variables.html +26 -38
- {blurdev → preditor}/resource/error_mail.html +85 -85
- {blurdev → preditor}/resource/error_mail_inline.html +41 -41
- preditor/resource/img/README.md +7 -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/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/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
- {blurdev → preditor}/resource/lang/python.json +30 -30
- preditor/resource/settings.ini +25 -0
- {blurdev/resource/stylesheet/logger → preditor/resource/stylesheet}/Bright.css +56 -61
- {blurdev → preditor}/resource/stylesheet/Dark.css +190 -132
- {blurdev → preditor}/scintilla/__init__.py +22 -28
- preditor/scintilla/delayables/__init__.py +11 -0
- {blurdev → preditor}/scintilla/delayables/smart_highlight.py +94 -93
- {blurdev → preditor}/scintilla/delayables/spell_check.py +173 -172
- {blurdev → preditor}/scintilla/documenteditor.py +2039 -2115
- {blurdev → preditor}/scintilla/finddialog.py +68 -81
- {blurdev → preditor}/scintilla/lang/__init__.py +80 -93
- {blurdev → preditor}/scintilla/lang/config/bash.ini +15 -15
- {blurdev → preditor}/scintilla/lang/config/batch.ini +14 -14
- {blurdev → preditor}/scintilla/lang/config/cpp.ini +19 -19
- {blurdev → preditor}/scintilla/lang/config/css.ini +19 -19
- {blurdev → preditor}/scintilla/lang/config/eyeonscript.ini +17 -17
- {blurdev → preditor}/scintilla/lang/config/html.ini +21 -21
- {blurdev → preditor}/scintilla/lang/config/javascript.ini +24 -24
- {blurdev → preditor}/scintilla/lang/config/lua.ini +16 -16
- {blurdev → preditor}/scintilla/lang/config/maxscript.ini +20 -20
- {blurdev → preditor}/scintilla/lang/config/mel.ini +18 -18
- {blurdev → preditor}/scintilla/lang/config/mu.ini +22 -22
- {blurdev → preditor}/scintilla/lang/config/nsi.ini +5 -5
- {blurdev → preditor}/scintilla/lang/config/perl.ini +19 -19
- {blurdev → preditor}/scintilla/lang/config/puppet.ini +19 -19
- {blurdev → preditor}/scintilla/lang/config/python.ini +28 -28
- {blurdev → preditor}/scintilla/lang/config/ruby.ini +19 -19
- {blurdev → preditor}/scintilla/lang/config/sql.ini +7 -7
- {blurdev → preditor}/scintilla/lang/config/xml.ini +21 -21
- {blurdev → preditor}/scintilla/lang/config/yaml.ini +18 -18
- {blurdev → preditor}/scintilla/lang/language.py +240 -250
- preditor/scintilla/lexers/__init__.py +0 -0
- {blurdev → preditor}/scintilla/lexers/cpplexer.py +21 -30
- {blurdev → preditor}/scintilla/lexers/javascriptlexer.py +25 -34
- {blurdev → preditor}/scintilla/lexers/maxscriptlexer.py +234 -253
- {blurdev → preditor}/scintilla/lexers/mellexer.py +368 -376
- {blurdev → preditor}/scintilla/lexers/mulexer.py +32 -41
- {blurdev → preditor}/scintilla/lexers/pythonlexer.py +41 -50
- {blurdev → preditor}/scintilla/ui/finddialog.ui +160 -160
- preditor/settings.py +71 -0
- preditor/stream/__init__.py +80 -0
- preditor/stream/director.py +56 -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
- {blurdev → preditor}/version.py +5 -5
- preditor/weakref.py +363 -0
- PrEditor-0.0.0.dev1.dist-info/METADATA +0 -51
- PrEditor-0.0.0.dev1.dist-info/RECORD +0 -279
- PrEditor-0.0.0.dev1.dist-info/top_level.txt +0 -1
- blurdev/__init__.py +0 -356
- blurdev/cores/__init__.py +0 -98
- blurdev/cores/application.py +0 -26
- blurdev/cores/core.py +0 -634
- blurdev/debug.py +0 -593
- blurdev/external.py +0 -391
- blurdev/gui/level_buttons.py +0 -585
- blurdev/gui/workboxwidget.py +0 -205
- blurdev/logger.py +0 -238
- blurdev/osystem.py +0 -813
- blurdev/prefs.py +0 -33
- blurdev/protocols/__init__.py +0 -71
- blurdev/protocols/write_std_output_handler.py +0 -83
- blurdev/resource/designer_plugins.xml +0 -9
- blurdev/resource/error_email_old.html +0 -41
- blurdev/resource/img/add.png +0 -0
- blurdev/resource/img/ajax-loader.gif +0 -0
- blurdev/resource/img/application.png +0 -0
- blurdev/resource/img/applications.png +0 -0
- blurdev/resource/img/assburner.png +0 -0
- blurdev/resource/img/assfreezer.png +0 -0
- blurdev/resource/img/bar.gif +0 -0
- blurdev/resource/img/blank.png +0 -0
- blurdev/resource/img/blurdev.png +0 -0
- blurdev/resource/img/calendar_disabled.png +0 -0
- blurdev/resource/img/calendar_enabled.png +0 -0
- blurdev/resource/img/cancel.png +0 -0
- blurdev/resource/img/custom.png +0 -0
- blurdev/resource/img/debug_high.png +0 -0
- blurdev/resource/img/debug_low.png +0 -0
- blurdev/resource/img/debug_mid.png +0 -0
- blurdev/resource/img/debug_off.png +0 -0
- blurdev/resource/img/django.png +0 -0
- blurdev/resource/img/doc.png +0 -0
- blurdev/resource/img/edit.png +0 -0
- blurdev/resource/img/elemental.png +0 -0
- blurdev/resource/img/explore.png +0 -0
- blurdev/resource/img/favorite.png +0 -0
- blurdev/resource/img/file.png +0 -0
- blurdev/resource/img/folder.png +0 -0
- blurdev/resource/img/ide/add.png +0 -0
- blurdev/resource/img/ide/add_note.png +0 -0
- blurdev/resource/img/ide/arrow_down.png +0 -0
- blurdev/resource/img/ide/arrow_up.png +0 -0
- blurdev/resource/img/ide/check.png +0 -0
- blurdev/resource/img/ide/class.png +0 -0
- blurdev/resource/img/ide/clean.png +0 -0
- blurdev/resource/img/ide/clearlog.png +0 -0
- blurdev/resource/img/ide/close.png +0 -0
- blurdev/resource/img/ide/comment_add.png +0 -0
- blurdev/resource/img/ide/comment_remove.png +0 -0
- blurdev/resource/img/ide/comment_toggle.png +0 -0
- blurdev/resource/img/ide/console.png +0 -0
- blurdev/resource/img/ide/copy.png +0 -0
- blurdev/resource/img/ide/copylstrip.png +0 -0
- blurdev/resource/img/ide/cut.png +0 -0
- blurdev/resource/img/ide/edit.png +0 -0
- blurdev/resource/img/ide/find.png +0 -0
- blurdev/resource/img/ide/find_replace.png +0 -0
- blurdev/resource/img/ide/findnext.png +0 -0
- blurdev/resource/img/ide/findprev.png +0 -0
- blurdev/resource/img/ide/folder_find.png +0 -0
- blurdev/resource/img/ide/function.png +0 -0
- blurdev/resource/img/ide/git-bash.png +0 -0
- blurdev/resource/img/ide/git-gui.png +0 -0
- blurdev/resource/img/ide/gitk.png +0 -0
- blurdev/resource/img/ide/goto.png +0 -0
- blurdev/resource/img/ide/goto_def.png +0 -0
- blurdev/resource/img/ide/help.png +0 -0
- blurdev/resource/img/ide/highlighter.png +0 -0
- blurdev/resource/img/ide/lowercase.png +0 -0
- blurdev/resource/img/ide/newfile.png +0 -0
- blurdev/resource/img/ide/newfolder.png +0 -0
- blurdev/resource/img/ide/newproject.png +0 -0
- blurdev/resource/img/ide/newwizard.png +0 -0
- blurdev/resource/img/ide/open.png +0 -0
- blurdev/resource/img/ide/paste.png +0 -0
- blurdev/resource/img/ide/pdb_continue.png +0 -0
- blurdev/resource/img/ide/pdb_down.png +0 -0
- blurdev/resource/img/ide/pdb_next.png +0 -0
- blurdev/resource/img/ide/pdb_step.png +0 -0
- blurdev/resource/img/ide/pdb_up.png +0 -0
- blurdev/resource/img/ide/plus_minus.png +0 -0
- blurdev/resource/img/ide/preferences.png +0 -0
- blurdev/resource/img/ide/project_find.png +0 -0
- blurdev/resource/img/ide/python.png +0 -0
- blurdev/resource/img/ide/pyular.png +0 -0
- blurdev/resource/img/ide/qt.png +0 -0
- blurdev/resource/img/ide/quit.png +0 -0
- blurdev/resource/img/ide/redo.png +0 -0
- blurdev/resource/img/ide/refresh.png +0 -0
- blurdev/resource/img/ide/remove.png +0 -0
- blurdev/resource/img/ide/ruler.png +0 -0
- blurdev/resource/img/ide/run.png +0 -0
- blurdev/resource/img/ide/runall.png +0 -0
- blurdev/resource/img/ide/runallclear.png +0 -0
- blurdev/resource/img/ide/runselected.png +0 -0
- blurdev/resource/img/ide/runselectedclear.png +0 -0
- blurdev/resource/img/ide/save.png +0 -0
- blurdev/resource/img/ide/saveas.png +0 -0
- blurdev/resource/img/ide/sdk.png +0 -0
- blurdev/resource/img/ide/separator.png +0 -0
- blurdev/resource/img/ide/tabbed.png +0 -0
- blurdev/resource/img/ide/tile.png +0 -0
- blurdev/resource/img/ide/toolbar.png +0 -0
- blurdev/resource/img/ide/undo.png +0 -0
- blurdev/resource/img/ide/uppercase.png +0 -0
- blurdev/resource/img/ide/view_as.png +0 -0
- blurdev/resource/img/ide/windowed.png +0 -0
- blurdev/resource/img/ide.ico +0 -0
- blurdev/resource/img/ide.png +0 -0
- blurdev/resource/img/ide48.png +0 -0
- blurdev/resource/img/info.png +0 -0
- blurdev/resource/img/legacy tool.png +0 -0
- blurdev/resource/img/library.png +0 -0
- blurdev/resource/img/logger/about.png +0 -0
- blurdev/resource/img/logger/arrow_forward.png +0 -0
- blurdev/resource/img/logger/clear.png +0 -0
- blurdev/resource/img/logger/close.png +0 -0
- blurdev/resource/img/logger/debug_disabled.png +0 -0
- blurdev/resource/img/logger/debug_high.png +0 -0
- blurdev/resource/img/logger/debug_low.png +0 -0
- blurdev/resource/img/logger/debug_mid.png +0 -0
- blurdev/resource/img/logger/down.png +0 -0
- blurdev/resource/img/logger/find.png +0 -0
- blurdev/resource/img/logger/logging_critical.png +0 -0
- blurdev/resource/img/logger/logging_debug.png +0 -0
- blurdev/resource/img/logger/logging_error.png +0 -0
- blurdev/resource/img/logger/logging_info.png +0 -0
- blurdev/resource/img/logger/logging_not_set.png +0 -0
- blurdev/resource/img/logger/logging_warning.png +0 -0
- blurdev/resource/img/logger/next.png +0 -0
- blurdev/resource/img/logger/play.png +0 -0
- blurdev/resource/img/logger/playlist_play.png +0 -0
- blurdev/resource/img/logger/previous.png +0 -0
- blurdev/resource/img/logger/return.png +0 -0
- blurdev/resource/img/logger/save.png +0 -0
- blurdev/resource/img/logger/subdirectory_arrow_right.png +0 -0
- blurdev/resource/img/logger/up.png +0 -0
- blurdev/resource/img/lovebar.png +0 -0
- blurdev/resource/img/new.png +0 -0
- blurdev/resource/img/new_selected.png +0 -0
- blurdev/resource/img/node.png +0 -0
- blurdev/resource/img/ok.png +0 -0
- blurdev/resource/img/options.png +0 -0
- blurdev/resource/img/packages.png +0 -0
- blurdev/resource/img/preview/add.png +0 -0
- blurdev/resource/img/preview/brush.png +0 -0
- blurdev/resource/img/preview/delete.png +0 -0
- blurdev/resource/img/preview/delte.png +0 -0
- blurdev/resource/img/preview/fill.png +0 -0
- blurdev/resource/img/preview/layers.png +0 -0
- blurdev/resource/img/preview/media.png +0 -0
- blurdev/resource/img/preview/navigate.png +0 -0
- blurdev/resource/img/preview/pencil.png +0 -0
- blurdev/resource/img/preview/select.png +0 -0
- blurdev/resource/img/preview/type.png +0 -0
- blurdev/resource/img/preview/visible.png +0 -0
- blurdev/resource/img/project.png +0 -0
- blurdev/resource/img/python_logger.ico +0 -0
- blurdev/resource/img/python_logger.png +0 -0
- blurdev/resource/img/refresh.png +0 -0
- blurdev/resource/img/remove.png +0 -0
- blurdev/resource/img/reset.png +0 -0
- blurdev/resource/img/richtext/font_bold.png +0 -0
- blurdev/resource/img/richtext/font_italic.png +0 -0
- blurdev/resource/img/richtext/link_image.png +0 -0
- blurdev/resource/img/richtext/spell_check.png +0 -0
- blurdev/resource/img/richtext/unordered_list.png +0 -0
- blurdev/resource/img/save.png +0 -0
- blurdev/resource/img/savesettings.png +0 -0
- blurdev/resource/img/settings.png +0 -0
- blurdev/resource/img/tool.png +0 -0
- blurdev/resource/img/toolbarHandleHorizontal.png +0 -0
- blurdev/resource/img/toolbarHandleVertical.png +0 -0
- blurdev/resource/img/trash.png +0 -0
- blurdev/resource/img/trax.png +0 -0
- blurdev/resource/img/tree.png +0 -0
- blurdev/resource/img/treegrunt.ico +0 -0
- blurdev/resource/img/treegrunt.png +0 -0
- blurdev/resource/img/treegruntedit.png +0 -0
- blurdev/resource/img/user interface.png +0 -0
- blurdev/resource/img/warning.png +0 -0
- blurdev/resource/img/watermark.png +0 -0
- blurdev/resource/sdk/blurdev.sdk +0 -3
- blurdev/resource/settings.ini +0 -82
- blurdev/resource/softimage/BlurApplication.dll +0 -0
- blurdev/resource/softimage/BlurApplication64.dll +0 -0
- blurdev/resource/stylesheet/Carbon.css +0 -35
- blurdev/resource/stylesheet/logger/Dark.css +0 -62
- blurdev/resource/templ/py_comment.templ +0 -1
- blurdev/resource/templ/py_debug_raise_error.templ +0 -7
- blurdev/resource/templ/py_doc_string.templ +0 -10
- blurdev/resource/templ/py_header.templ +0 -9
- blurdev/resource/templ/py_line_comment.templ +0 -1
- blurdev/resource/templ/py_log_to_file.templ +0 -22
- blurdev/resource/templ/py_module_path.templ +0 -1
- blurdev/resource/templ/py_pyqt_core.templ +0 -1
- blurdev/resource/templ/py_pyqt_gui.templ +0 -1
- blurdev/resource/templ/py_splashscreen.templ +0 -6
- blurdev/resource/templ/py_testing_note.templ +0 -1
- blurdev/resource/templ/py_testing_note_end.templ +0 -1
- blurdev/resource/tools_environments.json +0 -72
- blurdev/resource/tools_environments.xml +0 -11
- blurdev/resource/tools_environments_linux.xml +0 -11
- blurdev/resource/tools_environments_offline.xml +0 -7
- blurdev/runtimes/__init__.py +0 -2
- blurdev/runtimes/logger.py +0 -44
- blurdev/scintilla/delayables/__init__.py +0 -9
- blurdev/settings.py +0 -312
- blurdev/utils/error.py +0 -389
- {blurdev/scintilla/lexers → preditor/cores}/__init__.py +0 -0
- {blurdev/utils → preditor/gui/fuzzy_search}/__init__.py +0 -0
- {blurdev → preditor}/resource/img/warning-big.png +0 -0
|
@@ -1,279 +0,0 @@
|
|
|
1
|
-
blurdev/__init__.py,sha256=qScKFMIkj34TPKUSApT4kxzAd5vgVxAaTkZqk0jBHfo,13182
|
|
2
|
-
blurdev/__main__.py,sha256=gaGjnrbT2c00idwwpPI0igymJnCS6t-gUndfMHklQDw,457
|
|
3
|
-
blurdev/contexts.py,sha256=efT2eurRfTLfTgr4rjZ_HTe51KyBzg553llp6TG5RIY,5303
|
|
4
|
-
blurdev/debug.py,sha256=bRYY0LJM4cyK0bTZf_lDq6udRT3yDre07vs-euGibOA,19540
|
|
5
|
-
blurdev/enum.py,sha256=ZMHpuLp1u5tAVXI_ColMNAhyDu8LH10KnBcTzcYjLPU,34453
|
|
6
|
-
blurdev/external.py,sha256=tB9G1ASCPTxLteHL_PaME_JWS5aDpr5EpkytNiH8PbI,15891
|
|
7
|
-
blurdev/logger.py,sha256=U3LSlnaP55cbu6YD7gIzX8u4OdjhqmPPMQ1xZIbcazo,7521
|
|
8
|
-
blurdev/osystem.py,sha256=d1L93r6naZ04oV7Ke-XrA82CALLOz6-D3NW3F1Z1KU4,30657
|
|
9
|
-
blurdev/prefs.py,sha256=apcd95m9ANbRAgNQiPMpdvZ_yMTdoEy40a0N1xpHapc,871
|
|
10
|
-
blurdev/settings.py,sha256=QZvmFVY2b8NZcfb4zd29L6MDXWeu6AJFjobMsL5c4Ys,11125
|
|
11
|
-
blurdev/version.py,sha256=hqoI4J44JMQ551_dX0r8UKAar-eBnCcw5Gbtoq-8zfg,160
|
|
12
|
-
blurdev/cores/__init__.py,sha256=qU1ZTpYtiFWw8rDPh6fXV2ejlKGghgYVmQEh875lrqg,2655
|
|
13
|
-
blurdev/cores/application.py,sha256=xciEim5kmK5h9Cz5fTuOcgbCGwJaXvfQb0vNT_h7Nro,918
|
|
14
|
-
blurdev/cores/core.py,sha256=Nu8btBjpo7D7NatysZiJ7hpOjVyMuorZh-5bLzVxo3E,24155
|
|
15
|
-
blurdev/gui/__init__.py,sha256=Y4HKIO4hj_yqnpRzmy_LUzc9-1hNesXdV3M1Kw8zmns,4693
|
|
16
|
-
blurdev/gui/codehighlighter.py,sha256=rbU7LgV8qJrKN9W9Maa-RhMp_AKUvgOohj4cEaLuS-A,7712
|
|
17
|
-
blurdev/gui/completer.py,sha256=tfuy7SwHrWBtZjjbYub-rHZKgyx9YuJLHhrT22MqlY0,7817
|
|
18
|
-
blurdev/gui/console.py,sha256=wr6nSLeZwxUCtRh-rPQyIcSFGJXPtbCi8EpmYXjo9GU,33917
|
|
19
|
-
blurdev/gui/dialog.py,sha256=hGdXmVUTZ_8FmOI0hOo9gUrYmbvxQYbbcHPvOWOqJXc,8024
|
|
20
|
-
blurdev/gui/errordialog.py,sha256=m3vhfNIW5h9n0jnaUs0z31I0gHcnwkxVdvzTxwMKG5M,3190
|
|
21
|
-
blurdev/gui/level_buttons.py,sha256=dyOTkO3y0Uahof_b9dHpQj6kivSLn10h12uw6JCdz10,21197
|
|
22
|
-
blurdev/gui/logger_window_handler.py,sha256=nUirQb0dvhS7J4JOpvtQc1sNQPGX9bPNQJhdvfR9r_s,1528
|
|
23
|
-
blurdev/gui/loggerwindow.py,sha256=8sMsJDE31C0LXKAyYt33tge-ZrJNoOwdp_20PhzUnX4,56404
|
|
24
|
-
blurdev/gui/newtabwidget.py,sha256=TQy7SG4jURGZtlkxUDLWGJnXP0EfU29CtlB_772mXOg,2038
|
|
25
|
-
blurdev/gui/redmine_login_dialog.py,sha256=QRjyonNhX4nGVQ1Nax2Q8fyV-hFgURF0mTqXuzBMH0A,1954
|
|
26
|
-
blurdev/gui/set_text_editor_path_dialog.py,sha256=P3TN36HJRrkwOAQHgd62FUonS4jOE8QMoyNOApoELaA,2316
|
|
27
|
-
blurdev/gui/window.py,sha256=emUSFnmANa9n820hfD2pxRZfy0cHLTLJSXiZcWm7_Do,7434
|
|
28
|
-
blurdev/gui/workboxwidget.py,sha256=wpXtZWrpWgCRjxZ7Ev1NS1A2T8rfNMRbqPuRsFz3LRY,7472
|
|
29
|
-
blurdev/gui/ui/errordialog.ui,sha256=RJpYKu2y6nWS4iCG145qEgqGV9xfh3auvXPsXUiYeOU,2115
|
|
30
|
-
blurdev/gui/ui/loggerwindow.ui,sha256=17OZng5sGbXnSaoAdrRXDG2DN-3kTYAp423BS7xHd_I,25088
|
|
31
|
-
blurdev/gui/ui/redmine_login_dialog.ui,sha256=FuDlb2WWmzYF1zAZ4ZlWdHaCE_yt2Xaax8iuaLPulck,3035
|
|
32
|
-
blurdev/gui/ui/set_text_editor_path_dialog.ui,sha256=8Fy9_Sx5n5r8NUEbCd3-_skijZaaJBJYahOm0fCI2-c,4153
|
|
33
|
-
blurdev/protocols/__init__.py,sha256=Cv3GlIGC-aiOlcwZDKrAN7na0s5qCQFBPryJd7b6WVo,2191
|
|
34
|
-
blurdev/protocols/write_std_output_handler.py,sha256=UU3023YdECF9UT_Meu4EGI0FyYdCBD_DosTpO9E9TA4,3493
|
|
35
|
-
blurdev/resource/designer_plugins.xml,sha256=0xkSibh2kokkgQ5c0b6_cpr_Rocm6cdSoaTVwA1yIrU,462
|
|
36
|
-
blurdev/resource/environment_variables.html,sha256=9zv-wpEO8cA6jVHI3ooJX9VIM2ZrKSvQ4kf4OdxwEQw,5712
|
|
37
|
-
blurdev/resource/error_email_old.html,sha256=civgp7nEPuf8fSI6ZUDJEayQtfrQ7kd-obg1gSunjro,1297
|
|
38
|
-
blurdev/resource/error_mail.html,sha256=dnOK4dz2cqNEHSFEe-TFrlO2uYfRnml_pE2KLXiH5po,2483
|
|
39
|
-
blurdev/resource/error_mail_inline.html,sha256=q2dKMhViu4pFxn8lFaN1r66x1k6MBXBayRTIGplE83g,4053
|
|
40
|
-
blurdev/resource/settings.ini,sha256=YnqEy50eqKVhgq9gM3ygoZ33hgDEBHLUCEpYr4oSkyY,4123
|
|
41
|
-
blurdev/resource/tools_environments.json,sha256=k7y7IGcrCWUGeTE6aTEULNkTqx33WCngG9L8W7IjJwg,2691
|
|
42
|
-
blurdev/resource/tools_environments.xml,sha256=4s29FTlAGOOdWKIpDGSOfgG7gFDfuj1dFNZQV7DLW2o,1362
|
|
43
|
-
blurdev/resource/tools_environments_linux.xml,sha256=1DmW8LXpfMgzYtgeoNdxr3YsDZFea2NrZ4l2PW6DKP4,1288
|
|
44
|
-
blurdev/resource/tools_environments_offline.xml,sha256=ANzM_XA4gRzJnAiVn0nCE6bBXox48qP4EOl_OUyTKGw,383
|
|
45
|
-
blurdev/resource/img/add.png,sha256=0-LhijxukG-Qk5Xa_5voni_-82AsQqoPDlIZPHe2aRg,521
|
|
46
|
-
blurdev/resource/img/ajax-loader.gif,sha256=CvwVY5VqsSIBW6mRgQIm0fTUZNeXrAVqhU14WQjk1Ac,1609
|
|
47
|
-
blurdev/resource/img/application.png,sha256=JkifgLF1e-xMxKWUv9sC24Ab7PzpRyONDxet9kIJNLg,341
|
|
48
|
-
blurdev/resource/img/applications.png,sha256=FfrBAnyhoCmlL27cmgwU9aImflVDjoUWBrDop1pwVio,529
|
|
49
|
-
blurdev/resource/img/assburner.png,sha256=k1bOZ4defucFJwv-_WWVUXPCB7TLxwhT6MKG68QISjQ,31335
|
|
50
|
-
blurdev/resource/img/assfreezer.png,sha256=sMEmajkLqQAdV32RpvfVC3R3_ATwgq4WP7MzERIPBlY,48524
|
|
51
|
-
blurdev/resource/img/bar.gif,sha256=R2p7EIXMZN4cDrdKZ3b6g4XVfrGHdPGZ34P8TXu8wk4,10819
|
|
52
|
-
blurdev/resource/img/blank.png,sha256=x9Q4FUHNXv5jeckKWUsOPi8sID03E2C5JrmN7YvDFFc,373
|
|
53
|
-
blurdev/resource/img/blurdev.png,sha256=iYvfCceBotf7G_7Lhh9xdU1bzgVGFm46nSkqABA1Jcc,4442
|
|
54
|
-
blurdev/resource/img/calendar_disabled.png,sha256=pjY2u13pLVwNc5kcI1ssFC0Mv06V_jUlFxz0XL3uQtk,14911
|
|
55
|
-
blurdev/resource/img/calendar_enabled.png,sha256=A6WaKjTNculj4rV5YnhrqG-Zs9np9wXvDzT4w7648Pk,655
|
|
56
|
-
blurdev/resource/img/cancel.png,sha256=zufthgHeMWorlh09eLB8390QvQQmbTZs5ed7QlUT9RU,544
|
|
57
|
-
blurdev/resource/img/custom.png,sha256=okV6lWZsKEoqXEjJr2SxI29ZYYkBX-ikDXseCDyx1MU,504
|
|
58
|
-
blurdev/resource/img/debug_high.png,sha256=0NDYYK_Ot_m087Q91ODuwufPPzHPQOB8k-9dkYFRpI8,735
|
|
59
|
-
blurdev/resource/img/debug_low.png,sha256=HjIxPWYM9QCmw08h_k2TfyrqHkr_bjrdTmHlCBP_oek,722
|
|
60
|
-
blurdev/resource/img/debug_mid.png,sha256=hqh2jdXeyPtmpK3aAVpihNqtPV9_lqlySoVNdytp3Ns,655
|
|
61
|
-
blurdev/resource/img/debug_off.png,sha256=PK8o_gHm2HtJ3k2UB7LvSZmvvaaZCEFXfbNig3ZMVrM,724
|
|
62
|
-
blurdev/resource/img/django.png,sha256=DLG7MB3hTgz8fmGippPE5wB8gW9ZJPR73tgjt55APVs,1983
|
|
63
|
-
blurdev/resource/img/doc.png,sha256=FfJ4NWf-4cECI_L50Smy3oNxkM07MmKdOcralFGhBi4,647
|
|
64
|
-
blurdev/resource/img/edit.png,sha256=sWAlthmqbw6lMJ7X6jrsvG1y3BSEiis2pN-m8BVksC4,1529
|
|
65
|
-
blurdev/resource/img/elemental.png,sha256=5iJFMxXYtmF4L0wrWzSy0gW7KLesV5VP6VV6caVhwvU,606
|
|
66
|
-
blurdev/resource/img/explore.png,sha256=wX1lLBYmyFywB-wTwRoOFYnvo0vxs2dVowE-3QeqUd0,700
|
|
67
|
-
blurdev/resource/img/favorite.png,sha256=V-oxiBLSF7kc0pAE0cq16ugXp4v8FRuAWk-4yEiPFts,792
|
|
68
|
-
blurdev/resource/img/file.png,sha256=dPnUEFqBHlIr4PgdXyVUkWrmjWvt1mTYoiPLRRTDXVU,469
|
|
69
|
-
blurdev/resource/img/folder.png,sha256=okV6lWZsKEoqXEjJr2SxI29ZYYkBX-ikDXseCDyx1MU,504
|
|
70
|
-
blurdev/resource/img/ide.ico,sha256=_cW7cyht9hfvj8oLZj4uVKUVZoRxJtyctO9lmzsVWSs,31654
|
|
71
|
-
blurdev/resource/img/ide.png,sha256=FfrBAnyhoCmlL27cmgwU9aImflVDjoUWBrDop1pwVio,529
|
|
72
|
-
blurdev/resource/img/ide48.png,sha256=5HwAC_Z-du1kUPqELuo7GaLLrM-SoobaEi6tUVligO0,2062
|
|
73
|
-
blurdev/resource/img/info.png,sha256=XJzZSaUuYPjxyspBupocUbpxObSHyPaYor8EbDitzt4,775
|
|
74
|
-
blurdev/resource/img/legacy tool.png,sha256=DOoV4oiEMiEIwgjniYhxDITni6o0o9E5qoaMedVzogo,786
|
|
75
|
-
blurdev/resource/img/library.png,sha256=_iQp2dgwHJ2bHvIxox5_8AFTNGIfa0CHU-onrfU3CJU,504
|
|
76
|
-
blurdev/resource/img/lovebar.png,sha256=V-oxiBLSF7kc0pAE0cq16ugXp4v8FRuAWk-4yEiPFts,792
|
|
77
|
-
blurdev/resource/img/new.png,sha256=DUTsBQQg7kY1yCCR1gO0hPtqQmbY7fFpvQaHNOAQif0,485
|
|
78
|
-
blurdev/resource/img/new_selected.png,sha256=_vHSAto5mVmCa-jLmMbiuQmnwJO9CBaA1j3veWCEQaw,650
|
|
79
|
-
blurdev/resource/img/node.png,sha256=rlepOBuQ-K-hf58MFXCa2fYNs9A3nvLzjLXBzcU5uF8,520
|
|
80
|
-
blurdev/resource/img/ok.png,sha256=Z3iE9VSpWwhlqNasDpt3OSRVl_v30PKnTzOgWTOxCxs,634
|
|
81
|
-
blurdev/resource/img/options.png,sha256=X9Cofjf4w2KGUqLMVt9hvwtQNwYjKR4nsigynw2sePI,736
|
|
82
|
-
blurdev/resource/img/packages.png,sha256=cd8cz2hZevV23mCy4zxrVByQaOWz4LebhTvzC_XcmAE,508
|
|
83
|
-
blurdev/resource/img/project.png,sha256=GLrFHMBBW8YzN8Lc0BnZUtBe1RLCj061iffhgOp4xKc,677
|
|
84
|
-
blurdev/resource/img/python_logger.ico,sha256=OpKFJCx6mMRiYI6sCO1pdZ6CZ14ni_HPK5JW-pBrI9c,26682
|
|
85
|
-
blurdev/resource/img/python_logger.png,sha256=HDXBCXsyajAWPwQ0GIiX2Wdno1rbbYqmZwvgREcQ16o,14681
|
|
86
|
-
blurdev/resource/img/refresh.png,sha256=1wdHTCiPW_tl8nmB2jzVqcd631NO74cwPCnQMe5DrG8,826
|
|
87
|
-
blurdev/resource/img/remove.png,sha256=zufthgHeMWorlh09eLB8390QvQQmbTZs5ed7QlUT9RU,544
|
|
88
|
-
blurdev/resource/img/reset.png,sha256=lKhoBky6fQpZo2uiKOvQOtfErSBmgrPwNdJdVhCIOJE,708
|
|
89
|
-
blurdev/resource/img/save.png,sha256=DdhfmtkaytpqD4MrGy_YIggitqWyonVluvLu52-3O1Q,507
|
|
90
|
-
blurdev/resource/img/savesettings.png,sha256=xWXesp-X0f5ZFwJ07eO8uySoe0_buvTHXrF73h8F7ok,803
|
|
91
|
-
blurdev/resource/img/settings.png,sha256=X9Cofjf4w2KGUqLMVt9hvwtQNwYjKR4nsigynw2sePI,736
|
|
92
|
-
blurdev/resource/img/tool.png,sha256=wyDVUWVtxWnIacdLzJe8OhMSTqJOcH8FKPP2l9qq3rg,46816
|
|
93
|
-
blurdev/resource/img/toolbarHandleHorizontal.png,sha256=jHhoOVFgrQQZ-K9BhehGRbjBemVg6khtck4O-KsjIWM,2845
|
|
94
|
-
blurdev/resource/img/toolbarHandleVertical.png,sha256=b_ehiDMaVwjL2p2DVeCB5aPCNCeZfLuU9jyfwDmSSRM,2839
|
|
95
|
-
blurdev/resource/img/trash.png,sha256=fpugr4y5fvI3PKuiv2oa9dKCuOK9ijNezOe4YpKEJWc,717
|
|
96
|
-
blurdev/resource/img/trax.png,sha256=ncYDlYa2w9wWsK-uS_3QeToEnqhvvn_WAjruZyN0IHk,4742
|
|
97
|
-
blurdev/resource/img/tree.png,sha256=708pPFDY32sEzoJOS3D-fQ1yqT2BuS2H1qTFjH0xiAw,575
|
|
98
|
-
blurdev/resource/img/treegrunt.ico,sha256=ZlQpE9iWSIkHLIedtjGaJwMN-p8-_O2GB-Pa59a2K00,38820
|
|
99
|
-
blurdev/resource/img/treegrunt.png,sha256=umfKmJMtLIdgvDoesYTfny3IYc8HdYfwiyONju41GdY,22493
|
|
100
|
-
blurdev/resource/img/treegruntedit.png,sha256=LOwqcneE9c5phh3ucHPTskHxEffMIJNNivTNlZdhWLo,901
|
|
101
|
-
blurdev/resource/img/user interface.png,sha256=EhjB1CLzj14waHxRO1WovIzlUjqGylXBzgoahnTuynQ,962
|
|
102
|
-
blurdev/resource/img/warning-big.png,sha256=z5QKX3DNLo_UDRKdjwtELbXL_JLf2zOwhkMPnIeu3vw,1065
|
|
103
|
-
blurdev/resource/img/warning.png,sha256=IEKC7bbT1xRjWi1JcIdxbYMaLADrEHjvRV5ug2N6L0g,654
|
|
104
|
-
blurdev/resource/img/watermark.png,sha256=LQu7tW3-yl5lTZSqYTJrvV09pDLfM1P-evM2CbHfxdY,16615
|
|
105
|
-
blurdev/resource/img/ide/add.png,sha256=0-LhijxukG-Qk5Xa_5voni_-82AsQqoPDlIZPHe2aRg,521
|
|
106
|
-
blurdev/resource/img/ide/add_note.png,sha256=lNb07x6D8HexqDO4n5elqTSLfTaOTP6ysfczjqioAMA,576
|
|
107
|
-
blurdev/resource/img/ide/arrow_down.png,sha256=iEsVFUtEJz8F7a6oTHAUEK7JlV0qKugOLbTCC77wgdo,1628
|
|
108
|
-
blurdev/resource/img/ide/arrow_up.png,sha256=pgIk3aO1hitllr5cP-pN3QJizDQMouMep0d1BIVcUD0,1608
|
|
109
|
-
blurdev/resource/img/ide/check.png,sha256=Z3iE9VSpWwhlqNasDpt3OSRVl_v30PKnTzOgWTOxCxs,634
|
|
110
|
-
blurdev/resource/img/ide/class.png,sha256=UI7D55SR5rFO3qbr55OLLx5EXp5xS03v4798IkKKhpU,1536
|
|
111
|
-
blurdev/resource/img/ide/clean.png,sha256=h3isfDbGWYx4Up2XIVsu0E8Yv6x1qBsgxzsk5xOAZ50,784
|
|
112
|
-
blurdev/resource/img/ide/clearlog.png,sha256=n6wG9mkO3D7RF81Ee9qbgFl-M7ENST26zOHGi6eYYgE,2192
|
|
113
|
-
blurdev/resource/img/ide/close.png,sha256=z-mwdBW-y4FSuuGZkyRtfdu9av4knMcRbgTApm0hn7w,1215
|
|
114
|
-
blurdev/resource/img/ide/comment_add.png,sha256=55WlkjTIk1lk6_dMdi974Jrce2t03Uf5grWNf7rlJRY,530
|
|
115
|
-
blurdev/resource/img/ide/comment_remove.png,sha256=X3W4xDf7sw8ILV-1lM91xAwnGN0y29p3cZP9BfXZRYg,548
|
|
116
|
-
blurdev/resource/img/ide/comment_toggle.png,sha256=EFaoZajkyf5t_0O_HeIIqP3LVKAkuUdSAuSK6di5hsw,3486
|
|
117
|
-
blurdev/resource/img/ide/console.png,sha256=Vv5z7qhZLwmh-yANxOUbfaUokL0BnfrvVW2PhjuzWtg,492
|
|
118
|
-
blurdev/resource/img/ide/copy.png,sha256=h7hHkujrH2min6ouevnKQsx8PeIpZQuGzS67bXljWcQ,4120
|
|
119
|
-
blurdev/resource/img/ide/copylstrip.png,sha256=JqRXVoe03RYvv9Vl8kXUZmrlwXgqTRuHpDprTglNTvM,4107
|
|
120
|
-
blurdev/resource/img/ide/cut.png,sha256=010n4l9MRmm2IwY6LVx5ZkCpZcomrBaB3O8ZFJvog7c,4383
|
|
121
|
-
blurdev/resource/img/ide/edit.png,sha256=9wvq3ss4_BvVrW9NzZSK2NfPVk5P0cJ3hnI7Owhiv_E,2038
|
|
122
|
-
blurdev/resource/img/ide/find.png,sha256=mBvBlNem0B_PbmV_FR4KxI1IHI2mFNSLTz1wCSN54YE,2186
|
|
123
|
-
blurdev/resource/img/ide/find_replace.png,sha256=-NI-pu6kUXV-0ADTQuEfZT8KV1ivtFrunrt6TrkGtpI,1586
|
|
124
|
-
blurdev/resource/img/ide/findnext.png,sha256=NvVnEW4LN0fGw7rg9SQZui0UibI7d4r2D4Ne_AIq0pI,4074
|
|
125
|
-
blurdev/resource/img/ide/findprev.png,sha256=3pm06KWG7iSaqmSMpmTArxHUI5xKUT6Cv1s6_yWPtdI,4103
|
|
126
|
-
blurdev/resource/img/ide/folder_find.png,sha256=4jTGVsvvCKU54jwzGgfZngCMc40zMeLUG8cWM3N3rHU,1646
|
|
127
|
-
blurdev/resource/img/ide/function.png,sha256=yRlKX2jRc49biKxgQJOswEUcx_mhVtuKMVC046TdgbI,874
|
|
128
|
-
blurdev/resource/img/ide/git-bash.png,sha256=PMQ4GAI85T5lFN73yNqrRU77s3IeGLp9TmPmBacI8tw,788
|
|
129
|
-
blurdev/resource/img/ide/git-gui.png,sha256=FQh1gPSSNPq0IscwxtB6uzQ3EsNyA0Esx7pl_GCG4nE,250
|
|
130
|
-
blurdev/resource/img/ide/gitk.png,sha256=o2YBCA0CqyNP8dr5rzZGZmQIGXsyuuGlURtq8FoHF94,3253
|
|
131
|
-
blurdev/resource/img/ide/goto.png,sha256=QY68HZcpAwSOXQ1o5hHpLX2I348spgnlrwslcsvggSY,1128
|
|
132
|
-
blurdev/resource/img/ide/goto_def.png,sha256=xXZ5CubZnvzHorQ7LvEBxlykMha5XHtjXZ4gQrSoK5o,3708
|
|
133
|
-
blurdev/resource/img/ide/help.png,sha256=G2QeITIByCrpVRi9gCpvdzWVCO8bJv0CYnB178JZlbU,2103
|
|
134
|
-
blurdev/resource/img/ide/highlighter.png,sha256=2hMHjQ8Se0s6TaR_GT6Uw5dWZVW_nMZOKousyVnRPmM,1330
|
|
135
|
-
blurdev/resource/img/ide/lowercase.png,sha256=sd8gxYPEL68316sCH0NPuKgYHfevArC8xvEu5GYNpqE,411
|
|
136
|
-
blurdev/resource/img/ide/newfile.png,sha256=fLVs5wklvHfLJy9mFmTEM3iyour54IdFYX8NHPPi7rM,519
|
|
137
|
-
blurdev/resource/img/ide/newfolder.png,sha256=OmM9Zwr-9p5haHgvdYUINyWLjLbh88kKa0KKLL9c_ps,2455
|
|
138
|
-
blurdev/resource/img/ide/newproject.png,sha256=xndAWXS71fJV71WBWPi60ngjMoDAFS0IQ6DjrvX2Q4o,1312
|
|
139
|
-
blurdev/resource/img/ide/newwizard.png,sha256=ob2O9Rvoka7WVeVXR3bhmCdVxo-TQcdVbQMGbZF5uss,1245
|
|
140
|
-
blurdev/resource/img/ide/open.png,sha256=okV6lWZsKEoqXEjJr2SxI29ZYYkBX-ikDXseCDyx1MU,504
|
|
141
|
-
blurdev/resource/img/ide/paste.png,sha256=yP-MepjuaIfdnKuzmaQ0ZyTL4w0tq8F1ZHocOf5qSzg,910
|
|
142
|
-
blurdev/resource/img/ide/pdb_continue.png,sha256=_g6Pse8GpOCGn0d5dNHGEEnkauVUBdaQsCZJHSx4KFQ,470
|
|
143
|
-
blurdev/resource/img/ide/pdb_down.png,sha256=qTKeMqCVE9KtYH-6gLgBqEos3qXi3HExmCrDpl5-IAc,667
|
|
144
|
-
blurdev/resource/img/ide/pdb_next.png,sha256=DwZvHZNgOvmzj59GFx2MHpqMzzEgiqcf9D6UtvU142M,815
|
|
145
|
-
blurdev/resource/img/ide/pdb_step.png,sha256=rL1wA1PIRj03UVL6cSspQx7SqiJdrdt1Bo29IGsHoBs,690
|
|
146
|
-
blurdev/resource/img/ide/pdb_up.png,sha256=fMnbC_SI3buySKSaNzIuflPjZ3No9p_MTMzqjaxRGJE,628
|
|
147
|
-
blurdev/resource/img/ide/plus_minus.png,sha256=RYvQWy3xIr60Cub_qqy8ORByHx1nyj2_Le3A_A2BH9o,437
|
|
148
|
-
blurdev/resource/img/ide/preferences.png,sha256=1AJeLR4-n52nddB3ZkBXVARZTmtnGUa7X96eM4fbekA,1755
|
|
149
|
-
blurdev/resource/img/ide/project_find.png,sha256=DTt6rVIqdO_5sB1P14C2PIdoA5098Tn_eWsFV_ZzYQg,518
|
|
150
|
-
blurdev/resource/img/ide/python.png,sha256=WBK5P2ohplDoxfwfSrxGWdqbWCJxrF9L1O0rj36Wb8k,3437
|
|
151
|
-
blurdev/resource/img/ide/pyular.png,sha256=ZIGBSZcUyZWMC4u3pEnmWDHdboUakXTCLSC5axjwtv8,3776
|
|
152
|
-
blurdev/resource/img/ide/qt.png,sha256=EhjB1CLzj14waHxRO1WovIzlUjqGylXBzgoahnTuynQ,962
|
|
153
|
-
blurdev/resource/img/ide/quit.png,sha256=B7gTCVU_NyadZ_hq1kyEnb7CI8_hQ2558oi8jswY-K4,2446
|
|
154
|
-
blurdev/resource/img/ide/redo.png,sha256=ghA1uUhJegFxso4fXtOr8i6EOu0bVW_NFm2GlkrqNgA,1473
|
|
155
|
-
blurdev/resource/img/ide/refresh.png,sha256=1wdHTCiPW_tl8nmB2jzVqcd631NO74cwPCnQMe5DrG8,826
|
|
156
|
-
blurdev/resource/img/ide/remove.png,sha256=zufthgHeMWorlh09eLB8390QvQQmbTZs5ed7QlUT9RU,544
|
|
157
|
-
blurdev/resource/img/ide/ruler.png,sha256=AQvl2rrF2XlIuuI6SGYuAIE4_K3PPdltDGAHb1ddzM0,623
|
|
158
|
-
blurdev/resource/img/ide/run.png,sha256=Ot4HMhjSa-N4pmDsONOPmTx9UUZSduq65jHjj64dVeU,2099
|
|
159
|
-
blurdev/resource/img/ide/runall.png,sha256=_g6Pse8GpOCGn0d5dNHGEEnkauVUBdaQsCZJHSx4KFQ,470
|
|
160
|
-
blurdev/resource/img/ide/runallclear.png,sha256=om4on5DdCQCr92nWaISKATTq6RPb_ruN7Tirk0Lup6I,3063
|
|
161
|
-
blurdev/resource/img/ide/runselected.png,sha256=rOM8NHO6rWB2JZU9yB-hx_7DjB4iae-zwMyIXpwdaUM,665
|
|
162
|
-
blurdev/resource/img/ide/runselectedclear.png,sha256=IByVbuhELPoCt4Lb9Dtek-_oUAzQXmddLT3QPdvt338,2510
|
|
163
|
-
blurdev/resource/img/ide/save.png,sha256=HsduzyKFNnbPc2YsuD1qSFH8Xk4fFdcW_ApppVKWXQc,1537
|
|
164
|
-
blurdev/resource/img/ide/saveas.png,sha256=w6QIun8JuzbSFjdXSIZj1woAcTjoNFjmPGLlbNPezts,2270
|
|
165
|
-
blurdev/resource/img/ide/sdk.png,sha256=rY4614T2I-3XWYib7CzU74y5VsE3DTyMk7hxfy2xakA,2929
|
|
166
|
-
blurdev/resource/img/ide/separator.png,sha256=b5oRAf_YwD4A8ezYRQSOxqb2UMZ0wJeh1MEKf8MMGP8,134
|
|
167
|
-
blurdev/resource/img/ide/tabbed.png,sha256=zop84gr6AoEJ6M2TtzJDtjlIRb4rpUS50EAOxUxycvk,631
|
|
168
|
-
blurdev/resource/img/ide/tile.png,sha256=mCW-okGgMqwN2VtqcMuJX2QhUpvKW26GGJ6jMhGM_bo,432
|
|
169
|
-
blurdev/resource/img/ide/toolbar.png,sha256=owlnEEkOLr_zKPc9qwL903U5SchBiKd7-s_u4VLHp2o,1193
|
|
170
|
-
blurdev/resource/img/ide/undo.png,sha256=oriKJ_xHGbQGC73_ry2Q0Q4BEH4--R4VOBn4PnK1Ggk,1439
|
|
171
|
-
blurdev/resource/img/ide/uppercase.png,sha256=_DY3obyybQcVyIwNkCf8TaZ4JOeQOWUaToBqXsk7UyU,413
|
|
172
|
-
blurdev/resource/img/ide/view_as.png,sha256=nnhW-VVozASwiSvv6DkepG9CrIC0ZzJgQh4q7B_SzuM,977
|
|
173
|
-
blurdev/resource/img/ide/windowed.png,sha256=5D_JgUiThMscK9AoGzo0exy09Mx19kn6usyVJgnDVfQ,967
|
|
174
|
-
blurdev/resource/img/logger/about.png,sha256=k2nmYLv1PwXiAoOk2wcTkM4z6V-Df3Y4X3DkZbinrsQ,207
|
|
175
|
-
blurdev/resource/img/logger/arrow_forward.png,sha256=ufABTj_hUuwkP2f0Veo2xj24VeoJdIsmyuKT-o0AZMQ,118
|
|
176
|
-
blurdev/resource/img/logger/clear.png,sha256=HU4Jg1COKzadbcDCoXEtMtp_qZC7LVR9cAaKwX9YOQc,143
|
|
177
|
-
blurdev/resource/img/logger/close.png,sha256=lE3N4yEpcfyUjAThIbTPpT_L8MMQEz8Nb8Ihoem3exE,148
|
|
178
|
-
blurdev/resource/img/logger/debug_disabled.png,sha256=i4WcO79MxT3dOyXt8RmAMchSoP5ASgtQOEUYwrg6tT0,360
|
|
179
|
-
blurdev/resource/img/logger/debug_high.png,sha256=cd_ELwGNtyO4L6X-mvIEHgf9rdTxUeUXCuxs6X4sNMQ,377
|
|
180
|
-
blurdev/resource/img/logger/debug_low.png,sha256=-xAUhykqxL0YKXZ2YoWLVPu2A-0VYA07huuPItJpwTM,376
|
|
181
|
-
blurdev/resource/img/logger/debug_mid.png,sha256=d-qqcMiJO-x_esJg-R-iSCZzz5PLh6-kcqsm_2MyHVM,384
|
|
182
|
-
blurdev/resource/img/logger/down.png,sha256=7D2JZt1LLh12j-jkEU4yWFsNid_q35gNshDKbDMkFg8,123
|
|
183
|
-
blurdev/resource/img/logger/find.png,sha256=w5Rj_Gjm2OMfvob_JE5x7DRP52WI1cN76uUcg9AHh9w,251
|
|
184
|
-
blurdev/resource/img/logger/logging_critical.png,sha256=gKbRZuNr8OseqXdaQRHBrfeXZe2CnFIDq9KWM34SF2s,132
|
|
185
|
-
blurdev/resource/img/logger/logging_debug.png,sha256=QDA30zchJ3duXm9bOErDHarpNk1riAEIMpkNMvHwXKY,132
|
|
186
|
-
blurdev/resource/img/logger/logging_error.png,sha256=bO6t0PkUJ_0Z5gRnQwQbP5fi5d7REwgGFqjkZv_WYLk,132
|
|
187
|
-
blurdev/resource/img/logger/logging_info.png,sha256=63Bs0AgZ8j7ZEQFDpPbfrTNuHIaF6ycZ16KOKNrZqqw,132
|
|
188
|
-
blurdev/resource/img/logger/logging_not_set.png,sha256=Ti95uXV9aIDPx1pl2wIFls4LoRNYoK0fth2a6sWKks8,132
|
|
189
|
-
blurdev/resource/img/logger/logging_warning.png,sha256=jmb2W3DZgDBbhG8G_-UPyo7zWYAKzjLqicCIvuj-cdY,132
|
|
190
|
-
blurdev/resource/img/logger/next.png,sha256=ouMkw-f1NXjLpwOEb1DEuWoSA3V5Ppc6ALPB9wYy_SU,128
|
|
191
|
-
blurdev/resource/img/logger/play.png,sha256=r45f--0od1M4Qo-dDrSpUpCfaN0CarqrotRgdXciWoY,131
|
|
192
|
-
blurdev/resource/img/logger/playlist_play.png,sha256=ZLVk2dezjvdUWfOKsCjz7ilh7J3byrNoKcQJ95kYnGg,113
|
|
193
|
-
blurdev/resource/img/logger/previous.png,sha256=cxqXACn17drGekmqi9IQ08O3WJKjUlCZd9z1xx4m1s0,131
|
|
194
|
-
blurdev/resource/img/logger/return.png,sha256=H1isnyxuDN5vMoQ-Nr1qAE37_ZiO6wFNFi-iJk77c-I,134
|
|
195
|
-
blurdev/resource/img/logger/save.png,sha256=PYJbk7WA11g7P1a1nDphMtIGfvsUDbHeEcjkdyfmVaE,175
|
|
196
|
-
blurdev/resource/img/logger/subdirectory_arrow_right.png,sha256=_N19rL7n1IFq4AoMoiDMFZMwR2FYRVpV_3PdZM9Ktqw,142
|
|
197
|
-
blurdev/resource/img/logger/up.png,sha256=i7XpEVPofuIoPYxpnD3sNtnCkTEmsjf6XJXKu0praFE,115
|
|
198
|
-
blurdev/resource/img/preview/add.png,sha256=Gv-yE6j3Th89fp8pKuoZohywsKce8p0iMdvrViAanRk,1091
|
|
199
|
-
blurdev/resource/img/preview/brush.png,sha256=ivR0ssK7-qTOIJir6Y_I2gMRCbFpB0nCadhAmx4rTL8,1256
|
|
200
|
-
blurdev/resource/img/preview/delete.png,sha256=P_yQkuTaj1mTmZCFDBFj30rYchBNsW2JF8lMcVROyEw,1385
|
|
201
|
-
blurdev/resource/img/preview/delte.png,sha256=P_yQkuTaj1mTmZCFDBFj30rYchBNsW2JF8lMcVROyEw,1385
|
|
202
|
-
blurdev/resource/img/preview/fill.png,sha256=PAcP19dQuXakKoi7OODIdjEnT44yyR49QashKF-dey4,1319
|
|
203
|
-
blurdev/resource/img/preview/layers.png,sha256=Q9ZHN9OXqyUjjA3nykXON8X5uaGBz803-bhGBDkWJrM,741
|
|
204
|
-
blurdev/resource/img/preview/media.png,sha256=ZVn_EeRxJqqbxO3fm3M_LRZAG6PtjD_Husaix_jNNxY,404
|
|
205
|
-
blurdev/resource/img/preview/navigate.png,sha256=qH8WV4vbkN1-b7wUA6TPUedjsPAo9YMcI89cLqahL10,3103
|
|
206
|
-
blurdev/resource/img/preview/pencil.png,sha256=kzGOwRsXmi6FDDY1dPCIZrf1MLf7NEWPtT9Sv475sHQ,861
|
|
207
|
-
blurdev/resource/img/preview/select.png,sha256=u8cPvGW-8ukWL_RPHDL04-MWUhdkbnwC7EQUm0y0TE0,522
|
|
208
|
-
blurdev/resource/img/preview/type.png,sha256=yshUYXRAb_p5jiGf4dlkznTXIxqLPFZOHwSG_eaTrI4,893
|
|
209
|
-
blurdev/resource/img/preview/visible.png,sha256=L9vvh85Hu0TWcvAmm1lEavhMN9ZL0FIY8k7pOOgRAJE,790
|
|
210
|
-
blurdev/resource/img/richtext/font_bold.png,sha256=abz4vYTIrI6x9ZcQUgaSqsxvCmtOULhr4uqXC9VDjq8,1029
|
|
211
|
-
blurdev/resource/img/richtext/font_italic.png,sha256=ZScX7fg9uF7J_ovywxtMMeWU9GA6ybsXT2AKDqODQj8,807
|
|
212
|
-
blurdev/resource/img/richtext/link_image.png,sha256=rv-fgVJsCc8Ej4nARpbo2AiznC1j5hWZXjw0sT80N7g,832
|
|
213
|
-
blurdev/resource/img/richtext/spell_check.png,sha256=b0Wx9e3z34SeIq2AAlqCgGKTD-akghixtvicXpZGg-0,559
|
|
214
|
-
blurdev/resource/img/richtext/unordered_list.png,sha256=JWhQlUEuppB6oLFJgOwAiDhiV-IUukpU4yyAwpTch-U,929
|
|
215
|
-
blurdev/resource/lang/python.json,sha256=R6tr08PtCPfinbijNtINFX-yPlolHImiD5ACeypdmr0,346
|
|
216
|
-
blurdev/resource/sdk/blurdev.sdk,sha256=7LNDlgLEIBq1ONCTqn5BGHGhDPGIAJ-vqe9DV9fwIKA,69
|
|
217
|
-
blurdev/resource/softimage/BlurApplication.dll,sha256=-LE1E_XPH0Eb_uUGLqsVrXhZvwieMd4_GyvTqcPZLDs,8704
|
|
218
|
-
blurdev/resource/softimage/BlurApplication64.dll,sha256=rCBirV73x2VrivNWq2oshUI-FR9ZvAANEj21FtVzG6E,10240
|
|
219
|
-
blurdev/resource/stylesheet/Carbon.css,sha256=b2q-oDVOf97kMoJRSRrPBZOVHyIVIqd0HnkZes8HEbc,760
|
|
220
|
-
blurdev/resource/stylesheet/Dark.css,sha256=tAtVzxTuRoCojz9S_zXQGmmqamkqEe7-lT_V3aKtl5k,2700
|
|
221
|
-
blurdev/resource/stylesheet/logger/Bright.css,sha256=C9XyQ8s3_FMCZgFlvnG0DMXyT9VlkUiSCn3ssawZJ28,2459
|
|
222
|
-
blurdev/resource/stylesheet/logger/Dark.css,sha256=_QB8Yyhxmd60Dnwu3pP37j_fEtVgJ6Rbbdcof_kPBkU,2741
|
|
223
|
-
blurdev/resource/templ/py_comment.templ,sha256=H-Xcx3yDLrSJnIdLDsxyjnqRwADfFmNZhMSJaQF2gME,81
|
|
224
|
-
blurdev/resource/templ/py_debug_raise_error.templ,sha256=f-kE2FjQjDOY0bzU7InhQEVayIcnKUUaEpcWl6vDLNk,164
|
|
225
|
-
blurdev/resource/templ/py_doc_string.templ,sha256=PUgA12MhmehRdzYI20uKisWwTU0bgI1-heLe0TfcqUg,233
|
|
226
|
-
blurdev/resource/templ/py_header.templ,sha256=AgYfVLLxHkIBWcyWy9dCd3GpsNFd6Xo_i8mfveq3wio,222
|
|
227
|
-
blurdev/resource/templ/py_line_comment.templ,sha256=Yfllg840YjR7Txg76J1ox4fAzjoL9fWK3BeKigHWt54,27
|
|
228
|
-
blurdev/resource/templ/py_log_to_file.templ,sha256=cDVa_ZpTL-HCeyZxvJt9EESuJ7vj7XF-ioHHCkgWtlk,648
|
|
229
|
-
blurdev/resource/templ/py_module_path.templ,sha256=7SCuULX89tgmeqCI1mGf5PPnIGzhm4QeVr_kyHaAt3A,63
|
|
230
|
-
blurdev/resource/templ/py_pyqt_core.templ,sha256=axVE7-qACCTgf3oL4-OgT5Pe7HIrJxjJ4JXBiiWRS14,26
|
|
231
|
-
blurdev/resource/templ/py_pyqt_gui.templ,sha256=LdH1jb_9YWYtoTiytNqfilNJRC55aBbqyCkN2Tny2Sg,25
|
|
232
|
-
blurdev/resource/templ/py_splashscreen.templ,sha256=Vqo1HDuK0cTLPYNmbdMpCWVOQJruSNLHCnTrb1b46HY,219
|
|
233
|
-
blurdev/resource/templ/py_testing_note.templ,sha256=c6Kucwjo0ZTQj7umFnKXdy3D0xsYmcuAddNc4Tza2qM,66
|
|
234
|
-
blurdev/resource/templ/py_testing_note_end.templ,sha256=qHN1TdCxlKpo6ePTl9em4EagUDKKjrBuq-f2Kboq97A,66
|
|
235
|
-
blurdev/runtimes/__init__.py,sha256=Jzgj5lszBc63ldKPX0mkNCdC9jXHvmVkfaA24RO1qUQ,133
|
|
236
|
-
blurdev/runtimes/logger.py,sha256=My711pQ4txBvS9BLr1seY6Wxn2Cxh4pduhZOqZKU0KM,1285
|
|
237
|
-
blurdev/scintilla/__init__.py,sha256=Kc_fZTGFbxghnB-xGKWjmxYr8x0Q8we27EVl2pi2BGg,685
|
|
238
|
-
blurdev/scintilla/delayable_engine.py,sha256=srgs_D5uFvqL3aubdfDQxx-X2Z6lXvcX-tmqvFXV0yU,11534
|
|
239
|
-
blurdev/scintilla/documenteditor.py,sha256=qfbEgmiHG88vP5P4JewcjUKF0FnPDsLb6Wfv8OJgtqw,83200
|
|
240
|
-
blurdev/scintilla/finddialog.py,sha256=0UFXIh2h4XKncDze78tYdQIRo5SzfVXVpifJyKOqb2s,2696
|
|
241
|
-
blurdev/scintilla/delayables/__init__.py,sha256=pa7aFymg730XhlTbox_8Gl5hAOsF_rELVZQwCtLijZs,365
|
|
242
|
-
blurdev/scintilla/delayables/base.py,sha256=tv0ogvZQvUbyiAZJYkZr-m8hsPf3v64oT9ZLz3AzjfE,2814
|
|
243
|
-
blurdev/scintilla/delayables/smart_highlight.py,sha256=KXT-YztfmRanY3swRhLIjFutPN04Xt-6igGn3JAQk3w,3550
|
|
244
|
-
blurdev/scintilla/delayables/spell_check.py,sha256=3ahq10SQENEhtSQguCBeUO9Q7RXiAGN_Gm_Ekr-xCT0,7050
|
|
245
|
-
blurdev/scintilla/lang/__init__.py,sha256=a50-2-iAGRdH4LI11pN66brXFZSw-LZSDWULseQGFIE,2047
|
|
246
|
-
blurdev/scintilla/lang/language.py,sha256=6cWmlc56Ng8w-Y0JPRG0cxHDY3h3O0De2blWMNqGqCc,7340
|
|
247
|
-
blurdev/scintilla/lang/config/bash.ini,sha256=rpYW6jQLagCQyFOteEkzpw8jq3Q1fMxGZFr1Mzb3-nE,165
|
|
248
|
-
blurdev/scintilla/lang/config/batch.ini,sha256=bEx5t6koZA7GvqeP-MDGHFXtrzgWShK0eS0t1KyNnkQ,166
|
|
249
|
-
blurdev/scintilla/lang/config/cpp.ini,sha256=tvO3zMZtRVu9DuQFSlmFPBQi1GHVaTRdPjOBo7EPW8s,281
|
|
250
|
-
blurdev/scintilla/lang/config/css.ini,sha256=OETDR_qQvuiPrBf4chuAEHXq_1_EzCyLZ0RtFNJhv4k,232
|
|
251
|
-
blurdev/scintilla/lang/config/eyeonscript.ini,sha256=I7tLACpgTwk7YTSNc3GcS1rPmXaYH4YstsLqYKrpUYg,238
|
|
252
|
-
blurdev/scintilla/lang/config/html.ini,sha256=qEX_vg93oht9X3KeJ-XQf8Qcj16V8LSSTSdijspb_Z8,456
|
|
253
|
-
blurdev/scintilla/lang/config/javascript.ini,sha256=tM1BlkZvMo3oOEYv2vXCpVpFjiglLod5CALLB0q0744,490
|
|
254
|
-
blurdev/scintilla/lang/config/lua.ini,sha256=4821kNbg9IStr5OepmpBxfd9pFH3luvwnMry5KMCi2g,183
|
|
255
|
-
blurdev/scintilla/lang/config/maxscript.ini,sha256=4M96bK40ROrWRx_ZyVxLufC1VmiatNfgItzvlZpB6m4,387
|
|
256
|
-
blurdev/scintilla/lang/config/mel.ini,sha256=jnWZTfn8FaMYKnzrwwFwDhj1DVLltJ0H6xY6NDLP3O0,263
|
|
257
|
-
blurdev/scintilla/lang/config/mu.ini,sha256=6By1fNJtvUR4X5vGMh-QvnTxYG75HLE0p89WuzocD8w,380
|
|
258
|
-
blurdev/scintilla/lang/config/nsi.ini,sha256=FtVzWFjh_cTBUQsh4K2enVcGQarE2ZFDMIKQRmgNEwM,262
|
|
259
|
-
blurdev/scintilla/lang/config/perl.ini,sha256=SxfDrwtNkqF4bx1DCzlc01KrT-4cVaCWSr0Cy62lw2I,229
|
|
260
|
-
blurdev/scintilla/lang/config/puppet.ini,sha256=NETs0awjh4zdyIoPdwKlrIOCNVq4H94tGb5E68siwdE,229
|
|
261
|
-
blurdev/scintilla/lang/config/python.ini,sha256=OeqT05bn0PMl0aO2agBm3R77tu_qw8_BVJXa9cQaxts,499
|
|
262
|
-
blurdev/scintilla/lang/config/ruby.ini,sha256=hTntE-eJKvy2ZgHvdNIRdkTDd8_99YlEbynCx7FciJw,228
|
|
263
|
-
blurdev/scintilla/lang/config/sql.ini,sha256=6E7U3lK2-11NhtB1SbJ_boYrp61uK6s62MFm3i0JBcQ,85
|
|
264
|
-
blurdev/scintilla/lang/config/xml.ini,sha256=eKhm14pCn468DFtPJdIHq1QRBu7IsUgjaetxqD6YVaY,488
|
|
265
|
-
blurdev/scintilla/lang/config/yaml.ini,sha256=Y_E7b3S6k1LWoAjTnm8Z9p4Pu4pcT_IyQM70ma-E5Yc,240
|
|
266
|
-
blurdev/scintilla/lexers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
|
-
blurdev/scintilla/lexers/cpplexer.py,sha256=CyLbiR_bl2JesHXiKPJcN9049gvrK_M4M3MrIDAc_E4,932
|
|
268
|
-
blurdev/scintilla/lexers/javascriptlexer.py,sha256=Kx5S8rNU3ZkNjGuN7dcKKnxKnitAYw1XYsvbVmWoeqs,1087
|
|
269
|
-
blurdev/scintilla/lexers/maxscriptlexer.py,sha256=M_FqoHs3vqE3MX-CjrCXG3JivfcaBs1DFuhO3S2bD7U,9205
|
|
270
|
-
blurdev/scintilla/lexers/mellexer.py,sha256=yjJSxINheyrS0q1DAklaHuHT3bk-q-phe7Vv1hhmsmo,27073
|
|
271
|
-
blurdev/scintilla/lexers/mulexer.py,sha256=3DrWW6IbRIBg_1ai0X6kjz4FM_c19q6GnGx4QqHKp6w,1188
|
|
272
|
-
blurdev/scintilla/lexers/pythonlexer.py,sha256=7vTQu_AERfx1jMO3TeZMvaksvkt7lE8XHmJNH0JhfzU,1911
|
|
273
|
-
blurdev/scintilla/ui/finddialog.ui,sha256=oy_gncEB8eOJi0_3m_Cej-NBpdHDrs47KyEo9FVQ8Z4,4208
|
|
274
|
-
blurdev/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
|
-
blurdev/utils/error.py,sha256=7FZgKGwjKS-Gw04oaOr3eMYE50yPh--sJfDRSAe6Vqo,12915
|
|
276
|
-
PrEditor-0.0.0.dev1.dist-info/METADATA,sha256=BPn09DOrRtphO0LP1aCKvWewmdYbT6AZte547xiywuE,2002
|
|
277
|
-
PrEditor-0.0.0.dev1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
278
|
-
PrEditor-0.0.0.dev1.dist-info/top_level.txt,sha256=kh5qXNrMN9wE94emCFai0wNNYp0nTZ8JHEcvCbdZVEQ,8
|
|
279
|
-
PrEditor-0.0.0.dev1.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
blurdev
|
blurdev/__init__.py
DELETED
|
@@ -1,356 +0,0 @@
|
|
|
1
|
-
""" The blurdev package is the core library methods for tools development at Blur Studio
|
|
2
|
-
|
|
3
|
-
The blurdev package is also the primary environment manager for blur tools.
|
|
4
|
-
It contains useful sub-packages for various tasks, such as media encoding,
|
|
5
|
-
and includes a Qt gui library.
|
|
6
|
-
|
|
7
|
-
"""
|
|
8
|
-
|
|
9
|
-
from __future__ import absolute_import
|
|
10
|
-
from __future__ import print_function
|
|
11
|
-
|
|
12
|
-
# Override the base logging class.
|
|
13
|
-
import blurdev.logger
|
|
14
|
-
|
|
15
|
-
blurdev.logger.patchLogger()
|
|
16
|
-
|
|
17
|
-
# this variable will be set when loading information for documentation purposes
|
|
18
|
-
__DOCMODE__ = False
|
|
19
|
-
|
|
20
|
-
# track the install path
|
|
21
|
-
import os # noqa: E402
|
|
22
|
-
import sys # noqa: E402
|
|
23
|
-
import copy # noqa: E402
|
|
24
|
-
import logging # noqa: E402
|
|
25
|
-
import weakref # noqa: E402
|
|
26
|
-
|
|
27
|
-
from Qt.QtWidgets import ( # noqa: E402
|
|
28
|
-
QDialog,
|
|
29
|
-
QDockWidget,
|
|
30
|
-
QMainWindow,
|
|
31
|
-
QVBoxLayout,
|
|
32
|
-
)
|
|
33
|
-
from Qt.QtCore import Qt # noqa: E402
|
|
34
|
-
|
|
35
|
-
from .version import version as __version__ # noqa: E402,F401
|
|
36
|
-
import blurdev.settings # noqa: E402
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
installPath = os.path.dirname(__file__)
|
|
40
|
-
"""Stores the full filepath of the blurdev installation directory."""
|
|
41
|
-
|
|
42
|
-
application = None # create a managed QApplication
|
|
43
|
-
_appHasExec = False
|
|
44
|
-
"""
|
|
45
|
-
The blurdev managed QApplication returned from :meth:`Core.init` as part
|
|
46
|
-
of the :mod:`blurdev.cores` system.
|
|
47
|
-
"""
|
|
48
|
-
|
|
49
|
-
core = None # create a managed Core instance
|
|
50
|
-
"""
|
|
51
|
-
The blurdev managed :class:`Core` object from the :mod:`blurdev.cores` module.
|
|
52
|
-
"""
|
|
53
|
-
# Weakref.ref does not accept None, and None is not callable. Passing the lambda
|
|
54
|
-
# ensures the same functionality even if no tool has been launched yet.
|
|
55
|
-
lastLaunched = weakref.ref(lambda: None)
|
|
56
|
-
"""
|
|
57
|
-
This is set any time blurdev.launch is called. It contains the Dialog or Window
|
|
58
|
-
object. This is for debugging, and there is no guarantee that the object has not
|
|
59
|
-
been deleted.
|
|
60
|
-
"""
|
|
61
|
-
|
|
62
|
-
# To show a splashscreen as soon as possible, the blurdev.protocols system
|
|
63
|
-
# may store a splashscreen here. This will be None unless the protocol
|
|
64
|
-
# system sets it, and it will be cleared the first time blurdev.launch
|
|
65
|
-
# is called. blurdev.gui.splashscreen.randomSplashScreen checks this value
|
|
66
|
-
protocolSplash = None
|
|
67
|
-
|
|
68
|
-
# Create the root blurdev module logging object.
|
|
69
|
-
_logger = logging.getLogger(__name__)
|
|
70
|
-
|
|
71
|
-
# Add a NullHandler to suppress the "No handlers could be found for _logger"
|
|
72
|
-
# warnings from being printed to stderr. Studiomax and possibly other DCC's
|
|
73
|
-
# tend to treat any text written to stderr as a error when running headless.
|
|
74
|
-
# We also don't want this warning showing up in production anyway.
|
|
75
|
-
_logger.addHandler(logging.NullHandler())
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
def appUserModelID():
|
|
79
|
-
"""Returns the current Windows 7+ app user model id used for taskbar grouping."""
|
|
80
|
-
import ctypes
|
|
81
|
-
from ctypes import wintypes
|
|
82
|
-
|
|
83
|
-
lpBuffer = wintypes.LPWSTR()
|
|
84
|
-
AppUserModelID = ctypes.windll.shell32.GetCurrentProcessExplicitAppUserModelID
|
|
85
|
-
AppUserModelID(ctypes.cast(ctypes.byref(lpBuffer), wintypes.LPWSTR))
|
|
86
|
-
appid = lpBuffer.value
|
|
87
|
-
ctypes.windll.kernel32.LocalFree(lpBuffer)
|
|
88
|
-
return appid
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
def init():
|
|
92
|
-
os.environ['BDEV_EMAILINFO_BLURDEV_VERSION'] = blurdev.__version__
|
|
93
|
-
pythonw_print_bugfix()
|
|
94
|
-
blurdev.settings.init()
|
|
95
|
-
global core, application
|
|
96
|
-
# create the core and application
|
|
97
|
-
if not core:
|
|
98
|
-
from blurdev.cores import Core
|
|
99
|
-
|
|
100
|
-
objectName = None
|
|
101
|
-
_exe = os.path.basename(sys.executable).lower()
|
|
102
|
-
# Treat designer as a seperate core so it gets its own prefrences.
|
|
103
|
-
if 'designer' in _exe:
|
|
104
|
-
objectName = 'designer'
|
|
105
|
-
elif 'assfreezer' in _exe:
|
|
106
|
-
objectName = 'assfreezer'
|
|
107
|
-
core = Core(objectName=objectName)
|
|
108
|
-
application = core.init()
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
def launch(
|
|
112
|
-
ctor,
|
|
113
|
-
modal=False,
|
|
114
|
-
coreName='external',
|
|
115
|
-
instance=False,
|
|
116
|
-
args=None,
|
|
117
|
-
kwargs=None,
|
|
118
|
-
splash=None,
|
|
119
|
-
wrapClass=None,
|
|
120
|
-
dockWidgetArea=Qt.RightDockWidgetArea,
|
|
121
|
-
):
|
|
122
|
-
"""
|
|
123
|
-
This method is used to create an instance of a widget (dialog/window) to
|
|
124
|
-
be run inside the blurdev system. Using this function call, blurdev will
|
|
125
|
-
determine what the application is and how the window should be
|
|
126
|
-
instantiated, this way if a tool is run as a standalone, a new
|
|
127
|
-
application instance will be created, otherwise it will run on top
|
|
128
|
-
of a currently running application.
|
|
129
|
-
|
|
130
|
-
:param ctor: callable object that will return a widget instance, usually
|
|
131
|
-
a :class:`QWidget` or :class:`QDialog` or a function that
|
|
132
|
-
returns an instance of one.
|
|
133
|
-
:param modal: If True, widget will be created as a modal widget (ie. blocks
|
|
134
|
-
access to calling gui elements).
|
|
135
|
-
:param coreName: string to give to the core if the application is
|
|
136
|
-
going to be rooted under this widget
|
|
137
|
-
:param instance: If subclassed from blurdev.gui.Window or Dialog
|
|
138
|
-
it will show the existing instance instead of
|
|
139
|
-
creating a new instance. Ignored if modal == True.
|
|
140
|
-
:param kwargs: A dict of keyword arguments to pass to the widget initialization
|
|
141
|
-
:param wrapClass: launch() requires a subclass of QDialog, QMainWindow or DockWidget
|
|
142
|
-
to work correctly. If you pass in a widget, it will automatically get wrapped in
|
|
143
|
-
a Dialog, unless you specify a class using this argument, in which case it will
|
|
144
|
-
be wrapped by that.
|
|
145
|
-
:param dockWidgetArea: If ctor is a QDockWidget
|
|
146
|
-
"""
|
|
147
|
-
global lastLaunched
|
|
148
|
-
global protocolSplash
|
|
149
|
-
|
|
150
|
-
if application:
|
|
151
|
-
application.setStyle(core.defaultStyle())
|
|
152
|
-
|
|
153
|
-
if instance and hasattr(ctor, 'instance') and not modal:
|
|
154
|
-
# use the instance method if requested
|
|
155
|
-
widget = ctor.instance()
|
|
156
|
-
else:
|
|
157
|
-
# Handle any url arguments that were passed in using the environment.
|
|
158
|
-
urlArgs = os.environ.pop('BDEV_URL_ARGS', None)
|
|
159
|
-
oldkwargs = copy.copy(kwargs)
|
|
160
|
-
if urlArgs:
|
|
161
|
-
import cPickle
|
|
162
|
-
|
|
163
|
-
urlArgs = cPickle.loads(urlArgs)
|
|
164
|
-
if kwargs is None:
|
|
165
|
-
kwargs = urlArgs
|
|
166
|
-
else:
|
|
167
|
-
kwargs.update(urlArgs)
|
|
168
|
-
|
|
169
|
-
def launchWidget(ctor, args, kwargs):
|
|
170
|
-
# create the output instance from the class
|
|
171
|
-
# If args or kwargs are defined, use those. NOTE that if you pass any
|
|
172
|
-
# args or kwargs, you will also have to supply the parent, which
|
|
173
|
-
# blurdev.launch previously had always set to None.
|
|
174
|
-
if args or kwargs:
|
|
175
|
-
if args is None:
|
|
176
|
-
args = []
|
|
177
|
-
if kwargs is None:
|
|
178
|
-
kwargs = {}
|
|
179
|
-
widget = ctor(*args, **kwargs)
|
|
180
|
-
else:
|
|
181
|
-
global core
|
|
182
|
-
widget = ctor(core.rootWindow())
|
|
183
|
-
return widget
|
|
184
|
-
|
|
185
|
-
try:
|
|
186
|
-
widget = launchWidget(ctor, args, kwargs)
|
|
187
|
-
except TypeError:
|
|
188
|
-
# If url arguments are passed in that the tool doesn't accept, remove them.
|
|
189
|
-
widget = launchWidget(ctor, args, oldkwargs)
|
|
190
|
-
|
|
191
|
-
# Attach the protocolSplash.finish to the widget we are creating and
|
|
192
|
-
# remove the reference so we don't keep using it.
|
|
193
|
-
if protocolSplash is not None:
|
|
194
|
-
protocolSplash.finish(widget)
|
|
195
|
-
protocolSplash = None
|
|
196
|
-
|
|
197
|
-
if splash:
|
|
198
|
-
splash.finish(widget)
|
|
199
|
-
|
|
200
|
-
# If the passed in ctor is not a QDialog, QMainWindow or QDockWidget, wrap it in a
|
|
201
|
-
# dialog so that it displays correctly. It will get garbage collected and close
|
|
202
|
-
# otherwise
|
|
203
|
-
if not isinstance(widget, (QMainWindow, QDialog, QDockWidget)):
|
|
204
|
-
if wrapClass is not None:
|
|
205
|
-
dlg = wrapClass(None)
|
|
206
|
-
else:
|
|
207
|
-
from blurdev.gui.dialog import Dialog
|
|
208
|
-
|
|
209
|
-
dlg = Dialog(None)
|
|
210
|
-
layout = QVBoxLayout()
|
|
211
|
-
layout.setContentsMargins(0, 0, 0, 0)
|
|
212
|
-
dlg.setLayout(layout)
|
|
213
|
-
layout.addWidget(widget)
|
|
214
|
-
dlg.setWindowTitle(widget.windowTitle())
|
|
215
|
-
dlg.setWindowIcon(widget.windowIcon())
|
|
216
|
-
widget = dlg
|
|
217
|
-
|
|
218
|
-
# Store the last launched tool so a developer can easily find it to experiment with.
|
|
219
|
-
lastLaunched = weakref.ref(widget)
|
|
220
|
-
# check to see if the tool is running modally and return the result
|
|
221
|
-
if modal:
|
|
222
|
-
widget.exec_()
|
|
223
|
-
else:
|
|
224
|
-
if isinstance(widget, QDockWidget) and widget.parent() and dockWidgetArea:
|
|
225
|
-
widget.parent().addDockWidget(dockWidgetArea, widget)
|
|
226
|
-
widget.show()
|
|
227
|
-
if instance:
|
|
228
|
-
widget.raise_()
|
|
229
|
-
widget.setWindowState(
|
|
230
|
-
widget.windowState() & ~Qt.WindowMinimized | Qt.WindowActive
|
|
231
|
-
)
|
|
232
|
-
# run the application if this item controls it and it hasnt been run before
|
|
233
|
-
startApplication(widget.windowIcon())
|
|
234
|
-
return widget
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
def startApplication(windowIcon=None):
|
|
238
|
-
"""Starts blurdev.application if it hasn't already been started."""
|
|
239
|
-
global _appHasExec
|
|
240
|
-
if application and not _appHasExec:
|
|
241
|
-
if windowIcon:
|
|
242
|
-
application.setWindowIcon(windowIcon)
|
|
243
|
-
_appHasExec = True
|
|
244
|
-
application.exec_()
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
def prefPath(relpath, coreName=''):
|
|
248
|
-
# use the core
|
|
249
|
-
if not coreName and core:
|
|
250
|
-
coreName = core.objectName()
|
|
251
|
-
basepath = os.path.join(
|
|
252
|
-
blurdev.osystem.expandvars(os.environ['BDEV_PATH_PREFS']), 'app_%s/' % coreName
|
|
253
|
-
)
|
|
254
|
-
return os.path.normpath(os.path.join(basepath, relpath))
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
def pythonw_print_bugfix():
|
|
258
|
-
"""
|
|
259
|
-
When running pythonw print statements and file handles tend to have problems
|
|
260
|
-
so, if its pythonw and stderr and stdout haven't been redirected, redirect them
|
|
261
|
-
to os.devnull.
|
|
262
|
-
"""
|
|
263
|
-
if os.path.basename(sys.executable) == 'pythonw.exe':
|
|
264
|
-
if sys.stdout == sys.__stdout__:
|
|
265
|
-
sys.stdout = open(os.devnull, 'w')
|
|
266
|
-
if sys.stderr == sys.__stderr__:
|
|
267
|
-
sys.stderr = open(os.devnull, 'w')
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
def relativePath(path, additional=''):
|
|
271
|
-
"""
|
|
272
|
-
Replaces the last element in the path with the passed in additional path.
|
|
273
|
-
:param path: Source path. Generally a file name.
|
|
274
|
-
:param additional: Additional folder/file path appended to the path.
|
|
275
|
-
:return str: The modified path
|
|
276
|
-
"""
|
|
277
|
-
return os.path.join(os.path.dirname(path), additional)
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
def resourcePath(relpath=''):
|
|
281
|
-
"""
|
|
282
|
-
Returns the full path to the file inside the blurdev\resource folder
|
|
283
|
-
:param relpath: The additional path added to the blurdev\resource folder path.
|
|
284
|
-
:return str: The modified path
|
|
285
|
-
"""
|
|
286
|
-
return os.path.join(relativePath(__file__), 'resource', relpath)
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
def setAppUserModelID(appId, prefix='Blur'):
|
|
290
|
-
"""Controls Windows taskbar grouping.
|
|
291
|
-
|
|
292
|
-
Specifies a Explicit App User Model ID that Windows 7+ uses to control grouping of
|
|
293
|
-
windows on the taskbar. This must be set before any ui is displayed. The best place
|
|
294
|
-
to call it is in the first widget to be displayed __init__ method.
|
|
295
|
-
|
|
296
|
-
See :py:meth:`blurdev.osystem.set_app_id_for_shortcut` to set the app id on a
|
|
297
|
-
windows shortcut.
|
|
298
|
-
|
|
299
|
-
Args:
|
|
300
|
-
appId (str): The id of the application. Should use full camel-case.
|
|
301
|
-
`http://msdn.microsoft.com/en-us/library/dd378459%28v=vs.85%29.aspx#how`_
|
|
302
|
-
|
|
303
|
-
prefix (str, optional): The prefix attached to the id. For a blur tool called
|
|
304
|
-
fooBar, the associated appId should be "Blur.FooBar". Defaults to "Blur".
|
|
305
|
-
"""
|
|
306
|
-
|
|
307
|
-
if blurdev.settings.OS_TYPE != 'Windows':
|
|
308
|
-
return False
|
|
309
|
-
|
|
310
|
-
# If this function is run inside other applications, it can cause(unparented) new
|
|
311
|
-
# sub windows to parent with this id instead of the parent application in windows.
|
|
312
|
-
# To test: Create a window calling setAppUserModelID before showing it. Use a unique
|
|
313
|
-
# appId. Then create a unparented window and show it. The unparented window will
|
|
314
|
-
# appear in a different taskbar group.
|
|
315
|
-
if not blurdev.core.useAppUserModelID():
|
|
316
|
-
return False
|
|
317
|
-
|
|
318
|
-
# https://stackoverflow.com/a/27872625
|
|
319
|
-
import ctypes
|
|
320
|
-
|
|
321
|
-
myappid = u'%s.%s' % (prefix, appId)
|
|
322
|
-
return not ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(myappid)
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
def signalInspector(item, prefix='----', ignore=None):
|
|
326
|
-
"""Connects to all signals of the provided item, and prints the name of
|
|
327
|
-
each signal. When that signal is activated it will print the prefix,
|
|
328
|
-
the name of the signal, and any arguments passed. These connections
|
|
329
|
-
will persist for the life of the object.
|
|
330
|
-
|
|
331
|
-
Args:
|
|
332
|
-
item (Qt.QtCore.QObject): QObject to inspect signals on.
|
|
333
|
-
prefix (str, optional): The prefix to display when a signal is emitted.
|
|
334
|
-
ignore (list, optional): A list of signal names to ignore
|
|
335
|
-
"""
|
|
336
|
-
|
|
337
|
-
def create(attr):
|
|
338
|
-
def handler(*args, **kwargs):
|
|
339
|
-
print(prefix, 'Signal:', attr, 'ARGS:', args, kwargs)
|
|
340
|
-
|
|
341
|
-
return handler
|
|
342
|
-
|
|
343
|
-
if ignore is None:
|
|
344
|
-
ignore = []
|
|
345
|
-
|
|
346
|
-
for attr in dir(item):
|
|
347
|
-
if (
|
|
348
|
-
type(getattr(item, attr)).__name__ == 'pyqtBoundSignal'
|
|
349
|
-
and attr not in ignore
|
|
350
|
-
):
|
|
351
|
-
print(attr)
|
|
352
|
-
getattr(item, attr).connect(create(attr))
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
# initialize the core
|
|
356
|
-
init()
|