├── .gitignore ├── LICENSE ├── LiCENSE ├── README.md ├── images ├── .gitignore ├── adamantan.png └── example.png ├── molina ├── __init__.py ├── __main__.py ├── action_managers.py ├── central_widget.py ├── constants.py ├── data_manager.py ├── data_structs.py ├── drawing_objects.py ├── drawing_widget.py ├── errors.py ├── file_manager.py ├── help_widget.py ├── hotkeys.py ├── main_window.py ├── molfile.py ├── resources │ ├── choose.png │ ├── clean.png │ ├── eraser.png │ ├── help.png │ ├── icon.PNG │ ├── left.png │ ├── left_button_2.png │ ├── minus.png │ ├── open.png │ ├── plus.png │ ├── predict.png │ ├── recent.png │ └── save.png └── styles.py ├── pyproject.toml └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/LICENSE -------------------------------------------------------------------------------- /LiCENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/LiCENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/README.md -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/images/.gitignore -------------------------------------------------------------------------------- /images/adamantan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/images/adamantan.png -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/images/example.png -------------------------------------------------------------------------------- /molina/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/__init__.py -------------------------------------------------------------------------------- /molina/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/__main__.py -------------------------------------------------------------------------------- /molina/action_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/action_managers.py -------------------------------------------------------------------------------- /molina/central_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/central_widget.py -------------------------------------------------------------------------------- /molina/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/constants.py -------------------------------------------------------------------------------- /molina/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/data_manager.py -------------------------------------------------------------------------------- /molina/data_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/data_structs.py -------------------------------------------------------------------------------- /molina/drawing_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/drawing_objects.py -------------------------------------------------------------------------------- /molina/drawing_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/drawing_widget.py -------------------------------------------------------------------------------- /molina/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/errors.py -------------------------------------------------------------------------------- /molina/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/file_manager.py -------------------------------------------------------------------------------- /molina/help_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/help_widget.py -------------------------------------------------------------------------------- /molina/hotkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/hotkeys.py -------------------------------------------------------------------------------- /molina/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/main_window.py -------------------------------------------------------------------------------- /molina/molfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/molfile.py -------------------------------------------------------------------------------- /molina/resources/choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/choose.png -------------------------------------------------------------------------------- /molina/resources/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/clean.png -------------------------------------------------------------------------------- /molina/resources/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/eraser.png -------------------------------------------------------------------------------- /molina/resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/help.png -------------------------------------------------------------------------------- /molina/resources/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/icon.PNG -------------------------------------------------------------------------------- /molina/resources/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/left.png -------------------------------------------------------------------------------- /molina/resources/left_button_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/left_button_2.png -------------------------------------------------------------------------------- /molina/resources/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/minus.png -------------------------------------------------------------------------------- /molina/resources/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/open.png -------------------------------------------------------------------------------- /molina/resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/plus.png -------------------------------------------------------------------------------- /molina/resources/predict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/predict.png -------------------------------------------------------------------------------- /molina/resources/recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/recent.png -------------------------------------------------------------------------------- /molina/resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/resources/save.png -------------------------------------------------------------------------------- /molina/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/molina/styles.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenaN/MOLInA/HEAD/setup.cfg --------------------------------------------------------------------------------