/********************************************************************
 * openWYSIWYG settings file Copyright (c) 2006 openWebWare.com
 * Contact us at devs@openwebware.com
 * This copyright notice MUST stay intact for use.
 *
 * $Id: wysiwyg-settings.js,v 1.4 2007/01/22 23:05:57 xhaggi Exp $
 ********************************************************************/

/*
 * Full featured setup
 */
var full = new WYSIWYG.Settings();
//full.ImagesDir = "images/";
//full.PopupsDir = "popups/";
//full.CSSFile = "styles/wysiwyg.css";
full.Width = "500px"; 
full.Height = "200px";
// customize toolbar buttons
full.addToolbarElement("font", 3, 1); 
full.addToolbarElement("fontsize", 3, 2);
full.addToolbarElement("headings", 3, 3);
// openImageLibrary addon implementation
//full.ImagePopupFile = "addons/imagelibrary/insert_image.php";
//full.ImagePopupWidth = 600;
//full.ImagePopupHeight = 245;
full.DefaultStyle = "style.css";
full.removeToolbarElement("insertimage");
full.removeToolbarElement("preview");
full.removeToolbarElement("print");
full.removeToolbarElement("save");
full.removeToolbarElement("viewSource");
full.removeToolbarElement("help");


/*
 * MASTER
 */
var masterwyg = new WYSIWYG.Settings();
//masterwyg.ImagesDir = "images/";
//masterwyg.PopupsDir = "popups/";
//masterwyg.CSSFile = "style.css";
masterwyg.Width = "500px"; 
masterwyg.Height = "200px";
// customize toolbar buttons
masterwyg.addToolbarElement("font", 3, 1); 
masterwyg.addToolbarElement("fontsize", 3, 2);
masterwyg.addToolbarElement("headings", 3, 3);
// openImageLibrary addon implementation
//masterwyg.ImagePopupFile = "addons/imagelibrary/insert_image.php";
//masterwyg.ImagePopupWidth = 600;
//masterwyg.ImagePopupHeight = 245;
masterwyg.DefaultStyle = "style.css";
//masterwyg.removeToolbarElement("insertimage");
masterwyg.removeToolbarElement("preview");
masterwyg.removeToolbarElement("print");
masterwyg.removeToolbarElement("save");
//masterwyg.removeToolbarElement("viewSource");
masterwyg.removeToolbarElement("help");


/*
 * Fullpic featured setup *********** Adds Picture Insert
 */
var fullpic = new WYSIWYG.Settings();
//full.ImagesDir = "images/";
//full.PopupsDir = "popups/";
//full.CSSFile = "styles/wysiwyg.css";
fullpic.Width = "100%"; 
fullpic.Height = "500px";
// customize toolbar buttons
fullpic.addToolbarElement("font", 3, 1); 
fullpic.addToolbarElement("fontsize", 3, 2);
fullpic.addToolbarElement("headings", 3, 3);
// openImageLibrary addon implementation
//full.ImagePopupFile = "addons/imagelibrary/insert_image.php";
//full.ImagePopupWidth = 600;
//full.ImagePopupHeight = 245;
fullpic.DefaultStyle = "style.css";
//fullpic.removeToolbarElement("insertimage");
fullpic.removeToolbarElement("preview");
fullpic.removeToolbarElement("print");
fullpic.removeToolbarElement("save");
fullpic.removeToolbarElement("viewSource");
fullpic.removeToolbarElement("help");




/*
 * Small Setup Example
 */
var small = new WYSIWYG.Settings();
small.Width = "350px";
small.Height = "100px";
small.DefaultStyle = "font-family: Arial; font-size: 12px; background-color: #AA99AA";
small.Toolbar[0] = new Array("font", "fontsize", "bold", "italic", "underline"); // small setup for toolbar 1
small.Toolbar[1] = ""; // disable toolbar 2
small.StatusBarEnabled = false;
