2020-01-12 02:22:03 +04:00
|
|
|
export { ActionManager } from "./manager";
|
|
|
|
export { actionDeleteSelected } from "./actionDeleteSelected";
|
|
|
|
export {
|
|
|
|
actionBringForward,
|
|
|
|
actionBringToFront,
|
|
|
|
actionSendBackward,
|
2020-01-24 12:04:54 +02:00
|
|
|
actionSendToBack,
|
2020-01-12 02:22:03 +04:00
|
|
|
} from "./actionZindex";
|
|
|
|
export { actionSelectAll } from "./actionSelectAll";
|
|
|
|
export {
|
|
|
|
actionChangeStrokeColor,
|
|
|
|
actionChangeBackgroundColor,
|
|
|
|
actionChangeStrokeWidth,
|
|
|
|
actionChangeFillStyle,
|
|
|
|
actionChangeSloppiness,
|
|
|
|
actionChangeOpacity,
|
|
|
|
actionChangeFontSize,
|
2020-01-24 12:04:54 +02:00
|
|
|
actionChangeFontFamily,
|
2020-01-12 02:22:03 +04:00
|
|
|
} from "./actionProperties";
|
|
|
|
|
|
|
|
export {
|
|
|
|
actionChangeViewBackgroundColor,
|
2020-01-24 12:04:54 +02:00
|
|
|
actionClearCanvas,
|
2020-01-12 02:22:03 +04:00
|
|
|
} from "./actionCanvas";
|
|
|
|
|
|
|
|
export {
|
|
|
|
actionChangeProjectName,
|
|
|
|
actionChangeExportBackground,
|
|
|
|
actionSaveScene,
|
2020-01-24 12:04:54 +02:00
|
|
|
actionLoadScene,
|
2020-01-12 02:22:03 +04:00
|
|
|
} from "./actionExport";
|
|
|
|
|
|
|
|
export { actionCopyStyles, actionPasteStyles } from "./actionStyles";
|