actiondraw 0.1.18__tar.gz

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.
Files changed (55) hide show
  1. actiondraw-0.1.18/LICENSE +21 -0
  2. actiondraw-0.1.18/MANIFEST.in +5 -0
  3. actiondraw-0.1.18/PKG-INFO +81 -0
  4. actiondraw-0.1.18/README.md +48 -0
  5. actiondraw-0.1.18/actiondraw/__init__.py +31 -0
  6. actiondraw-0.1.18/actiondraw/__main__.py +7 -0
  7. actiondraw-0.1.18/actiondraw/clipboard.py +577 -0
  8. actiondraw-0.1.18/actiondraw/constants.py +84 -0
  9. actiondraw-0.1.18/actiondraw/drawing.py +143 -0
  10. actiondraw-0.1.18/actiondraw/layout.py +212 -0
  11. actiondraw-0.1.18/actiondraw/markdown_image_paster.py +204 -0
  12. actiondraw-0.1.18/actiondraw/markdown_note_editor_window.py +78 -0
  13. actiondraw-0.1.18/actiondraw/markdown_note_manager.py +209 -0
  14. actiondraw-0.1.18/actiondraw/markdown_note_qml.py +15 -0
  15. actiondraw-0.1.18/actiondraw/markdown_preview_formatter.py +68 -0
  16. actiondraw-0.1.18/actiondraw/markdown_syntax_highlighter.py +179 -0
  17. actiondraw-0.1.18/actiondraw/model.py +1906 -0
  18. actiondraw-0.1.18/actiondraw/priorityplot/__init__.py +3 -0
  19. actiondraw-0.1.18/actiondraw/priorityplot/__main__.py +8 -0
  20. actiondraw-0.1.18/actiondraw/priorityplot/app.py +66 -0
  21. actiondraw-0.1.18/actiondraw/priorityplot/model.py +27 -0
  22. actiondraw-0.1.18/actiondraw/qml.py +25 -0
  23. actiondraw-0.1.18/actiondraw/qml_ui/ActionDrawWindow.qml +4398 -0
  24. actiondraw-0.1.18/actiondraw/qml_ui/HierarchyWindow.qml +478 -0
  25. actiondraw-0.1.18/actiondraw/qml_ui/MarkdownNoteEditorWindow.qml +208 -0
  26. actiondraw-0.1.18/actiondraw/qml_ui/PriorityPlotWindow.qml +253 -0
  27. actiondraw-0.1.18/actiondraw/qml_ui/components/ActionDialogs.qml +2079 -0
  28. actiondraw-0.1.18/actiondraw/qml_ui/components/ActionMenuBar.qml +334 -0
  29. actiondraw-0.1.18/actiondraw/qml_ui/components/MarkdownEditorPane.qml +543 -0
  30. actiondraw-0.1.18/actiondraw/qml_ui/components/PriorityPlotCanvas.qml +176 -0
  31. actiondraw-0.1.18/actiondraw/qml_ui/components/ProgressStatsRow.qml +116 -0
  32. actiondraw-0.1.18/actiondraw/qml_ui/components/SidebarTabs.qml +1231 -0
  33. actiondraw-0.1.18/actiondraw/qml_ui/components/ToolbarRow.qml +285 -0
  34. actiondraw-0.1.18/actiondraw/types.py +75 -0
  35. actiondraw-0.1.18/actiondraw/ui.py +90 -0
  36. actiondraw-0.1.18/actiondraw.egg-info/PKG-INFO +81 -0
  37. actiondraw-0.1.18/actiondraw.egg-info/SOURCES.txt +53 -0
  38. actiondraw-0.1.18/actiondraw.egg-info/dependency_links.txt +1 -0
  39. actiondraw-0.1.18/actiondraw.egg-info/entry_points.txt +3 -0
  40. actiondraw-0.1.18/actiondraw.egg-info/requires.txt +11 -0
  41. actiondraw-0.1.18/actiondraw.egg-info/top_level.txt +4 -0
  42. actiondraw-0.1.18/markdown_note_editor.py +7 -0
  43. actiondraw-0.1.18/progress_crypto.py +497 -0
  44. actiondraw-0.1.18/pyproject.toml +56 -0
  45. actiondraw-0.1.18/requirements-dev.txt +8 -0
  46. actiondraw-0.1.18/requirements.txt +5 -0
  47. actiondraw-0.1.18/setup.cfg +4 -0
  48. actiondraw-0.1.18/task_model.py +3186 -0
  49. actiondraw-0.1.18/tests/test_actiondraw.py +5029 -0
  50. actiondraw-0.1.18/tests/test_markdown_image_paster.py +190 -0
  51. actiondraw-0.1.18/tests/test_markdown_preview_formatter.py +37 -0
  52. actiondraw-0.1.18/tests/test_markdown_syntax_highlighter.py +108 -0
  53. actiondraw-0.1.18/tests/test_packaging.py +24 -0
  54. actiondraw-0.1.18/tests/test_passphrase_crack_time.py +57 -0
  55. actiondraw-0.1.18/tests/test_progress_crypto.py +471 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 oyvinrog
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,5 @@
1
+ include README.md
2
+ include LICENSE
3
+ include requirements.txt
4
+ include requirements-dev.txt
5
+ recursive-include actiondraw/qml_ui *.qml
@@ -0,0 +1,81 @@
1
+ Metadata-Version: 2.4
2
+ Name: actiondraw
3
+ Version: 0.1.18
4
+ Summary: A diagramming module built with PySide6 and QML
5
+ Author: oyvinrog
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/oyvinrog/progress
8
+ Project-URL: Repository, https://github.com/oyvinrog/progress
9
+ Project-URL: Issues, https://github.com/oyvinrog/progress/issues
10
+ Keywords: diagram,drawing,canvas,pyside6,qml,visualization
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Topic :: Office/Business :: Scheduling
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: PySide6<7,>=6.6
25
+ Requires-Dist: Pygments>=2.17
26
+ Requires-Dist: cryptography>=42.0.0
27
+ Requires-Dist: argon2-cffi>=23.1.0
28
+ Requires-Dist: yubikey-manager; python_version >= "3.9"
29
+ Provides-Extra: dev
30
+ Requires-Dist: pytest>=7.0; extra == "dev"
31
+ Requires-Dist: pytest-qt>=4.0; extra == "dev"
32
+ Dynamic: license-file
33
+
34
+ # ActionDraw
35
+
36
+ ### Your whole plan. One canvas.
37
+
38
+ <p align="center">
39
+ <img src="assets/img1.png" alt="ActionDraw — visual planning canvas" width="700">
40
+ </p>
41
+
42
+ Diagrams, tasks, notes, reminders, priorities, and encrypted storage — in a single desktop app you install with one command.
43
+
44
+ ```bash
45
+ pip install actiondraw
46
+ ```
47
+
48
+ <p align="center">
49
+ <img src="assets/img2.png" alt="ActionDraw — encrypted storage" width="700">
50
+ </p>
51
+
52
+ ## What you get
53
+
54
+ - **Visual task diagrams** — drag boxes, databases, servers, clouds, and sticky notes onto an infinite canvas
55
+ - **Live connections** — draw arrows between nodes with drag-and-drop; arrowheads and previews update in real time
56
+ - **Markdown notes** — click any node to open a rich markdown editor
57
+ - **Time tracking & reminders** — built-in scheduling so nothing slips
58
+ - **Priority scoring** — rank tasks by impact and effort with an integrated priority plot
59
+ - **Obstacle & wish planning** — dedicated shapes for blockers and goals
60
+ - **Free drawing** — sketch and annotate directly on the canvas
61
+ - **Paste images** — drop external graphics right onto the diagram
62
+ - **Encrypted storage** — your data is protected with Argon2id key derivation, with optional YubiKey challenge-response
63
+
64
+ ## Quick start
65
+
66
+ ```bash
67
+ pip install actiondraw # Install
68
+ actiondraw # Launch the canvas
69
+ priorityplot # Launch standalone priority plot
70
+ ```
71
+
72
+ ## Requirements
73
+
74
+ - Python 3.8+
75
+ - PySide6 >= 6.6
76
+
77
+ ## Links
78
+
79
+ - [Source on GitHub](https://github.com/oyvinrog/progress)
80
+ - [Report issues](https://github.com/oyvinrog/progress/issues)
81
+ - MIT License
@@ -0,0 +1,48 @@
1
+ # ActionDraw
2
+
3
+ ### Your whole plan. One canvas.
4
+
5
+ <p align="center">
6
+ <img src="assets/img1.png" alt="ActionDraw — visual planning canvas" width="700">
7
+ </p>
8
+
9
+ Diagrams, tasks, notes, reminders, priorities, and encrypted storage — in a single desktop app you install with one command.
10
+
11
+ ```bash
12
+ pip install actiondraw
13
+ ```
14
+
15
+ <p align="center">
16
+ <img src="assets/img2.png" alt="ActionDraw — encrypted storage" width="700">
17
+ </p>
18
+
19
+ ## What you get
20
+
21
+ - **Visual task diagrams** — drag boxes, databases, servers, clouds, and sticky notes onto an infinite canvas
22
+ - **Live connections** — draw arrows between nodes with drag-and-drop; arrowheads and previews update in real time
23
+ - **Markdown notes** — click any node to open a rich markdown editor
24
+ - **Time tracking & reminders** — built-in scheduling so nothing slips
25
+ - **Priority scoring** — rank tasks by impact and effort with an integrated priority plot
26
+ - **Obstacle & wish planning** — dedicated shapes for blockers and goals
27
+ - **Free drawing** — sketch and annotate directly on the canvas
28
+ - **Paste images** — drop external graphics right onto the diagram
29
+ - **Encrypted storage** — your data is protected with Argon2id key derivation, with optional YubiKey challenge-response
30
+
31
+ ## Quick start
32
+
33
+ ```bash
34
+ pip install actiondraw # Install
35
+ actiondraw # Launch the canvas
36
+ priorityplot # Launch standalone priority plot
37
+ ```
38
+
39
+ ## Requirements
40
+
41
+ - Python 3.8+
42
+ - PySide6 >= 6.6
43
+
44
+ ## Links
45
+
46
+ - [Source on GitHub](https://github.com/oyvinrog/progress)
47
+ - [Report issues](https://github.com/oyvinrog/progress/issues)
48
+ - MIT License
@@ -0,0 +1,31 @@
1
+ """ActionDraw diagramming module built with PySide6 and QML.
2
+
3
+ The implementation focuses on predictable coordinate handling so drawing
4
+ connections between items works reliably when dragging across the canvas.
5
+ """
6
+
7
+ from .constants import CLIPBOARD_MIME_TYPE, ITEM_PRESETS
8
+ from .model import DiagramModel
9
+ from .qml import ACTIONDRAW_QML
10
+ from .types import (
11
+ DiagramEdge,
12
+ DiagramItem,
13
+ DiagramItemType,
14
+ DrawingPoint,
15
+ DrawingStroke,
16
+ )
17
+ from .ui import create_actiondraw_window, main
18
+
19
+ __all__ = [
20
+ "ACTIONDRAW_QML",
21
+ "CLIPBOARD_MIME_TYPE",
22
+ "DiagramEdge",
23
+ "DiagramItem",
24
+ "DiagramItemType",
25
+ "DiagramModel",
26
+ "DrawingPoint",
27
+ "DrawingStroke",
28
+ "ITEM_PRESETS",
29
+ "create_actiondraw_window",
30
+ "main",
31
+ ]
@@ -0,0 +1,7 @@
1
+ """Entry point for running ActionDraw as a module: python -m actiondraw"""
2
+
3
+ import sys
4
+ from .ui import main
5
+
6
+ if __name__ == "__main__":
7
+ sys.exit(main())