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.

Files changed (158) hide show
  1. preditor/__init__.py +322 -0
  2. preditor/__main__.py +13 -0
  3. preditor/about_module.py +161 -0
  4. preditor/cli.py +192 -0
  5. preditor/config.py +302 -0
  6. preditor/contexts.py +119 -0
  7. preditor/cores/__init__.py +0 -0
  8. preditor/cores/core.py +20 -0
  9. preditor/dccs/maya/PrEditor_maya.mod +2 -0
  10. preditor/dccs/maya/plug-ins/PrEditor_maya.py +110 -0
  11. preditor/debug.py +144 -0
  12. preditor/delayable_engine/__init__.py +302 -0
  13. preditor/delayable_engine/delayables.py +85 -0
  14. preditor/enum.py +728 -0
  15. preditor/excepthooks.py +131 -0
  16. preditor/gui/__init__.py +93 -0
  17. preditor/gui/app.py +160 -0
  18. preditor/gui/codehighlighter.py +209 -0
  19. preditor/gui/completer.py +226 -0
  20. preditor/gui/console.py +867 -0
  21. preditor/gui/dialog.py +178 -0
  22. preditor/gui/drag_tab_bar.py +190 -0
  23. preditor/gui/editor_chooser.py +57 -0
  24. preditor/gui/errordialog.py +68 -0
  25. preditor/gui/find_files.py +125 -0
  26. preditor/gui/fuzzy_search/__init__.py +0 -0
  27. preditor/gui/fuzzy_search/fuzzy_search.py +93 -0
  28. preditor/gui/group_tab_widget/__init__.py +325 -0
  29. preditor/gui/group_tab_widget/grouped_tab_menu.py +35 -0
  30. preditor/gui/group_tab_widget/grouped_tab_models.py +108 -0
  31. preditor/gui/group_tab_widget/grouped_tab_widget.py +78 -0
  32. preditor/gui/group_tab_widget/one_tab_widget.py +54 -0
  33. preditor/gui/level_buttons.py +343 -0
  34. preditor/gui/logger_window_handler.py +48 -0
  35. preditor/gui/logger_window_plugin.py +32 -0
  36. preditor/gui/loggerwindow.py +1385 -0
  37. preditor/gui/newtabwidget.py +69 -0
  38. preditor/gui/set_text_editor_path_dialog.py +59 -0
  39. preditor/gui/status_label.py +99 -0
  40. preditor/gui/suggest_path_quotes_dialog.py +50 -0
  41. preditor/gui/ui/editor_chooser.ui +93 -0
  42. preditor/gui/ui/errordialog.ui +74 -0
  43. preditor/gui/ui/find_files.ui +140 -0
  44. preditor/gui/ui/loggerwindow.ui +1105 -0
  45. preditor/gui/ui/set_text_editor_path_dialog.ui +189 -0
  46. preditor/gui/ui/suggest_path_quotes_dialog.ui +225 -0
  47. preditor/gui/window.py +161 -0
  48. preditor/gui/workbox_mixin.py +389 -0
  49. preditor/gui/workbox_text_edit.py +137 -0
  50. preditor/gui/workboxwidget.py +298 -0
  51. preditor/logging_config.py +52 -0
  52. preditor/osystem.py +401 -0
  53. preditor/plugins.py +118 -0
  54. preditor/prefs.py +74 -0
  55. preditor/resource/environment_variables.html +26 -0
  56. preditor/resource/error_mail.html +85 -0
  57. preditor/resource/error_mail_inline.html +41 -0
  58. preditor/resource/img/README.md +17 -0
  59. preditor/resource/img/arrow_forward.png +0 -0
  60. preditor/resource/img/check-bold.png +0 -0
  61. preditor/resource/img/chevron-down.png +0 -0
  62. preditor/resource/img/chevron-up.png +0 -0
  63. preditor/resource/img/close-thick.png +0 -0
  64. preditor/resource/img/comment-edit.png +0 -0
  65. preditor/resource/img/content-copy.png +0 -0
  66. preditor/resource/img/content-cut.png +0 -0
  67. preditor/resource/img/content-duplicate.png +0 -0
  68. preditor/resource/img/content-paste.png +0 -0
  69. preditor/resource/img/content-save.png +0 -0
  70. preditor/resource/img/debug_disabled.png +0 -0
  71. preditor/resource/img/eye-check.png +0 -0
  72. preditor/resource/img/file-plus.png +0 -0
  73. preditor/resource/img/file-remove.png +0 -0
  74. preditor/resource/img/format-align-left.png +0 -0
  75. preditor/resource/img/format-letter-case-lower.png +0 -0
  76. preditor/resource/img/format-letter-case-upper.png +0 -0
  77. preditor/resource/img/format-letter-case.svg +1 -0
  78. preditor/resource/img/information.png +0 -0
  79. preditor/resource/img/logging_critical.png +0 -0
  80. preditor/resource/img/logging_custom.png +0 -0
  81. preditor/resource/img/logging_debug.png +0 -0
  82. preditor/resource/img/logging_error.png +0 -0
  83. preditor/resource/img/logging_info.png +0 -0
  84. preditor/resource/img/logging_not_set.png +0 -0
  85. preditor/resource/img/logging_warning.png +0 -0
  86. preditor/resource/img/marker.png +0 -0
  87. preditor/resource/img/play.png +0 -0
  88. preditor/resource/img/playlist-play.png +0 -0
  89. preditor/resource/img/plus-minus-variant.png +0 -0
  90. preditor/resource/img/preditor.ico +0 -0
  91. preditor/resource/img/preditor.png +0 -0
  92. preditor/resource/img/preditor.psd +0 -0
  93. preditor/resource/img/preditor.svg +44 -0
  94. preditor/resource/img/regex.svg +1 -0
  95. preditor/resource/img/restart.svg +1 -0
  96. preditor/resource/img/skip-forward-outline.png +0 -0
  97. preditor/resource/img/skip-next-outline.png +0 -0
  98. preditor/resource/img/skip-next.png +0 -0
  99. preditor/resource/img/skip-previous.png +0 -0
  100. preditor/resource/img/subdirectory-arrow-right.png +0 -0
  101. preditor/resource/img/text-search-variant.png +0 -0
  102. preditor/resource/img/warning-big.png +0 -0
  103. preditor/resource/lang/python.json +30 -0
  104. preditor/resource/settings.ini +25 -0
  105. preditor/resource/stylesheet/Bright.css +65 -0
  106. preditor/resource/stylesheet/Dark.css +199 -0
  107. preditor/scintilla/__init__.py +22 -0
  108. preditor/scintilla/delayables/__init__.py +11 -0
  109. preditor/scintilla/delayables/smart_highlight.py +94 -0
  110. preditor/scintilla/delayables/spell_check.py +173 -0
  111. preditor/scintilla/documenteditor.py +2038 -0
  112. preditor/scintilla/finddialog.py +68 -0
  113. preditor/scintilla/lang/__init__.py +80 -0
  114. preditor/scintilla/lang/config/bash.ini +15 -0
  115. preditor/scintilla/lang/config/batch.ini +14 -0
  116. preditor/scintilla/lang/config/cpp.ini +19 -0
  117. preditor/scintilla/lang/config/css.ini +19 -0
  118. preditor/scintilla/lang/config/eyeonscript.ini +17 -0
  119. preditor/scintilla/lang/config/html.ini +21 -0
  120. preditor/scintilla/lang/config/javascript.ini +24 -0
  121. preditor/scintilla/lang/config/lua.ini +16 -0
  122. preditor/scintilla/lang/config/maxscript.ini +20 -0
  123. preditor/scintilla/lang/config/mel.ini +18 -0
  124. preditor/scintilla/lang/config/mu.ini +22 -0
  125. preditor/scintilla/lang/config/nsi.ini +19 -0
  126. preditor/scintilla/lang/config/perl.ini +19 -0
  127. preditor/scintilla/lang/config/puppet.ini +19 -0
  128. preditor/scintilla/lang/config/python.ini +28 -0
  129. preditor/scintilla/lang/config/ruby.ini +19 -0
  130. preditor/scintilla/lang/config/sql.ini +7 -0
  131. preditor/scintilla/lang/config/xml.ini +21 -0
  132. preditor/scintilla/lang/config/yaml.ini +18 -0
  133. preditor/scintilla/lang/language.py +240 -0
  134. preditor/scintilla/lexers/__init__.py +0 -0
  135. preditor/scintilla/lexers/cpplexer.py +21 -0
  136. preditor/scintilla/lexers/javascriptlexer.py +25 -0
  137. preditor/scintilla/lexers/maxscriptlexer.py +234 -0
  138. preditor/scintilla/lexers/mellexer.py +368 -0
  139. preditor/scintilla/lexers/mulexer.py +32 -0
  140. preditor/scintilla/lexers/pythonlexer.py +41 -0
  141. preditor/scintilla/ui/finddialog.ui +160 -0
  142. preditor/settings.py +71 -0
  143. preditor/stream/__init__.py +80 -0
  144. preditor/stream/director.py +73 -0
  145. preditor/stream/manager.py +74 -0
  146. preditor/streamhandler_helper.py +46 -0
  147. preditor/utils/__init__.py +0 -0
  148. preditor/utils/cute.py +30 -0
  149. preditor/utils/stylesheets.py +54 -0
  150. preditor/utils/text_search.py +342 -0
  151. preditor/version.py +21 -0
  152. preditor/weakref.py +363 -0
  153. preditor-1.0.0.dist-info/METADATA +224 -0
  154. preditor-1.0.0.dist-info/RECORD +158 -0
  155. preditor-1.0.0.dist-info/WHEEL +5 -0
  156. preditor-1.0.0.dist-info/entry_points.txt +18 -0
  157. preditor-1.0.0.dist-info/licenses/LICENSE +165 -0
  158. preditor-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,158 @@
1
+ preditor/__init__.py,sha256=OJO0Gsh74_OA6lS_q3tgIh2zLS8lr7fzTk0kyCqnz2k,12163
2
+ preditor/__main__.py,sha256=boRVSmxX6eF8EkzbePtCZbzdcaPseqVae4RPPLp3U1A,449
3
+ preditor/about_module.py,sha256=rz1B3vL93AfJsAk_dnqSsDXcBYZJUf4lAdwUYAfwMwU,5085
4
+ preditor/cli.py,sha256=kyVr0V43KYSMLIEWXH54CA0ByFmPcpbFF-8cli6PVow,5300
5
+ preditor/config.py,sha256=e4UzXh9bIz4Yna2_il5MCx9_uzFrhy9pQK82vMpyuAo,11319
6
+ preditor/contexts.py,sha256=xxRbOFORsvlG___EuSiKuT1aiKJvnkFojFZFZE0HPNk,5147
7
+ preditor/debug.py,sha256=lXSdjWjThAuie8WC-B6wZHppDxsBeftJs-LaAMr5l48,4535
8
+ preditor/enum.py,sha256=snG5V259dH9SI1kwBqZeZdhat36F1iAmIjYErosnDUg,23489
9
+ preditor/excepthooks.py,sha256=cdHyd_eyQaEHhVl4srHbEfKC3NtLlb8AI2KBEdK_PUg,4934
10
+ preditor/logging_config.py,sha256=aCqBhnHhcTigpR7neVEPbx4Vc_3ADpiqaBQ7uOd4qRQ,1462
11
+ preditor/osystem.py,sha256=vRr-WaIzYEO38tJeyHMOlAyrvGaWGBuiyaPx0X9JfZ4,13682
12
+ preditor/plugins.py,sha256=RAeyvdZxQsZY313ae5aAhahqpjuhaXJzDxPyLcR-09U,4401
13
+ preditor/prefs.py,sha256=BPtSsdv2yuiRpIaqEml9fxlVYKHNfqQ77hp5YIQRDBg,2172
14
+ preditor/settings.py,sha256=DV9_DbJorEnhdIvW15E7h7PswlQUsy0UlA8bXUYN0og,2206
15
+ preditor/streamhandler_helper.py,sha256=kiU6T9WqJ3JKTTKCa7IUU8brwK7zO5UUpEzLhEfKe44,1788
16
+ preditor/version.py,sha256=fo5PXsZuloQZu3LdpIFTUAXvJmY2L9N5sNGe2tvdU98,511
17
+ preditor/weakref.py,sha256=b--KomFAHcMWr3DEAIN2j3XxRhjDWKw0WABXyn1nxDg,12177
18
+ preditor/cores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ preditor/cores/core.py,sha256=mdVXlEPDh8kIdOpMDqi8P1VaqfVvyu5cXBq_toONcaM,586
20
+ preditor/dccs/maya/PrEditor_maya.mod,sha256=XTZsiqpSj7AjiB0SOZJct06mk1cLivV7sWIZmg1HoFo,46
21
+ preditor/dccs/maya/plug-ins/PrEditor_maya.py,sha256=_ybVuvJ3PGTn35VVQXZmjINifYjqPOV3MHBC1WQKvls,3955
22
+ preditor/delayable_engine/__init__.py,sha256=imy_fMPiBQUKkN4CvPcSy_mYvWEpphaTMYZbMPPgjZw,11214
23
+ preditor/delayable_engine/delayables.py,sha256=GWxv4iTcqFeo7703SMrtotKx4cfq1ujJMNdpmtawPqc,2708
24
+ preditor/gui/__init__.py,sha256=DeOH5K4_M0YLNx1i7NRvwCgwjyjkre4vVwlr5OEMx9Q,3423
25
+ preditor/gui/app.py,sha256=13-K8RKrBhFrnr8IhyWx0phv3U1denqBogYEDZ_1zos,5837
26
+ preditor/gui/codehighlighter.py,sha256=3JxXZpZqN3KVZbQgSmO-JldSlf4zFQ0PojWwucTsy5U,7171
27
+ preditor/gui/completer.py,sha256=T6fl_4xGVjVtGNuR6ajD1ngjEhrKR6tZ9zPJDYoKn8E,7379
28
+ preditor/gui/console.py,sha256=cifASpAbSbVvszLoReY9PMUdFj1qc9PHMJbSGaaHNnU,34830
29
+ preditor/gui/dialog.py,sha256=l16G4mHmEhE2ximk-gl7KJJQrJLWUqFwi2ex65e7U7k,6413
30
+ preditor/gui/drag_tab_bar.py,sha256=5J-BSKQzS6_WuYxxGqmnUJr6AriTAvwfVK7Q3p7knrM,7933
31
+ preditor/gui/editor_chooser.py,sha256=lv1eY0UJOulX1l-P-ZQEoneYz6BNX2VkXEbg3GUu1ag,1991
32
+ preditor/gui/errordialog.py,sha256=e5VGL8iwSkGreBOg3gZhjVvkrZ7fKbKQ1D91z3EKpr0,2045
33
+ preditor/gui/find_files.py,sha256=8_b0oQgL6u8U2FqpR2RzMChME9eYdJq3c3bgXXDeceY,4241
34
+ preditor/gui/level_buttons.py,sha256=YVvdpXItbFAGl_vYTBcYvOKNQmmEaHRY63pX30WHBbk,11728
35
+ preditor/gui/logger_window_handler.py,sha256=43-DxzuNJq6UV6Ofc4TKRt179Sf5AxDkVDGrtq_Knok,1571
36
+ preditor/gui/logger_window_plugin.py,sha256=x6mTuS6gmeMZtV0UIXHXIif1_B5oKVbJhuIBaW0BFVs,1210
37
+ preditor/gui/loggerwindow.py,sha256=BRay-9ex8vWiutsxRHYs9lyWVCX_aFCdc3Z8NQvccmM,53510
38
+ preditor/gui/newtabwidget.py,sha256=5aCWn9xAl5h1oZACqVuEsOAbzKTS2RegrLI41gROC8A,1971
39
+ preditor/gui/set_text_editor_path_dialog.py,sha256=wzWAUgzGrsWbhcxeHjGlctuFVPXtYyxwnigAeUeeb5o,2247
40
+ preditor/gui/status_label.py,sha256=SlNRmPc28S4E2OFVmErv0DmZstk4011Q_7uLp43SF0A,3320
41
+ preditor/gui/suggest_path_quotes_dialog.py,sha256=QUJf_9hs8wOO6bFOr8_Z2xnNhSA8TfKFMOzheUqUDnY,1822
42
+ preditor/gui/window.py,sha256=VS6ENhbAM991HvbLWp9Ys9DIvRgI-RcuKkr8BbPiaEE,5840
43
+ preditor/gui/workbox_mixin.py,sha256=kUVHtK-flyux3PZ9GkOYnjCJMLRcZESFJXipsgNgI0U,13851
44
+ preditor/gui/workbox_text_edit.py,sha256=B_xObwwobKzpMuTmwkczTGW9cOem2oF8pZDezCqwPCo,4385
45
+ preditor/gui/workboxwidget.py,sha256=BDmV3tu5HaZPTpc_h8UtiAag-w7pEKUBNSkqAIz_7IU,10056
46
+ preditor/gui/fuzzy_search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
+ preditor/gui/fuzzy_search/fuzzy_search.py,sha256=6npanW6aLmG_ezdHmpsKN7p2zwck_Qq6YUy9duCNN8Q,3595
48
+ preditor/gui/group_tab_widget/__init__.py,sha256=PQ7yqhbkR5X_zilBJliyepVgYb26G3P6MyzBU6Jkt10,12965
49
+ preditor/gui/group_tab_widget/grouped_tab_menu.py,sha256=lopd3mjHJIE_5xLdlZL0ghuBzsYo36vO1OZE6L6tqbI,1288
50
+ preditor/gui/group_tab_widget/grouped_tab_models.py,sha256=zlmbcv3JAC5BzjKpm4CM7Hobibm1T_3GjaPoWIQbXiQ,3970
51
+ preditor/gui/group_tab_widget/grouped_tab_widget.py,sha256=Z08LE8-ABakpM5Lk8cnntfjtdsmoR_T2ycgSEor7iY0,2928
52
+ preditor/gui/group_tab_widget/one_tab_widget.py,sha256=PdZAXjmV9oTHakh8aFYRlLnfwcoT459vQWVKgpZZx4Y,1971
53
+ preditor/gui/ui/editor_chooser.ui,sha256=cYSVHK0A4-zst6JyDkrBZK9qcAontbhV4Mmnw5ps72E,2736
54
+ preditor/gui/ui/errordialog.ui,sha256=i7cVc28FPxA_b4Xa58W_xmRJ_1GFb5rgtUhR_gZcf4E,1831
55
+ preditor/gui/ui/find_files.ui,sha256=8mdD3Vg3ofRMChdKntxiDHO3JXHQSKjjY6OLY_1W5lc,3328
56
+ preditor/gui/ui/loggerwindow.ui,sha256=r3L46h3YNLiQ1dPvWY24D5Zqrd2X2x5Zs6jMjDTDDyg,31279
57
+ preditor/gui/ui/set_text_editor_path_dialog.ui,sha256=VLBpTvGneXAi9RX1dRd6oPwKoZhQ_m5HO1j1qXPhTxc,5201
58
+ preditor/gui/ui/suggest_path_quotes_dialog.ui,sha256=0hcr7kEFmmMVEp7vv18mDpvWZ0zOrojlkTLhIWCFKww,5923
59
+ preditor/resource/environment_variables.html,sha256=-uWicgOkour-sxtY-crrjMiLMyJzAzshwUXKqSm6TmI,3134
60
+ preditor/resource/error_mail.html,sha256=oCzynF3QSHi_Xg1wlmU5M5u1Q05mp7QV0ZtQ4e8KQDA,2400
61
+ preditor/resource/error_mail_inline.html,sha256=ceZ8HReyTirMOX-xNgVB9kMO8QhpbHI4-WObFeOG9KY,4014
62
+ preditor/resource/settings.ini,sha256=JhPumV7SzlRTZG3Fs1dxPokat3bthfZPw84lJ7E9zPQ,893
63
+ preditor/resource/img/README.md,sha256=gJo4tydTyeZgUlpoEjiNI7SHlKz5Y-e8aE8Yb7mPrHk,1025
64
+ preditor/resource/img/arrow_forward.png,sha256=41jN4EuemyaZtJ1vcynlAvCGRPJmq3NYq1HeWBGRbko,426
65
+ preditor/resource/img/check-bold.png,sha256=FLu28U1BTyUaljouxEGaoHXhG2z4OzvL57MfMSwAnSI,500
66
+ preditor/resource/img/chevron-down.png,sha256=4GNzTPW-q4LR_3tHj1ymlHsRymVma9J_N1eUvNboTJw,451
67
+ preditor/resource/img/chevron-up.png,sha256=ldNfpkqmW_EkugjxjJGGZLKvBhn8YQ8F6xyp-_T09-M,427
68
+ preditor/resource/img/close-thick.png,sha256=RDtR-m7A8sOUjlixX8Up14FAJ-vx7GxscZiMIkL37gs,543
69
+ preditor/resource/img/comment-edit.png,sha256=lh8vFwBRT8k4caF5hWfXeO7V198aiZDzY3TVo9FAibc,680
70
+ preditor/resource/img/content-copy.png,sha256=HWX_3y7gFYu3uaPBMtdqtUIC1jfHN2yP5HxHltpV7BA,492
71
+ preditor/resource/img/content-cut.png,sha256=uljaz_Q8BOvdcGDNvmhkurBZwxoSfbIo05yOnDUpe24,756
72
+ preditor/resource/img/content-duplicate.png,sha256=ou41vXqV3YKNMCwXJrGqYyafd8t3qe9It-YHJA4PYNU,572
73
+ preditor/resource/img/content-paste.png,sha256=TiZmBdJ9myTbjmjySXCuDiF_IB2sdaN05RMFO3vKymU,537
74
+ preditor/resource/img/content-save.png,sha256=q0nTRbq_AaqQHKnWNhfVTnMYlMISd5X7o5AG_aw07SE,573
75
+ preditor/resource/img/debug_disabled.png,sha256=bZ1dFi39QNRbXqQ85llmHbRMR-FGYLryRYfr0bDokrQ,207
76
+ preditor/resource/img/eye-check.png,sha256=tsAVRaL4LREpIT9HefEntQ458zGzEcSBieCcU0eGhXg,968
77
+ preditor/resource/img/file-plus.png,sha256=dvm1hKUMGGeUD7-ngBjVbMeMoFQwOZgJvpWARazcbTo,577
78
+ preditor/resource/img/file-remove.png,sha256=pnJVe9EBzvpMq8G7ikY_DXXDhM9e2m2pJtPTZz3zO_k,690
79
+ preditor/resource/img/format-align-left.png,sha256=y2ixRoDurohX5E5ddxr4tVib_bczRRT7DN9CBDhDmcw,331
80
+ preditor/resource/img/format-letter-case-lower.png,sha256=CkqlY2HABrGLyCEkDC8CPI4To873uNysB-f5PUK1gJA,978
81
+ preditor/resource/img/format-letter-case-upper.png,sha256=NECM28lYBHhnQ_GgKvgli2xbCbiVylNyfWY7VVNpSXw,977
82
+ preditor/resource/img/format-letter-case.svg,sha256=iny15GecoxoRdExnnPNNWQqpqoWicDSTBSV8kRIYF3M,964
83
+ preditor/resource/img/information.png,sha256=vb_-kGXq2T_zeAJlrt5FJGSK8WUFYstzQl8WuMSfs5I,778
84
+ preditor/resource/img/logging_critical.png,sha256=lj4U6l8iRcgmWZWxdaJALvWn_KQELiqY936ZkPlRWJU,151
85
+ preditor/resource/img/logging_custom.png,sha256=zmVRkBX2CVjqD8QdnRKxv7Jss1114bhBt6vpDVkxxdo,297
86
+ preditor/resource/img/logging_debug.png,sha256=1dTtIiPSn5BcAjKs-o5Z8EY0GvNN3MmUJROMMO5CaYc,151
87
+ preditor/resource/img/logging_error.png,sha256=iFCjyDbTub5-McVNPbyRnNgL2UTgUSRX-LEyO3qdPMg,151
88
+ preditor/resource/img/logging_info.png,sha256=KyV71eXTyjks8h5wu4xOBWhV-YVpBHgPp3Rj4KEuTws,151
89
+ preditor/resource/img/logging_not_set.png,sha256=aFp_jOIbLHcdgeNTRMt93trtZWul0uQeV6KmSI9dhRk,151
90
+ preditor/resource/img/logging_warning.png,sha256=de_PP_OZ8VNxhO4UqmlA0eVKQG1oWMa6XCp4P7XROfE,151
91
+ preditor/resource/img/marker.png,sha256=-HKjoNnAXUALmN4R2Qot8V3Gr01l5ulOS1H0-Eh9fGk,655
92
+ preditor/resource/img/play.png,sha256=WDU5whfyVtyNwXmUqkfhcR2xdwBaXN9L8VhxgE4EoOo,502
93
+ preditor/resource/img/playlist-play.png,sha256=DAz-PkqLtOKVgcxSQtP2bQbKHe5ebUKrJc36L_n1ItI,422
94
+ preditor/resource/img/plus-minus-variant.png,sha256=jN7AKN1OUL3kTfvSdkDXpxVRUKCMXd9belaHbdWCMAg,677
95
+ preditor/resource/img/preditor.ico,sha256=HjJbjJ3MYBmw5pFmkY2hEaomK-zPO7LJsOgGgALQN2c,144374
96
+ preditor/resource/img/preditor.png,sha256=y-AdFUy_zDnkylDe8kX1BTfwZS_TIgmEBqrHhx_IhWE,32788
97
+ preditor/resource/img/preditor.psd,sha256=SZgadVDuDAzlUcg6ymlfAL7uw_JzLb1PsmkSAoSazv0,200136
98
+ preditor/resource/img/preditor.svg,sha256=MRsRxcZw3HSJ4ZRDA3XMLytJX34QPJVIAET4lG613KU,3804
99
+ preditor/resource/img/regex.svg,sha256=nIZ6QnNUycEYB9wacB8-DcxzDdcb1ris0ewi3DzGwlM,682
100
+ preditor/resource/img/restart.svg,sha256=v3CFD1bROBch5n8vSQAzQqQc-bzvL_YwkD0JAhn4fuc,403
101
+ preditor/resource/img/skip-forward-outline.png,sha256=5PAOknMYBZcuzskG8OO_QGAjLvA8g9M08MgjTvxfDrM,475
102
+ preditor/resource/img/skip-next-outline.png,sha256=FUTDclE-U4nF5JhjvX-31QTwfv5pKgaX4UziY6UUioU,478
103
+ preditor/resource/img/skip-next.png,sha256=q9V896VWgwatGShqSL7Ebv8sia3Q2XwBv5Y4KaZA60o,446
104
+ preditor/resource/img/skip-previous.png,sha256=ixJHaTPWnyD98aDv_VFuWepcRAHpnTQFYycOufTva5M,469
105
+ preditor/resource/img/subdirectory-arrow-right.png,sha256=PXmp15L0nBHgq_YJlG4WLd_eA2nZk_fHue9yzUpJQm4,456
106
+ preditor/resource/img/text-search-variant.png,sha256=98uwrqOgxmraS1DJ8kJskr9_J7cF3e-niwVuBDqYinA,718
107
+ preditor/resource/img/warning-big.png,sha256=z5QKX3DNLo_UDRKdjwtELbXL_JLf2zOwhkMPnIeu3vw,1065
108
+ preditor/resource/lang/python.json,sha256=CXiQh0jcgd-OCrM-s9IF7s4o-g5WRA4vDaAyTRAxAQo,316
109
+ preditor/resource/stylesheet/Bright.css,sha256=SfnPRBqfqEL4IF8RGt9PpLX_cSiGpfG9Q2hE1F9uTsk,2480
110
+ preditor/resource/stylesheet/Dark.css,sha256=Sige7beBhRyfav9_mXvn-LhksxbX0_WEgpZSKhmPavc,5384
111
+ preditor/scintilla/__init__.py,sha256=AoUc-fcp2D3F10FDFsp_ZzUr4zioDH0mvdubSF7sRG0,523
112
+ preditor/scintilla/documenteditor.py,sha256=g9spQ-y5JBxFvwx7OHXVXQhPql4juzQFLfZNTvIwQeA,77895
113
+ preditor/scintilla/finddialog.py,sha256=vcYPj74LbCy4KXdh0eJyOb8i31pJKgOZitKpgW4zhBM,2346
114
+ preditor/scintilla/delayables/__init__.py,sha256=lj9tMc3IL2QeaN858Ixt_n7clJngbKqG2sk66vIcFcQ,275
115
+ preditor/scintilla/delayables/smart_highlight.py,sha256=JRwGp-pVwx75zJ5NoJ8UuBg4-jK4eQfgD4eM4ZfDbGI,3502
116
+ preditor/scintilla/delayables/spell_check.py,sha256=56XQp5rB_W6PaHkV-p6kYrlBcD0WIdenn287i95lnwE,6901
117
+ preditor/scintilla/lang/__init__.py,sha256=db0L84UKwXoiv_5PR3wFcywzbBo5a7SuZIz04S17nIM,1705
118
+ preditor/scintilla/lang/language.py,sha256=GC8ASEcvRuo6pwTwe8usN5p_gA1UJ9RUsgmN9bOjh8I,6919
119
+ preditor/scintilla/lang/config/bash.ini,sha256=dtvJOl5HKQo4JMpqoZ3ZcujAyk0qYa61hWYVpp6uzZw,152
120
+ preditor/scintilla/lang/config/batch.ini,sha256=n0gQR47Zs5L9Hb1lkdJ7s2_4bqR7LwXcuCc2uOX4wpA,154
121
+ preditor/scintilla/lang/config/cpp.ini,sha256=un8AiviOrYDrrPJYDSlBjjctWVr4OkSFjLZ5A43DYKU,263
122
+ preditor/scintilla/lang/config/css.ini,sha256=HiVhTHMZSQSPKHbHXMI5ugQNMoJ5t0SnCYDURBd4O3o,215
123
+ preditor/scintilla/lang/config/eyeonscript.ini,sha256=_0J5Svwf0lvWCnaXeRZ_wk9aD_UwC-njK6F8kJOFS0M,223
124
+ preditor/scintilla/lang/config/html.ini,sha256=FM9ernqI9t7XolJnZ2w3n4CBBlrDmIyOXDXQQKnjR6s,437
125
+ preditor/scintilla/lang/config/javascript.ini,sha256=UwBTp2QifcMOAtevF6E0S2AU8DAjHKN4LlVzSCbrkMA,467
126
+ preditor/scintilla/lang/config/lua.ini,sha256=26NE-G5QHi3Mfc41d6pTaRyoGwDFux8HITnOe5y9bxU,169
127
+ preditor/scintilla/lang/config/maxscript.ini,sha256=t2TziHJpggwh78Hlh9fLp6XiFtyCtQejmxv2woFeifQ,368
128
+ preditor/scintilla/lang/config/mel.ini,sha256=VSl6no0olUBr6wIWdX5zUl7DTtytS9rQ1kJ6J0QLbR0,246
129
+ preditor/scintilla/lang/config/mu.ini,sha256=PPwzbROmBpM5BrAvCUVVaJZXJIBONvtV4422CNoPYaw,361
130
+ preditor/scintilla/lang/config/nsi.ini,sha256=8OR0xoW7Oo8JsuO-x_Pgr2ub2FOhf5OBFrm90toT4n8,259
131
+ preditor/scintilla/lang/config/perl.ini,sha256=Qke5rkHFRGvDmIMLpH_KL12VEQ9xttmXWpxsNEQ-MiY,212
132
+ preditor/scintilla/lang/config/puppet.ini,sha256=ABJuceYqutptN1DevP_3GW4aeoI3CcNGRQg889E-dgU,212
133
+ preditor/scintilla/lang/config/python.ini,sha256=Tz86xWNoki3wTW6mIptrGLNmXohrc1Y9Ts_NL1R58Ow,472
134
+ preditor/scintilla/lang/config/ruby.ini,sha256=JwxiiuPfSqLX5FPT1GXY4OK-Axsg640lXx9WUN1fOTo,211
135
+ preditor/scintilla/lang/config/sql.ini,sha256=TrRCliEmJvAlBXyKniJQdtKjfdPnBV-ywqTQct678vE,78
136
+ preditor/scintilla/lang/config/xml.ini,sha256=xEhjIazrQhlEb19fff-mgkftK8cJW9DGcFnZwzTfbjA,469
137
+ preditor/scintilla/lang/config/yaml.ini,sha256=rdFvgxQ7_L3kxqd5TwCAG4YFA75hBi8buVLGDZLaKwg,222
138
+ preditor/scintilla/lexers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
+ preditor/scintilla/lexers/cpplexer.py,sha256=5tVNlwVwAFZNmx8ri4WvJgkAyVvTCInNqZgfKXUKyfE,702
140
+ preditor/scintilla/lexers/javascriptlexer.py,sha256=eyeT3FD_8q3hiVfyQ-uv56M0uWe76Ws-qDS32CGO6ug,853
141
+ preditor/scintilla/lexers/maxscriptlexer.py,sha256=bS0-A7X09MbTJ-oAXZRDS3MdAa6kG94aEBIZIj6rjSs,8456
142
+ preditor/scintilla/lexers/mellexer.py,sha256=Jp8i7UOBqQR0VQ88jZFtgwGM0KX0NxTbr3vYLeBWfkk,26506
143
+ preditor/scintilla/lexers/mulexer.py,sha256=Y2FVp6ZJ9CgLIuIvItOzXMMRemuToID66dpBn1qqTwA,976
144
+ preditor/scintilla/lexers/pythonlexer.py,sha256=WgL74RQGvGgsdAL-l2ioOMybqRw7M0GG-SxmzXsW4xw,1682
145
+ preditor/scintilla/ui/finddialog.ui,sha256=CEXouVKqVCDOfMBciK-89OmsGe2Kr6XdMbSPiffp0PA,4048
146
+ preditor/stream/__init__.py,sha256=SxILA3U3W8aNfVBd_oJ4-WXkA214cl1zGLSCelFx5QU,2682
147
+ preditor/stream/director.py,sha256=Gklbl6jwTmB0BtyR6MZxRytdlufaz5MoiW9Le9WFTmo,2733
148
+ preditor/stream/manager.py,sha256=NP4lf6hd5L_Ui-9Ws66gVEk6ZL8YqF7BxOzUsdrh3v0,2811
149
+ preditor/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
+ preditor/utils/cute.py,sha256=LfF8gXMAkkQAdo4mm6J9aVkDLwWZbE6prQ0moDbtCys,1045
151
+ preditor/utils/stylesheets.py,sha256=EVWZNq3WnaRiyUPoYMKQo_dLEwbRyKu26b03I1JDA-s,1622
152
+ preditor/utils/text_search.py,sha256=21kuSDTpLIPUcriB81WP1kWfzuDBuP13ZtHUtypP5jE,14218
153
+ preditor-1.0.0.dist-info/licenses/LICENSE,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
154
+ preditor-1.0.0.dist-info/METADATA,sha256=SYwQuPDvd7X8sqbtIaItv8HYpfKg2QrMbCJJy6csu3c,9948
155
+ preditor-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
156
+ preditor-1.0.0.dist-info/entry_points.txt,sha256=mpe0HFD_oIEBNPTJNyUEbmMV6Ivrp4EuYyZ34C5d_PU,519
157
+ preditor-1.0.0.dist-info/top_level.txt,sha256=iX1_mrUOky_BQr2oG0l_MbEUYF6idyjiWSzu9z3irIw,9
158
+ preditor-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,18 @@
1
+ [console_scripts]
2
+ preditor = preditor.cli:cli
3
+
4
+ [gui_scripts]
5
+ preditorw = preditor.cli:cli
6
+
7
+ [preditor.plug.about_module]
8
+ Exe = preditor.about_module:AboutExe
9
+ PrEditor = preditor.about_module:AboutPreditor
10
+ Python = preditor.about_module:AboutPython
11
+ Qt = preditor.about_module:AboutQt
12
+
13
+ [preditor.plug.editors]
14
+ QScintilla = preditor.gui.workboxwidget:WorkboxWidget
15
+ TextEdit = preditor.gui.workbox_text_edit:WorkboxTextEdit
16
+
17
+ [preditor.plug.logging_handlers]
18
+ PrEditor = preditor.gui.logger_window_handler:LoggerWindowHandler
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
@@ -0,0 +1 @@
1
+ preditor