-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some refactoring and generalizing, based on writing docs.
- Loading branch information
1 parent
4901c48
commit 5c71cfc
Showing
9 changed files
with
116 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# | ||
# (C) Copyright 2015 Enthought, Inc., Austin, TX | ||
# All right reserved. | ||
# | ||
# This file is open source software distributed according to the terms in | ||
# LICENSE.txt | ||
# | ||
|
||
""" | ||
Enable Apptools Integration | ||
=========================== | ||
Apptools (https://github.com/enthought/apptools) is a library of useful code | ||
for building GUI applications. It includes code for features like preferences, | ||
undo/redo support, and seelction management. | ||
The code in this sub-package helps applications interface with the | ||
functionality provided by Apptools, but is optional from the point of view | ||
of the Enable codebase as a whole. | ||
""" | ||
|
||
# Support for Undo/Redo with Enable | ||
from .commands import ComponentCommand, ResizeCommand, MovePositionCommand | ||
from .command_tool import BaseCommandTool, BaseUndoTool | ||
from .move_command_tool import MoveCommandTool | ||
from .resize_command_tool import ResizeCommandTool | ||
from .undo_tool import UndoTool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters