Type.registerNamespace("Sys.Extended.UI.HtmlEditor.ToolbarButtons");
Sys.Extended.UI.HtmlEditor.ToolbarButtons.Ltr = function(element) {
Sys.Extended.UI.HtmlEditor.ToolbarButtons.Ltr.initializeBase(this, [element]);
}
Sys.Extended.UI.HtmlEditor.ToolbarButtons.Ltr.prototype = {
callMethod: function() {
if(!Sys.Extended.UI.HtmlEditor.ToolbarButtons.Ltr.callBaseMethod(this, "callMethod"))
return false;
this._designPanel._doc.body.style.direction = (!this.checkState()) ? "" : "rtl";
if(!Sys.Extended.UI.HtmlEditor.isIE) {
var sel = this._designPanel._getSelection(),
range = this._designPanel._createRange(sel);
this._designPanel._removeAllRanges(sel);
this._designPanel._selectRange(sel, range);
this._designPanel.focusEditor();
}
var button = this;
setTimeout(function() {
button._editPanel.updateToolbar();
}, 0);
},
checkState: function() {
if(!Sys.Extended.UI.HtmlEditor.ToolbarButtons.Ltr.callBaseMethod(this, "checkState"))
return false;
if(!(this._designPanel._doc.body.style.direction && this._designPanel._doc.body.style.direction == "rtl"))
return true;
return false;
}
}
Sys.Extended.UI.HtmlEditor.ToolbarButtons.Ltr.registerClass("Sys.Extended.UI.HtmlEditor.ToolbarButtons.Ltr", Sys.Extended.UI.HtmlEditor.ToolbarButtons.EditorToggleButton);