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.
- actiondraw-0.1.18/LICENSE +21 -0
- actiondraw-0.1.18/MANIFEST.in +5 -0
- actiondraw-0.1.18/PKG-INFO +81 -0
- actiondraw-0.1.18/README.md +48 -0
- actiondraw-0.1.18/actiondraw/__init__.py +31 -0
- actiondraw-0.1.18/actiondraw/__main__.py +7 -0
- actiondraw-0.1.18/actiondraw/clipboard.py +577 -0
- actiondraw-0.1.18/actiondraw/constants.py +84 -0
- actiondraw-0.1.18/actiondraw/drawing.py +143 -0
- actiondraw-0.1.18/actiondraw/layout.py +212 -0
- actiondraw-0.1.18/actiondraw/markdown_image_paster.py +204 -0
- actiondraw-0.1.18/actiondraw/markdown_note_editor_window.py +78 -0
- actiondraw-0.1.18/actiondraw/markdown_note_manager.py +209 -0
- actiondraw-0.1.18/actiondraw/markdown_note_qml.py +15 -0
- actiondraw-0.1.18/actiondraw/markdown_preview_formatter.py +68 -0
- actiondraw-0.1.18/actiondraw/markdown_syntax_highlighter.py +179 -0
- actiondraw-0.1.18/actiondraw/model.py +1906 -0
- actiondraw-0.1.18/actiondraw/priorityplot/__init__.py +3 -0
- actiondraw-0.1.18/actiondraw/priorityplot/__main__.py +8 -0
- actiondraw-0.1.18/actiondraw/priorityplot/app.py +66 -0
- actiondraw-0.1.18/actiondraw/priorityplot/model.py +27 -0
- actiondraw-0.1.18/actiondraw/qml.py +25 -0
- actiondraw-0.1.18/actiondraw/qml_ui/ActionDrawWindow.qml +4398 -0
- actiondraw-0.1.18/actiondraw/qml_ui/HierarchyWindow.qml +478 -0
- actiondraw-0.1.18/actiondraw/qml_ui/MarkdownNoteEditorWindow.qml +208 -0
- actiondraw-0.1.18/actiondraw/qml_ui/PriorityPlotWindow.qml +253 -0
- actiondraw-0.1.18/actiondraw/qml_ui/components/ActionDialogs.qml +2079 -0
- actiondraw-0.1.18/actiondraw/qml_ui/components/ActionMenuBar.qml +334 -0
- actiondraw-0.1.18/actiondraw/qml_ui/components/MarkdownEditorPane.qml +543 -0
- actiondraw-0.1.18/actiondraw/qml_ui/components/PriorityPlotCanvas.qml +176 -0
- actiondraw-0.1.18/actiondraw/qml_ui/components/ProgressStatsRow.qml +116 -0
- actiondraw-0.1.18/actiondraw/qml_ui/components/SidebarTabs.qml +1231 -0
- actiondraw-0.1.18/actiondraw/qml_ui/components/ToolbarRow.qml +285 -0
- actiondraw-0.1.18/actiondraw/types.py +75 -0
- actiondraw-0.1.18/actiondraw/ui.py +90 -0
- actiondraw-0.1.18/actiondraw.egg-info/PKG-INFO +81 -0
- actiondraw-0.1.18/actiondraw.egg-info/SOURCES.txt +53 -0
- actiondraw-0.1.18/actiondraw.egg-info/dependency_links.txt +1 -0
- actiondraw-0.1.18/actiondraw.egg-info/entry_points.txt +3 -0
- actiondraw-0.1.18/actiondraw.egg-info/requires.txt +11 -0
- actiondraw-0.1.18/actiondraw.egg-info/top_level.txt +4 -0
- actiondraw-0.1.18/markdown_note_editor.py +7 -0
- actiondraw-0.1.18/progress_crypto.py +497 -0
- actiondraw-0.1.18/pyproject.toml +56 -0
- actiondraw-0.1.18/requirements-dev.txt +8 -0
- actiondraw-0.1.18/requirements.txt +5 -0
- actiondraw-0.1.18/setup.cfg +4 -0
- actiondraw-0.1.18/task_model.py +3186 -0
- actiondraw-0.1.18/tests/test_actiondraw.py +5029 -0
- actiondraw-0.1.18/tests/test_markdown_image_paster.py +190 -0
- actiondraw-0.1.18/tests/test_markdown_preview_formatter.py +37 -0
- actiondraw-0.1.18/tests/test_markdown_syntax_highlighter.py +108 -0
- actiondraw-0.1.18/tests/test_packaging.py +24 -0
- actiondraw-0.1.18/tests/test_passphrase_crack_time.py +57 -0
- 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,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
|
+
]
|