Files
pyfa/gui/fitCommands/__init__.py
blitzmann d5aeb0913d Start refactoring the refactor that was started with command pattern refactoring.
Instead of attempting to keep all the Fit service functionality, move these into specific "Fitting Commands" that are designed to define a unit of work and it's undo. Then, we will have "GUI Commands" which are defined as actions taken by the user themselves - these will usually use one or more "Fitting Commands".
2018-07-24 01:29:57 -04:00

5 lines
264 B
Python

from .moduleStateChange import GuiModuleStateChangeCommand
from .moduleAdd import GuiModuleAddCommand
from .moduleRemove import GuiModuleRemoveCommand
from .moduleAddCharge import GuiModuleAddChargeCommand
from .moduleSwapOrClone import GuiModuleSwapOrCloneCommand