2013-06-17 13:42:53 +04:00
|
|
|
// TODO(grosbouddha): put under pskl namespace.
|
2013-09-28 23:10:12 +04:00
|
|
|
var Events = {
|
2013-09-29 02:01:18 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
TOOL_SELECTED : "TOOL_SELECTED",
|
|
|
|
TOOL_RELEASED : "TOOL_RELEASED",
|
|
|
|
PRIMARY_COLOR_SELECTED: "PRIMARY_COLOR_SELECTED",
|
|
|
|
PRIMARY_COLOR_UPDATED: "PRIMARY_COLOR_UPDATED",
|
|
|
|
SECONDARY_COLOR_SELECTED: "SECONDARY_COLOR_SELECTED",
|
|
|
|
SECONDARY_COLOR_UPDATED: "SECONDARY_COLOR_UPDATED",
|
2012-09-03 03:24:55 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
/**
|
|
|
|
* When this event is emitted, a request is sent to the localstorage
|
2013-09-29 02:01:18 +04:00
|
|
|
* Service to save the current framesheet. The storage service
|
2013-08-10 14:11:16 +04:00
|
|
|
* may not immediately store data (internal throttling of requests).
|
|
|
|
*/
|
|
|
|
LOCALSTORAGE_REQUEST: "LOCALSTORAGE_REQUEST",
|
2012-09-03 03:24:55 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
CANVAS_RIGHT_CLICKED: "CANVAS_RIGHT_CLICKED",
|
2012-09-03 03:24:55 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
/**
|
|
|
|
* Event to request a refresh of the display.
|
|
|
|
* A bit overkill but, it's just workaround in our current drawing system.
|
|
|
|
* TODO: Remove or rework when redraw system is refactored.
|
|
|
|
*/
|
|
|
|
REFRESH: "REFRESH",
|
2012-09-04 00:30:53 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
/**
|
|
|
|
* Temporary event to bind the redraw of right preview film to the canvas.
|
|
|
|
* This redraw should be driven by model updates.
|
|
|
|
* TODO(vincz): Remove.
|
|
|
|
*/
|
|
|
|
REDRAW_PREVIEWFILM: "REDRAW_PREVIEWFILM",
|
2012-09-08 20:44:06 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
/**
|
|
|
|
* Fired each time a user setting change.
|
|
|
|
* The payload will be:
|
|
|
|
* 1st argument: Name of the settings
|
|
|
|
* 2nd argument: New value
|
|
|
|
*/
|
|
|
|
USER_SETTINGS_CHANGED: "USER_SETTINGS_CHANGED",
|
2013-09-29 02:01:18 +04:00
|
|
|
|
2013-10-23 03:01:35 +04:00
|
|
|
/* Listened to by SettingsController */
|
|
|
|
CLOSE_SETTINGS_DRAWER : "CLOSE_SETTINGS_DRAWER",
|
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
/**
|
|
|
|
* The framesheet was reseted and is now probably drastically different.
|
|
|
|
* Number of frames, content of frames, color used for the palette may have changed.
|
|
|
|
*/
|
2013-09-29 02:01:18 +04:00
|
|
|
PISKEL_RESET: "PISKEL_RESET",
|
2012-09-12 14:01:47 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
FRAME_SIZE_CHANGED : "FRAME_SIZE_CHANGED",
|
2012-09-16 20:48:32 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
CURRENT_FRAME_SET: "CURRENT_FRAME_SET",
|
2012-09-12 14:01:47 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
SELECTION_CREATED: "SELECTION_CREATED",
|
|
|
|
SELECTION_MOVE_REQUEST: "SELECTION_MOVE_REQUEST",
|
|
|
|
SELECTION_DISMISSED: "SELECTION_DISMISSED",
|
2013-09-29 02:01:18 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
SHOW_NOTIFICATION: "SHOW_NOTIFICATION",
|
|
|
|
HIDE_NOTIFICATION: "HIDE_NOTIFICATION",
|
2012-09-12 14:01:47 +04:00
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
UNDO: "UNDO",
|
|
|
|
REDO: "REDO",
|
|
|
|
CUT: "CUT",
|
|
|
|
COPY: "COPY",
|
2013-09-29 01:52:51 +04:00
|
|
|
PASTE: "PASTE"
|
2012-08-31 12:45:07 +04:00
|
|
|
};
|