├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── assets ├── icon.icns ├── icon.ico ├── icons │ ├── arrow_back.png │ ├── arrow_forward.png │ ├── background.png │ ├── bucket.png │ ├── circle.png │ ├── clear.png │ ├── color.png │ ├── eraser.png │ ├── file.png │ ├── grid.png │ ├── grid_color.png │ ├── open.png │ ├── pencil.png │ ├── picker.png │ ├── save.png │ ├── shift.png │ └── square.png ├── logo.png └── tilf.png ├── file_manager.py ├── main.py ├── screenshots ├── linux.png ├── macos.png └── windows.png ├── state.py ├── style.qss ├── tools ├── base_tool.py ├── ellipse.py ├── eraser.py ├── eyedropper.py ├── fill.py ├── pencil.py ├── rect.py └── shape.py ├── ui ├── canvas.py ├── dialogs │ ├── about.py │ ├── multiple_choice.py │ └── new_canvas.py ├── editor.py └── toolbar.py └── utils ├── config.py ├── log.py └── resource_path.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icons/arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/arrow_back.png -------------------------------------------------------------------------------- /assets/icons/arrow_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/arrow_forward.png -------------------------------------------------------------------------------- /assets/icons/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/background.png -------------------------------------------------------------------------------- /assets/icons/bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/bucket.png -------------------------------------------------------------------------------- /assets/icons/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/circle.png -------------------------------------------------------------------------------- /assets/icons/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/clear.png -------------------------------------------------------------------------------- /assets/icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/color.png -------------------------------------------------------------------------------- /assets/icons/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/eraser.png -------------------------------------------------------------------------------- /assets/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/file.png -------------------------------------------------------------------------------- /assets/icons/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/grid.png -------------------------------------------------------------------------------- /assets/icons/grid_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/grid_color.png -------------------------------------------------------------------------------- /assets/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/open.png -------------------------------------------------------------------------------- /assets/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/pencil.png -------------------------------------------------------------------------------- /assets/icons/picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/picker.png -------------------------------------------------------------------------------- /assets/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/save.png -------------------------------------------------------------------------------- /assets/icons/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/shift.png -------------------------------------------------------------------------------- /assets/icons/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/icons/square.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/tilf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/assets/tilf.png -------------------------------------------------------------------------------- /file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/file_manager.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/main.py -------------------------------------------------------------------------------- /screenshots/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/screenshots/linux.png -------------------------------------------------------------------------------- /screenshots/macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/screenshots/macos.png -------------------------------------------------------------------------------- /screenshots/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/screenshots/windows.png -------------------------------------------------------------------------------- /state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/state.py -------------------------------------------------------------------------------- /style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/style.qss -------------------------------------------------------------------------------- /tools/base_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/tools/base_tool.py -------------------------------------------------------------------------------- /tools/ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/tools/ellipse.py -------------------------------------------------------------------------------- /tools/eraser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/tools/eraser.py -------------------------------------------------------------------------------- /tools/eyedropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/tools/eyedropper.py -------------------------------------------------------------------------------- /tools/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/tools/fill.py -------------------------------------------------------------------------------- /tools/pencil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/tools/pencil.py -------------------------------------------------------------------------------- /tools/rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/tools/rect.py -------------------------------------------------------------------------------- /tools/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/tools/shape.py -------------------------------------------------------------------------------- /ui/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/ui/canvas.py -------------------------------------------------------------------------------- /ui/dialogs/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/ui/dialogs/about.py -------------------------------------------------------------------------------- /ui/dialogs/multiple_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/ui/dialogs/multiple_choice.py -------------------------------------------------------------------------------- /ui/dialogs/new_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/ui/dialogs/new_canvas.py -------------------------------------------------------------------------------- /ui/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/ui/editor.py -------------------------------------------------------------------------------- /ui/toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/ui/toolbar.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/utils/log.py -------------------------------------------------------------------------------- /utils/resource_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danterolle/tilf/HEAD/utils/resource_path.py --------------------------------------------------------------------------------