2012-09-16 15:50:40 +04:00
|
|
|
(function () {
|
|
|
|
var ns = $.namespace("pskl.controller");
|
|
|
|
|
2013-09-22 23:02:43 +04:00
|
|
|
ns.PaletteController = function () {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
ns.PaletteController.prototype.init = function() {
|
|
|
|
var transparentColorPalette = $(".palette-color[data-color=TRANSPARENT]");
|
|
|
|
transparentColorPalette.mouseup($.proxy(this.onPaletteColorClick_, this));
|
|
|
|
|
|
|
|
$.subscribe(Events.PRIMARY_COLOR_UPDATED, $.proxy(function(evt, color) {
|
|
|
|
this.updateColorPicker_(color, $('#color-picker'));
|
|
|
|
}, this));
|
|
|
|
|
|
|
|
$.subscribe(Events.SECONDARY_COLOR_UPDATED, $.proxy(function(evt, color) {
|
|
|
|
this.updateColorPicker_(color, $('#secondary-color-picker'));
|
|
|
|
}, this));
|
|
|
|
|
|
|
|
// Initialize colorpickers:
|
|
|
|
var colorPicker = $('#color-picker');
|
|
|
|
colorPicker.val(Constants.DEFAULT_PEN_COLOR);
|
|
|
|
colorPicker.change({isPrimary : true}, $.proxy(this.onPickerChange_, this));
|
|
|
|
|
|
|
|
|
|
|
|
var secondaryColorPicker = $('#secondary-color-picker');
|
|
|
|
secondaryColorPicker.val(Constants.TRANSPARENT_COLOR);
|
|
|
|
secondaryColorPicker.change({isPrimary : false}, $.proxy(this.onPickerChange_, this));
|
|
|
|
|
2013-09-27 00:43:45 +04:00
|
|
|
window.jscolor.install();
|
2012-09-16 15:50:40 +04:00
|
|
|
};
|
2012-09-11 02:52:09 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
2012-09-16 15:50:40 +04:00
|
|
|
ns.PaletteController.prototype.onPickerChange_ = function(evt, isPrimary) {
|
|
|
|
var inputPicker = $(evt.target);
|
2013-04-09 03:32:30 +04:00
|
|
|
if(evt.data.isPrimary) {
|
|
|
|
$.publish(Events.PRIMARY_COLOR_SELECTED, [inputPicker.val()]);
|
2013-09-22 23:02:43 +04:00
|
|
|
} else {
|
2013-04-09 03:32:30 +04:00
|
|
|
$.publish(Events.SECONDARY_COLOR_SELECTED, [inputPicker.val()]);
|
|
|
|
}
|
2012-09-16 15:50:40 +04:00
|
|
|
};
|
2012-09-16 19:25:51 +04:00
|
|
|
|
2012-09-16 15:50:40 +04:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
ns.PaletteController.prototype.onPaletteColorClick_ = function (event) {
|
|
|
|
var selectedColor = $(event.target).data("color");
|
2013-04-09 03:32:30 +04:00
|
|
|
var isLeftClick = (event.which == 1);
|
|
|
|
var isRightClick = (event.which == 3);
|
|
|
|
if (isLeftClick) {
|
|
|
|
$.publish(Events.PRIMARY_COLOR_SELECTED, [selectedColor]);
|
|
|
|
} else if (isRightClick) {
|
|
|
|
$.publish(Events.SECONDARY_COLOR_SELECTED, [selectedColor]);
|
2012-09-16 15:50:40 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
ns.PaletteController.prototype.updateColorPicker_ = function (color, colorPicker) {
|
|
|
|
if (color == Constants.TRANSPARENT_COLOR) {
|
|
|
|
// We can set the current palette color to transparent.
|
|
|
|
// You can then combine this transparent color with an advanced
|
|
|
|
// tool for customized deletions.
|
|
|
|
// Eg: bucket + transparent: Delete a colored area
|
|
|
|
// Stroke + transparent: hollow out the equivalent of a stroke
|
|
|
|
|
|
|
|
// The colorpicker can't be set to a transparent state.
|
|
|
|
// We set its background to white and insert the
|
|
|
|
// string "TRANSPARENT" to mimic this state:
|
|
|
|
colorPicker[0].color.fromString("#fff");
|
|
|
|
colorPicker.val(Constants.TRANSPARENT_COLOR);
|
|
|
|
} else {
|
|
|
|
colorPicker[0].color.fromString(color);
|
|
|
|
}
|
|
|
|
};
|
2012-09-04 00:30:53 +04:00
|
|
|
})();
|
|
|
|
|
|
|
|
|
|
|
|
|