|
|
|
@ -104,3 +104,45 @@ def __hello_module():
|
|
|
|
|
|
|
|
|
|
We only want to expose the absolute bare minimum number of functions to the consumers of |
|
|
|
|
our modules. |
|
|
|
|
|
|
|
|
|
## Overview of Function |
|
|
|
|
|
|
|
|
|
In order to understand how things are drawn and maintained there are some classes you need to know. |
|
|
|
|
|
|
|
|
|
### Modes |
|
|
|
|
|
|
|
|
|
Lambas, partially applied functions, and function passing are used throughout the application to not only improve |
|
|
|
|
readability but also improve modularity of the code. You can see modes in `clusterview/mode.py`. These modes are used |
|
|
|
|
to put the application in a global state for adding, editing, moving, and deleting things. |
|
|
|
|
|
|
|
|
|
In order to improve readability `main_window.py`, the main application class module, uses some neat function passing |
|
|
|
|
tricks to determine which modes to use in `clusterview/mode_handlers.py`. The `mode_handlers.py` module is fairly |
|
|
|
|
complicated but defines basically all of the mode handling code used for each mode in the application. |
|
|
|
|
|
|
|
|
|
### Point |
|
|
|
|
|
|
|
|
|
The `Point` class is the base class for all drawn points. It contains important details for calculating location |
|
|
|
|
in space such as it's containing viewport, it's x and y coordinates in the viewport, it's drawn size, it's color, |
|
|
|
|
and a list of optional attributes. |
|
|
|
|
|
|
|
|
|
### PointSet |
|
|
|
|
|
|
|
|
|
A `PointSet` is a convenient holder for all points on a screen. It contains methods that simplify adding to, removing, |
|
|
|
|
moving, and deleting points from the canvas. It maintains a constant viewport state, point size, and other useful |
|
|
|
|
attributes so that you do not need to concern yourself with them during use. |
|
|
|
|
|
|
|
|
|
### PointManager |
|
|
|
|
|
|
|
|
|
The `PointManager` is a global singleton that is shared across the entire application. You can think of the |
|
|
|
|
`PointManager` as the absolute source of truth for the state of points in the application. In addition to maintaining |
|
|
|
|
a global `PointSet`, it also maintains the `save` and `load` configuration features so that they are consistent |
|
|
|
|
each time they are used. |
|
|
|
|
|
|
|
|
|
### Grouping Points |
|
|
|
|
|
|
|
|
|
Each point can be grouped by color, defined in `clusterview/colors.py` in the global `PointSet`. This way you |
|
|
|
|
do not need to explicitly maintain sets of points representing groups, and can instead call the `groups` function |
|
|
|
|
on the `PointSet` to return to you a dictionary from `color.Color` to `Point` representing each group and their |
|
|
|
|
member points. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|