pladams9 / hexsheets

A basic spreadsheet application with hexagonal cells inspired by: http://www.secretgeek.net/hexcel.
MIT License
91 stars 3 forks source link

Extract MVC from hexsheets #60

Closed pladams9 closed 4 years ago

pladams9 commented 4 years ago

This pulls the MVC components out into a reusable package called tk_mvc which includes classes View, Event, BaseController, and BaseWindow.

BaseController is extended in src/controller.py to connect with HexSheets' model (which has been refactored/renamed in the core package).

BaseWindow is an extendable class from which all windows in the application should be derived. Currently that is just MainWindow.

Closes #32