📄 ftb-freetextbox.js
字号:
take = (this.undoArray[this.undoArrayPos - 1] != html);
if (take) {
this.undoArray[this.undoArrayPos] = html;
} else {
this.undoArrayPos--;
}
};
FTB_FreeTextBox.prototype.Undo = function() {
if (this.undoArrayPos > 0) {
var html = this.undoArray[--this.undoArrayPos];
if (html)
this.designEditor.document.body.innerHTML = html;
else
++this.undoArrayPos;
}
};
FTB_FreeTextBox.prototype.CanUndo = function() {
return true;
return (this.undoArrayPos > 0);
};
FTB_FreeTextBox.prototype.Redo = function() {
if (this.undoArrayPos < this.undoArray.length - 1) {
var html = this.undoArray[++this.undoArrayPos];
if (html)
this.designEditor.document.body.innerHTML = html;
else
--this.undoArrayPos;
}
};
FTB_FreeTextBox.prototype.CanRedo = function() {
return true;
return (this.undoArrayPos < this.undoArray.length - 1);
};
FTB_FreeTextBox.prototype.CapturePaste = function() {
switch (this.pasteMode) {
case FTB_PASTE_DISABLED:
return false;
case FTB_PASTE_TEXT:
if (window.clipboardData) {
var text = window.clipboardData.getData('Text');
text = text.replace(/<[^>]*>/gi,'');
this.InsertHtml(text);
} else {
alert("Your browser does not support pasting rich content");
}
return false;
default:
case FTB_PASTE_DEFAULT:
try {
this.ExecuteCommand('paste');
} catch (e) {
alert('Your security settings to not allow you to use this command. Please visit http://www.mozilla.org/editor/midasdemo/securityprefs.html for more information.');
}
return true;
}
};
FTB_FreeTextBox.prototype.Debug = function(text) {
if (this.debug)
this.debug.value += text + '\r';
};
FTB_FreeTextBox.prototype.UpdateToolbars = function() {
if (this.hasFocus) {
if (this.mode == FTB_MODE_DESIGN) {
if (this.enableToolbars) {
for (var i=0; i<this.buttons.length; i++) {
button = this.buttons[i];
if (button.customStateQuery)
button.state = button.customStateQuery();
else if (button.commandIdentifier != null && button.commandIdentifier != '')
button.state = this.QueryCommandState(button.commandIdentifier);
button.SetButtonBackground("Out");
}
for (var i=0; i<this.dropdownlists.length; i++) {
dropdownlist = this.dropdownlists[i];
if (dropdownlist.customStateQuery)
dropdownlist.SetSelected(dropdownlist.customStateQuery());
else if (dropdownlist.commandIdentifier != null && dropdownlist.commandIdentifier != '')
dropdownlist.SetSelected(this.QueryCommandValue(dropdownlist.commandIdentifier));
}
}
this.UpdateAncestorTrail();
}
} else {
if (this.enableToolbars) {
for (var i=0; i<this.buttons.length; i++) {
button = this.buttons[i];
button.state = FTB_BUTTON_OFF;
button.SetButtonBackground("Out");
}
for (var i=0; i<this.dropdownlists.length; i++) {
dropdownlist = this.dropdownlists[i];
dropdownlist.list.selectedIndex = 0;
}
}
this.UpdateAncestorTrail();
}
if (!this.undoTimer) {
this.RecordUndoStep();
var editor = this;
this.undoTimer = setTimeout(function() {
editor.undoTimer = null;
}, 500);
}
this.SetToolbarItemsEnabledState();
if (this.timerToolbar)
this.timerToolbar = null;
};
FTB_FreeTextBox.prototype.UpdateAncestorTrail = function() {
if (this.ancestorArea) {
if (this.hasFocus) {
ancestors = this.GetAllAncestors();
this.ancestorArea.innerHTML = "Path(" + ancestors.length + "): ";
for (var i = ancestors.length-1; i>-1; i--) {
var el = ancestors[i];
if (!el) {
continue;
}
var a = document.createElement("a");
a.href = "javascript:void();";
a.el = el;
a.ftb = this;
a.onclick = function() {
this.blur();
this.ftb.SelectNodeContents(this.el);
this.ftb.UpdateToolbars();
return false;
};
a.oncontextmenu = function () {
this.ftb.EditElementStyle(this.el);
return false;
}
var txt = el.tagName.toLowerCase();
if (txt == "input") txt = el.type;
a.title = el.style.cssText;
if (el.id) {
txt += "#" + el.id;
}
if (el.className) {
txt += "." + el.className;
}
a.appendChild(document.createTextNode("<" + txt + ">"));
this.ancestorArea.appendChild(a);
//if (i != 0)
// this.ancestorArea.appendChild(document.createTextNode(String.fromCharCode(0xbb)));
}
} else {
this.ancestorArea.innerHTML = "";
}
}
};
FTB_FreeTextBox.prototype.SetToolbarItemsEnabledState = function() {
if (!this.enableToolbars) return;
if (this.hasFocus || !this.initialized) {
if (this.mode == FTB_MODE_DESIGN ) {
for (i=0; i<this.buttons.length; i++) {
button = this.buttons[i];
if (button.customEnabled)
button.customEnabled();
else
button.disabled = false;
if (button.disabled)
this.DisableButton(button);
else
this.EnableButton(button);
}
for (i=0; i<this.dropdownlists.length; i++) {
this.dropdownlists[i].list.disabled=false;
}
} else {
for (i=0; i<this.buttons.length; i++) {
button = this.buttons[i];
if (button.htmlModeEnabled)
button.disabled=false
else
button.disabled = true;
if (button.disabled)
this.DisableButton(button);
else
this.EnableButton(button);
}
for (i=0; i<this.dropdownlists.length; i++) {
this.dropdownlists[i].list.selectedIndex=0;
this.dropdownlists[i].list.disabled=true;
}
}
} else {
// do nothing: uncomment code to disable buttons when the editor does not have focus
/*
for (i=0; i<this.buttons.length; i++)
this.DisableButton(this.buttons[i]);
for (i=0; i<this.dropdownlists.length; i++)
this.dropdownlists[i].list.disabled=true;
*/
}
};
FTB_FreeTextBox.prototype.DisableAllToolbarItems = function() {
if (this.enableToolbars) {
for (i=0; i<this.buttons.length; i++) {
this.DisableButton(this.buttons[i]);
}
for (i=0; i<this.dropdownlists.length; i++) {
this.dropdownlists[i].list.disabled=true;
}
}
};
FTB_FreeTextBox.prototype.EnableButton = function(button) {
if (FTB_Browser.isIE)
button.buttonImage.style.filter = "alpha(opacity = 100);";
//button.td.style.filters.alpha.opacity = 100;
else
button.buttonImage.style.MozOpacity = 1;
};
FTB_FreeTextBox.prototype.DisableButton = function(button) {
button.state = FTB_BUTTON_OFF;
button.SetButtonStyle("Out");
if (FTB_Browser.isIE)
button.buttonImage.style.filter = "alpha(opacity = 25);";
//button.td.style.filters.alpha.opacity = 25;
else
button.buttonImage.style.MozOpacity = 0.25;
};
FTB_FreeTextBox.prototype.CopyHtmlToIframe = function(iframe) {
if (this.initialized) {
html = this.htmlEditor.value;
iframe.document.body.innerHTML = html;
//this.Debug(html.replace('\r','<R>').replace('\t','<T>').replace('\n','<N>'));
} else {
iframe.document.open();
iframe.document.write("<html>" +
"<head>" +
((this.designModeCss != '' && FTB_Browser.isGecko) ? "<style type='text/css'>@import url(" + this.designModeCss + ");</style>" : "") +
((this.baseUrl != '') ? "<base href='" + this.baseUrl + "' />" : "") +
"</head>" +
"<body>" + this.htmlEditor.value + "</body>" +
"</html>");
//iframe.document.write(this.htmlEditor.value);
iframe.document.close();
}
};
FTB_FreeTextBox.prototype.CopyDesignToHtml = function() {
this.htmlEditor.value = this.designEditor.document.body.innerHTML;
// clear out default moz & ie properties
if (this.htmlEditor.value == '<br>' || this.htmlEditor.value == '<br>\r\n' || // Moz
this.htmlEditor.value == '<P> </P>') { // IE
this.htmlEditor.value = '';
}
};
FTB_FreeTextBox.prototype.GoToHtmlMode = function() {
if (this.mode == FTB_MODE_DESIGN) this.CopyDesignToHtml();
if (FTB_Browser.isGecko)
this.designEditor.document.designMode = 'Off';
this.designEditorArea.style.display = 'none';
this.htmlEditorArea.style.display = '';
this.previewPaneArea.style.display = 'none';
if (this.ancestorArea) this.ancestorArea.innerHTML = "";
this.SetActiveTab(this.htmlModeTab);
this.mode = FTB_MODE_HTML;
//this.Focus();
return true;
};
FTB_FreeTextBox.prototype.GoToDesignMode = function() {
if (this.mode == FTB_MODE_DESIGN) return false;
this.CopyHtmlToIframe(this.designEditor);
this.designEditorArea.style.display = '';
this.htmlEditorArea.style.display = 'none';
this.previewPaneArea.style.display = 'none';
// reset for Gecko
if (FTB_Browser.isGecko) {
this.designEditor.document.designMode = 'On';
this.designEditor.document.execCommand("useCSS", false, true);
}
if (this.ancestorArea) this.ancestorArea.innerHTML = "";
this.SetActiveTab(this.designModeTab);
//this.SetToolbarItemsEnabledState();
this.mode = FTB_MODE_DESIGN;
//this.Focus();
return true;
};
FTB_FreeTextBox.prototype.GoToPreviewMode = function() {
if (this.mode == FTB_MODE_DESIGN) this.CopyDesignToHtml();
this.CopyHtmlToIframe(this.previewPane);
this.designEditorArea.style.display = 'none';
this.htmlEditorArea.style.display = 'none';
this.previewPaneArea.style.display = '';
this.SetActiveTab(this.previewModeTab);
if (this.ancestorArea) this.ancestorArea.innerHTML = "";
this.mode = FTB_MODE_PREVIEW;
return true;
};
FTB_FreeTextBox.prototype.HtmlEncode = function( text ) {
if ( typeof( text ) != "string" )
text = text.toString() ;
text = text.replace(/&/g, "&") ;
text = text.replace(/"/g, """) ;
text = text.replace(/</g, "<") ;
text = text.replace(/>/g, ">") ;
text = text.replace(/'/g, "’") ;
return text ;
};
FTB_FreeTextBox.prototype.ExecuteCommand = function(commandName, middle, commandValue) {
if (this.mode != FTB_MODE_DESIGN) return;
this.designEditor.focus();
if (commandName == 'backcolor' && !FTB_Browser.isIE) commandName = 'hilitecolor';
if (!FTB_Browser.isIE) {
this.designEditor.document.execCommand("useCSS",null,true);
}
this.designEditor.document.execCommand(commandName,middle,commandValue);
if (this.clientSideTextChanged)
this.clientSideTextChanged(this);
};
FTB_FreeTextBox.prototype.QueryCommandState = function(commandName) {
if (this.mode != FTB_MODE_DESIGN) return false;
try {
if (this.designEditor.document.queryCommandState(commandName)) {
return FTB_BUTTON_ON;
} else {
// special case for paragraph on IE
if (commandName == 'justifyleft') {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -