Bug 40330
This commit is contained in:
parent
b1304e86a6
commit
7653dc866d
|
@ -187,6 +187,12 @@ define([
|
||||||
style: "width:45px;",
|
style: "width:45px;",
|
||||||
menu : new Common.UI.Menu({
|
menu : new Common.UI.Menu({
|
||||||
items: [
|
items: [
|
||||||
|
{
|
||||||
|
id: 'control-settings-system-color',
|
||||||
|
caption: this.textSystemColor,
|
||||||
|
template: _.template('<a tabindex="-1" type="menuitem"><span class="menu-item-icon" style="background-image: none; width: 12px; height: 12px; margin: 1px 7px 0 -7px; background-color: #dcdcdc;"></span><%= caption %></a>')
|
||||||
|
},
|
||||||
|
{caption: '--'},
|
||||||
{ template: _.template('<div id="control-settings-color-menu" style="width: 169px; height: 220px; margin: 10px;"></div>') },
|
{ template: _.template('<div id="control-settings-color-menu" style="width: 169px; height: 220px; margin: 10px;"></div>') },
|
||||||
{ template: _.template('<a id="control-settings-color-new" style="padding-left:12px;">' + me.textNewColor + '</a>') }
|
{ template: _.template('<a id="control-settings-color-new" style="padding-left:12px;">' + me.textNewColor + '</a>') }
|
||||||
]
|
]
|
||||||
|
@ -201,7 +207,8 @@ define([
|
||||||
});
|
});
|
||||||
this.btnColor.render( $('#control-settings-color-btn'));
|
this.btnColor.render( $('#control-settings-color-btn'));
|
||||||
this.btnColor.setColor('000000');
|
this.btnColor.setColor('000000');
|
||||||
this.btnColor.menu.items[1].on('click', _.bind(this.addNewColor, this, this.colors, this.btnColor));
|
this.btnColor.menu.items[3].on('click', _.bind(this.addNewColor, this, this.colors, this.btnColor));
|
||||||
|
$('#control-settings-system-color').on('click', _.bind(this.onSystemColor, this));
|
||||||
|
|
||||||
this.btnApplyAll = new Common.UI.Button({
|
this.btnApplyAll = new Common.UI.Button({
|
||||||
el: $('#control-settings-btn-all')
|
el: $('#control-settings-btn-all')
|
||||||
|
@ -223,7 +230,10 @@ define([
|
||||||
|
|
||||||
onColorsSelect: function(picker, color) {
|
onColorsSelect: function(picker, color) {
|
||||||
this.btnColor.setColor(color);
|
this.btnColor.setColor(color);
|
||||||
|
var clr_item = this.btnColor.menu.$el.find('#control-settings-system-color > a');
|
||||||
|
clr_item.hasClass('selected') && clr_item.removeClass('selected');
|
||||||
this._isCanApplyColor = true;
|
this._isCanApplyColor = true;
|
||||||
|
this.isSystemColor = false;
|
||||||
},
|
},
|
||||||
|
|
||||||
updateThemeColors: function() {
|
updateThemeColors: function() {
|
||||||
|
@ -234,6 +244,16 @@ define([
|
||||||
picker.addNewColor((typeof(btn.color) == 'object') ? btn.color.color : btn.color);
|
picker.addNewColor((typeof(btn.color) == 'object') ? btn.color.color : btn.color);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onSystemColor: function(e) {
|
||||||
|
var color = Common.Utils.ThemeColor.getHexColor(220, 220, 220);
|
||||||
|
this.btnColor.setColor(color);
|
||||||
|
this.colors.clearSelection();
|
||||||
|
var clr_item = this.btnColor.menu.$el.find('#control-settings-system-color > a');
|
||||||
|
!clr_item.hasClass('selected') && clr_item.addClass('selected');
|
||||||
|
this._isCanApplyColor = true;
|
||||||
|
this.isSystemColor = true;
|
||||||
|
},
|
||||||
|
|
||||||
afterRender: function() {
|
afterRender: function() {
|
||||||
this.updateThemeColors();
|
this.updateThemeColors();
|
||||||
this._setDefaults(this.props);
|
this._setDefaults(this.props);
|
||||||
|
@ -255,10 +275,17 @@ define([
|
||||||
(val!==null && val!==undefined) && this.cmbShow.setValue(val);
|
(val!==null && val!==undefined) && this.cmbShow.setValue(val);
|
||||||
|
|
||||||
val = props.get_Color();
|
val = props.get_Color();
|
||||||
this._isCanApplyColor = !!val;
|
this.isSystemColor = this._isCanApplyColor = !!val;
|
||||||
val = (val) ? Common.Utils.ThemeColor.getHexColor(val.get_r(), val.get_g(), val.get_b()) : 'transparent';
|
if (val) {
|
||||||
this.btnColor.setColor(val);
|
val = Common.Utils.ThemeColor.getHexColor(val.get_r(), val.get_g(), val.get_b());
|
||||||
this.colors.selectByRGB(val,true);
|
this.colors.selectByRGB(val,true);
|
||||||
|
} else {
|
||||||
|
this.colors.clearSelection();
|
||||||
|
var clr_item = this.btnColor.menu.$el.find('#control-settings-system-color > a');
|
||||||
|
!clr_item.hasClass('selected') && clr_item.addClass('selected');
|
||||||
|
val = Common.Utils.ThemeColor.getHexColor(220, 220, 220);
|
||||||
|
}
|
||||||
|
this.btnColor.setColor(val);
|
||||||
|
|
||||||
val = props.get_Lock();
|
val = props.get_Lock();
|
||||||
(val===undefined) && (val = Asc.c_oAscSdtLockType.Unlocked);
|
(val===undefined) && (val = Asc.c_oAscSdtLockType.Unlocked);
|
||||||
|
@ -274,9 +301,13 @@ define([
|
||||||
props.put_Appearance(this.cmbShow.getValue());
|
props.put_Appearance(this.cmbShow.getValue());
|
||||||
|
|
||||||
if (this._isCanApplyColor) {
|
if (this._isCanApplyColor) {
|
||||||
|
if (this.isSystemColor) {
|
||||||
|
props.put_Color(null);
|
||||||
|
} else {
|
||||||
var color = Common.Utils.ThemeColor.getRgbColor(this.colors.getColor());
|
var color = Common.Utils.ThemeColor.getRgbColor(this.colors.getColor());
|
||||||
props.put_Color(color.get_r(), color.get_g(), color.get_b());
|
props.put_Color(color.get_r(), color.get_g(), color.get_b());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var lock = Asc.c_oAscSdtLockType.Unlocked;
|
var lock = Asc.c_oAscSdtLockType.Unlocked;
|
||||||
|
|
||||||
|
@ -306,9 +337,13 @@ define([
|
||||||
var props = new AscCommon.CContentControlPr();
|
var props = new AscCommon.CContentControlPr();
|
||||||
props.put_Appearance(this.cmbShow.getValue());
|
props.put_Appearance(this.cmbShow.getValue());
|
||||||
if (this._isCanApplyColor) {
|
if (this._isCanApplyColor) {
|
||||||
|
if (this.isSystemColor) {
|
||||||
|
props.put_Color(null);
|
||||||
|
} else {
|
||||||
var color = Common.Utils.ThemeColor.getRgbColor(this.colors.getColor());
|
var color = Common.Utils.ThemeColor.getRgbColor(this.colors.getColor());
|
||||||
props.put_Color(color.get_r(), color.get_g(), color.get_b());
|
props.put_Color(color.get_r(), color.get_g(), color.get_b());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
this.api.asc_SetContentControlProperties(props, null, true);
|
this.api.asc_SetContentControlProperties(props, null, true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -327,7 +362,8 @@ define([
|
||||||
textNone: 'None',
|
textNone: 'None',
|
||||||
textNewColor: 'Add New Custom Color',
|
textNewColor: 'Add New Custom Color',
|
||||||
textApplyAll: 'Apply to All',
|
textApplyAll: 'Apply to All',
|
||||||
textAppearance: 'Appearance'
|
textAppearance: 'Appearance',
|
||||||
|
textSystemColor: 'System'
|
||||||
|
|
||||||
}, DE.Views.ControlSettingsDialog || {}))
|
}, DE.Views.ControlSettingsDialog || {}))
|
||||||
});
|
});
|
|
@ -1053,6 +1053,7 @@
|
||||||
"DE.Views.ControlSettingsDialog.textTitle": "Content Control Settings",
|
"DE.Views.ControlSettingsDialog.textTitle": "Content Control Settings",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
|
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
|
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
|
||||||
|
"DE.Views.ControlSettingsDialog.textSystemColor": "System",
|
||||||
"DE.Views.CustomColumnsDialog.cancelButtonText": "Cancel",
|
"DE.Views.CustomColumnsDialog.cancelButtonText": "Cancel",
|
||||||
"DE.Views.CustomColumnsDialog.okButtonText": "Ok",
|
"DE.Views.CustomColumnsDialog.okButtonText": "Ok",
|
||||||
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
|
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
|
||||||
|
|
|
@ -395,7 +395,9 @@
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
#id-toolbar-menu-auto-fontcolor > a.selected {
|
#id-toolbar-menu-auto-fontcolor > a.selected,
|
||||||
|
#control-settings-system-color > a.selected,
|
||||||
|
#control-settings-system-color > a:hover {
|
||||||
span {
|
span {
|
||||||
outline: 1px solid #000;
|
outline: 1px solid #000;
|
||||||
border: 1px solid #fff;
|
border: 1px solid #fff;
|
||||||
|
|
Loading…
Reference in a new issue