function cRichTextEditor(){ this.emwindow = new Array; this.editor = "body_1"; this.table = ""; this.id = "1"; this.buildEditor(); this.saveFlag = 0; } cRichTextEditor.prototype.loadEditor = function(ID) { var _this = this; _this.id = ID; parentDiv = document.getElementById("body_position_"+this.id); this.editor = "body_"+this.id; if(this.table.parentNode) this.table.parentNode.removeChild(this.table); if( parentDiv.firstChild ) { if (!parentDiv.firstChild.hasChildNodes()) parentDiv.insertBefore(this.table,parentDiv.firstChild); } else parentDiv.appendChild(this.table); var mail_as_plain = document.getElementById( 'textplain_rt_checkbox_' + this.id ); this.table.style.visibility = ( mail_as_plain && mail_as_plain.checked ) ? 'hidden' : 'visible'; if(!Element(this.editor)) { this.createElementEditor(this.editor); } else { Element( 'viewsource_rt_checkbox_' + this.id ).checked=false; } document.getElementById('fontname').selectedIndex = 0; document.getElementById('fontsize').selectedIndex = 0; } cRichTextEditor.prototype.createElementEditor = function(pObj) { iframe = document.createElement("IFRAME"); iframe.id = pObj; iframe.name = pObj; iframe.width = "99%"; iframe.height = 300; iframe.setAttribute("unselectable","on"); iframe.setAttribute("tabIndex","1"); config_events( iframe, 'onload', function( ) { if ( iframe.contentWindow.document.body && iframe.contentWindow.document.body.contentEditable ) iframe.contentWindow.document.body.contentEditable = true; if ( iframe.contentWindow.document.documentElement ){ iframe.contentWindow.document.documentElement.style.background = '#fff'; iframe.contentWindow.document.documentElement.style.fontSize = '16px'; } }); parentDiv.appendChild(iframe); var source = document.createElement( 'input' ); source.id = 'viewsource_rt_checkbox_' + this.id; source.type = "checkbox"; source.setAttribute("tabIndex","-1"); source.onclick = function( ) { RichTextEditor.viewsource(this.checked); }; source = parentDiv.appendChild( document.createElement( 'span' ).appendChild( source ).parentNode ).appendChild( document.createTextNode( get_lang( 'View HTML source' ) + '.' ) ).parentNode; } cRichTextEditor.prototype.loadStyle = function(tag, css_file) { var theRules = new Array(); var stylePRE = ""; for(var s = 0; s < document.styleSheets.length; s++) { if(document.styleSheets[s].href != null && document.styleSheets[s].href.match("templates/"+template+"/"+css_file)){ if (document.styleSheets[s].cssRules) theRules = document.styleSheets[s].cssRules; else if (document.styleSheets[s].rules) theRules = document.styleSheets[s].rules; break; } } for(var s = 0;s < theRules.length; s++){ if(theRules[s].selectorText.toLowerCase() == tag.toLowerCase()){ stylePRE = theRules[s].style; break; } } var _body = Element(this.editor); var i_doc = (document.all) ? _body.contentWindow.document: _body.contentDocument; var hh1 = i_doc.getElementsByTagName('head')[0]; // For IE if(typeof(hh1) == 'undefined'){ hh1 = i_doc.createElement("head"); i_doc.appendChild(hh1); } var ss1 = i_doc.createElement('style'); ss1.setAttribute("type", "text/css"); var def = tag.toLowerCase()+' {'+stylePRE.cssText+'}'; if (ss1.styleSheet) { ss1.styleSheet.cssText = def; } else { var tt1 = i_doc.createTextNode(def); ss1.appendChild(tt1); } hh1.appendChild(ss1); } cRichTextEditor.prototype.viewsource = function(source) { var html; var mainField = document.getElementById(this.editor).contentWindow; if (source) { if (is_ie){ connector.loadScript('html2xhtml'); html = frames[this.editor].document.body; var xhtml = get_xhtml(html, 'en', 'iso-8859-1'); frames[this.editor].document.body.innerText = xhtml; document.getElementById("table_richtext_toolbar").style.visibility="hidden"; } else{ html = document.createTextNode(document.getElementById(this.editor).contentWindow.document.body.innerHTML); document.getElementById(this.editor).contentWindow.document.body.innerHTML = ""; html = document.getElementById(this.editor).contentWindow.document.importNode(html,false); document.getElementById(this.editor).contentWindow.document.body.appendChild(html); document.getElementById("table_richtext_toolbar").style.visibility="hidden"; } } else { if (is_ie){ var output = escape(frames[this.editor].document.body.innerText); output = output.replace("%3CP%3E%0D%0A%3CHR%3E", "%3CHR%3E"); output = output.replace("%3CHR%3E%0D%0A%3C/P%3E", "%3CHR%3E"); frames[this.editor].document.body.innerHTML = unescape(output); document.getElementById("table_richtext_toolbar").style.visibility="visible"; } else{ html = document.getElementById(this.editor).contentWindow.document.body.ownerDocument.createRange(); html.selectNodeContents(document.getElementById(this.editor).contentWindow.document.body); document.getElementById(this.editor).contentWindow.document.body.innerHTML = html.toString(); document.getElementById("table_richtext_toolbar").style.visibility="visible"; } } } cRichTextEditor.prototype.plain = function(source) { var html; var editor = document.getElementById( this.editor ); if (source) { if (is_ie){ connector.loadScript('html2xhtml'); html = frames[this.editor].document.body; var xhtml = get_xhtml(html, 'en', 'iso-8859-1'); frames[this.editor].document.body.innerText = xhtml; document.getElementById("table_richtext_toolbar").style.visibility="hidden"; } else{ html = document.createTextNode( editor.contentWindow.document.body.innerHTML ); this.table.style.visibility="hidden"; editor.contentWindow.document.body.innerHTML = ''; var textarea = document.createElement( 'textarea' ); textarea.style.width = '99%'; textarea.style.height = '300px'; textarea.style.fontSize = '12pt'; textarea.innerHTML = html.nodeValue.replace( //mg, "\n" ).replace( /(<([^>]+)>)/ig, '' ); editor.style.width = '0px'; editor.style.height = '0px'; editor.style.visibility = 'hidden'; editor.parentNode.insertBefore( textarea, editor ); textarea.focus( ); } } else { if (is_ie){ var output = escape(frames[this.editor].document.body.innerText); output = output.replace("%3CP%3E%0D%0A%3CHR%3E", "%3CHR%3E"); output = output.replace("%3CHR%3E%0D%0A%3C/P%3E", "%3CHR%3E"); frames[this.editor].document.body.innerHTML = unescape(output); document.getElementById("table_richtext_toolbar").style.visibility="visible"; } else{ editor.contentWindow.document.body.innerHTML = editor.previousSibling.value.replace( /\n/g, '
' ); editor.parentNode.removeChild( editor.previousSibling ); editor.style.width = '99%'; editor.style.height = '300px'; editor.style.visibility = 'visible'; this.loadEditor( this.id ); } } } cRichTextEditor.prototype.buildEditor = function() { this.table = document.createElement("TABLE"); this.table.id = "table_richtext_toolbar"; this.table.className = "richtext_toolbar"; this.table.width = "100%"; var tbody = document.createElement("TBODY"); var tr = document.createElement("TR"); var td = document.createElement("TD"); var div_button_rt = document.createElement("DIV"); selectBox=document.createElement("SELECT"); selectBox.id="fontname"; selectBox.setAttribute("tabIndex","-1"); selectBox.onchange = function () {RichTextEditor.Select("fontname");}; selectBox.className = 'select_richtext'; var option1 = new Option(get_lang('Font'), 'Font'); var option2 = new Option('Arial', 'Arial'); var option3 = new Option('Courier', 'Courier'); var option4 = new Option('Times New Roman', 'Times'); if (is_ie){ selectBox.add(option1); selectBox.add(option2); selectBox.add(option3); selectBox.add(option4); } else{ selectBox.add(option1, null); selectBox.add(option2, null); selectBox.add(option3, null); selectBox.add(option4, null); } div_button_rt.appendChild(selectBox); selectBox=document.createElement("SELECT"); selectBox.id="fontsize"; selectBox.setAttribute("tabIndex","-1"); selectBox.setAttribute("unselectable","on"); selectBox.className = 'select_richtext'; selectBox.onchange = function () {RichTextEditor.Select("fontsize");}; var option1 = new Option(get_lang('Size'), 'Size'); var option2 = new Option('1 (8 pt)','1' ); var option3 = new Option('2 (10 pt)','2'); var option4 = new Option('3 (12 pt)','3'); var option5 = new Option('4 (14 pt)','4'); var option6 = new Option('5 (18 pt)','5'); var option7 = new Option('6 (24 pt)','6'); var option8 = new Option('7 (36 pt)','7'); if (is_ie){ selectBox.add(option1); selectBox.add(option2); selectBox.add(option3); selectBox.add(option4); selectBox.add(option5); selectBox.add(option6); selectBox.add(option7); selectBox.add(option8); } else{ selectBox.add(option1, null); selectBox.add(option2, null); selectBox.add(option3, null); selectBox.add(option4, null); selectBox.add(option5, null); selectBox.add(option6, null); selectBox.add(option7, null); selectBox.add(option8, null); } div_button_rt.appendChild(selectBox); var buttons = ['bold', 'italic', 'underline', 'forecolor', 'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'undo', 'redo', 'insertorderedlist', 'insertunorderedlist', 'outdent', 'indent', 'link', 'image', 'table', 'signature']; for (var i=0; i"); if (command == 'signature'){ if (is_ie){ var sel = document.selection; if (sel!=null) { var rng = sel.createRange(); if (rng!=null) rng.pasteHTML(signature); } } else{ mainField.document.execCommand('inserthtml', false, signature); } } else if (command == 'CreateLink') mainField.document.execCommand('CreateLink', false, option); else if (command == 'Table'){ if (is_ie){ var sel = document.selection; if (sel!=null) { var rng = sel.createRange(); if (rng!=null) rng.pasteHTML(option); } } else mainField.document.execCommand('inserthtml', false, option); } else if (command == 'Image') mainField.document.execCommand('InsertImage', false, option); else if (command == 'spellCheck' && preferences.use_SpellChecker != '0'){ beginSpellCheck(); // configure spellCheck(); // run spellChecker } else mainField.document.execCommand(command, false, option); //mainField.focus(); } catch (e) {/* alert(e);*/ } } cRichTextEditor.prototype.createLink = function(){ var mainField = document.getElementById(this.editor).contentWindow; if (is_ie){ if ((mainField.document.selection.createRange().text) == ''){ alert(get_lang('Chose the text you want transform in link before.')); return; } } else{ if (mainField.window.getSelection() == ''){ alert(get_lang('Chose the text you want transform in link before.')); return; } } var szURL = prompt(get_lang('Enter with link URL:'), 'http://'); if ((szURL != null) && (szURL != "")){ this.editorCommand("CreateLink", szURL); } } // It include the image file in emails body // It saves and attach in drafts folder and open it cRichTextEditor.prototype.addInputFile = function() { //Begin: Verify if the image extension is allowed. var imgExtensions = new Array("jpeg", "jpg", "gif", "png", "bmp", "xbm", "tiff", "pcx"); var inputFile = document.getElementById('inputFile_img'); if(!inputFile.value) return false; var fileExtension = inputFile.value.split("."); fileExtension = fileExtension[(fileExtension.length-1)]; var deniedExtension = true; for(var i=0; i'; for (var i = 0; i < rows; i++){ insertTable += ""; for (var j = 0; j < cols; j++) insertTable += " "; insertTable += ""; } insertTable += ""; this.editorCommand('Table', insertTable); } cRichTextEditor.prototype.createTable = function(){ var form = document.getElementById("table_window"); if (form == null){ form = document.createElement("DIV"); form.id = "table_window"; form.style.visibility = "hidden"; form.style.position = "absolute"; form.style.background = "#eeeeee"; form.style.left = "0px"; form.style.top = "0px"; form.style.width = "0px"; form.style.height = "0px"; document.body.appendChild(form); } var form_table = document.createElement("DIV"); form_table.id = "form_table"; form_table.style.position = "absolute"; form_table.style.top = "5px"; form_table.style.left = "5px"; form_table.style.width = "190px"; form_table.style.height = "90px"; form_table.name = get_lang("Insert Table"); form_table.innerHTML = get_lang('Select the table size')+':

'+ ''+ ''+ ''+ '
'+ get_lang('Rows')+':'+get_lang('Cols')+':'+get_lang('Border')+':



'+ '    '+ ''; form.appendChild(form_table); this.showWindow(form); } cRichTextEditor.prototype.incrementField = function(id_val){ var field_text = document.getElementById(id_val); field_text.value = parseInt(field_text.value)+1; } cRichTextEditor.prototype.decrementField = function(id_val){ var field_text = document.getElementById(id_val); if (parseInt(field_text.value) > 0) field_text.value = parseInt(field_text.value)-1; } cRichTextEditor.prototype.createImage = function(){ if (preferences.auto_save_draft == 1){ autosave_time = 200000; clearTimeout(openTab.autosave_timer[currentTab]); } var form = document.getElementById("attachment_window"); if (form == null){ form = document.createElement("DIV"); form.id = "attachment_window"; form.style.visibility = "hidden"; form.style.position = "absolute"; form.style.background = "#eeeeee"; form.style.left = "0px"; form.style.top = "0px"; form.style.width = "0px"; form.style.height = "0px"; document.body.appendChild(form); } var form_upload = Element('form_upload'); if (form_upload == null) form_upload = document.createElement("DIV"); form_upload.id = "form_upload"; form_upload.style.position = "absolute"; form_upload.style.top = "5px"; form_upload.style.left = "5px"; form_upload.name = get_lang("Upload File"); form_upload.style.width = "450px"; form_upload.style.height = "75px"; form_upload.innerHTML = get_lang('Select the desired image file')+':
'+ '
' + ' ' + ''; form.appendChild(form_upload); this.showWindow(form); } cRichTextEditor.prototype.showWindow = function (div){ if(! div) { return; } if(! this.emwindow[div.id]) { div.style.width = div.firstChild.style.width; div.style.height = div.firstChild.style.height; div.style.zIndex = "10000"; var title = div.firstChild.name; var wHeight = div.offsetHeight + "px"; var wWidth = div.offsetWidth + "px"; div.style.width = div.offsetWidth - 5; win = new dJSWin({ id: 'win_'+div.id, content_id: div.id, width: wWidth, height: wHeight, title_color: '#3978d6', bg_color: '#eee', title: title, title_text_color: 'white', button_x_img: '../phpgwapi/images/winclose.gif', border: true }); this.emwindow[div.id] = win; win.draw(); } else win = this.emwindow[div.id]; win.open(); } cRichTextEditor.prototype.Select = function(selectname) { var mainField = Element(this.editor).contentWindow; var cursel = document.getElementById(selectname).selectedIndex; if (cursel != 0) { var selected = document.getElementById(selectname).options[cursel].value; mainField.document.execCommand(selectname, false, selected); document.getElementById(selectname).selectedIndex = "Size"; //cursel; } mainField.focus(); } cRichTextEditor.prototype.show_pc = function(command) { connector.loadScript("color_palette"); ColorPalette.loadPalette(this.id); if (ColorPalette.div.style.visibility != "visible") ColorPalette.div.style.visibility="visible"; else this.hide_pc(); } cRichTextEditor.prototype.hide_pc = function() { document.getElementById("palettecolor").style.visibility="hidden"; } cRichTextEditor.prototype.getOffsetTop = function(elm) { var mOffsetTop = elm.offsetTop;1 var mOffsetParent = elm.offsetParent; while(mOffsetParent){ mOffsetTop += mOffsetParent.offsetTop; mOffsetParent = mOffsetParent.offsetParent; } return mOffsetTop; } cRichTextEditor.prototype.getOffsetLeft = function(elm) { var mOffsetLeft = elm.offsetLeft; var mOffsetParent = elm.offsetParent; while(mOffsetParent){ mOffsetLeft += mOffsetParent.offsetLeft; mOffsetParent = mOffsetParent.offsetParent; } return mOffsetLeft; } //Build the Object RichTextEditor = new cRichTextEditor();