1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mozilla Communicator client code, released
* March 31, 1998.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998-1999
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Daniel Glazman (glazman@netscape.com)
* Charles Manske (cmanske@netscape.com)
*
* Alternatively, the contents of this file may be used under the terms of
* either of the GNU General Public License Version 2 or later (the "GPL"),
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
//Cancel() is in EdDialogCommon.js
var insertNew = true;
var tagname = "TAG NAME"
var gColor = "";
var LastPickedColor = "";
var ColorType = "Text";
var TextType = false;
var HighlightType = false;
var TableOrCell = false;
var LastPickedIsDefault = true;
var NoDefault = false;
var gColorObj;
// dialog initialization code
function Startup()
{
if (!window.arguments[1])
{
dump("EdColorPicker: Missing color object param\n");
return;
}
// window.arguments[1] is object to get initial values and return color data
gColorObj = window.arguments[1];
gColorObj.Cancel = false;
gDialog.ColorPicker = document.getElementById("ColorPicker");
gDialog.ColorInput = document.getElementById("ColorInput");
gDialog.LastPickedButton = document.getElementById("LastPickedButton");
gDialog.LastPickedColor = document.getElementById("LastPickedColor");
gDialog.CellOrTableGroup = document.getElementById("CellOrTableGroup");
gDialog.TableRadio = document.getElementById("TableRadio");
gDialog.CellRadio = document.getElementById("CellRadio");
gDialog.ColorSwatch = document.getElementById("ColorPickerSwatch");
gDialog.Ok = document.documentElement.getButton("accept");
// The type of color we are setting:
// text: Text, Link, ActiveLink, VisitedLink,
// or background: Page, Table, or Cell
if (gColorObj.Type)
{
ColorType = gColorObj.Type;
// Get string for dialog title from passed-in type
// (note constraint on editor.properties string name)
var prefs = GetPrefs();
var IsCSSPrefChecked = prefs.getBoolPref("editor.use_css");
if (GetCurrentEditor())
{
if (ColorType == "Page" && IsCSSPrefChecked && IsHTMLEditor())
document.title = GetString("BlockColor");
else
document.title = GetString(ColorType + "Color");
}
}
gDialog.ColorInput.value = "";
var tmpColor;
var haveTableRadio = false;
switch (ColorType)
{
case "Page":
tmpColor = gColorObj.PageColor;
if (tmpColor && tmpColor.toLowerCase() != "window")
gColor = tmpColor;
break;
case "Table":
if (gColorObj.TableColor)
gColor = gColorObj.TableColor;
break;
case "Cell":
if (gColorObj.CellColor)
gColor = gColorObj.CellColor;
break;
case "TableOrCell":
TableOrCell = true;
document.getElementById("TableOrCellGroup").collapsed = false;
haveTableRadio = true;
if (gColorObj.SelectedType == "Cell")
{
gColor = gColorObj.CellColor;
gDialog.CellOrTableGroup.selectedItem = gDialog.CellRadio;
gDialog.CellRadio.focus();
}
else
{
gColor = gColorObj.TableColor;
gDialog.CellOrTableGroup.selectedItem = gDialog.TableRadio;
gDialog.TableRadio.focus();
}
break;
case "Highlight":
HighlightType = true;
if (gColorObj.HighlightColor)
gColor = gColorObj.HighlightColor;
break;
default:
// Any other type will change some kind of text,
TextType = true;
tmpColor = gColorObj.TextColor;
if (tmpColor && tmpColor.toLowerCase() != "windowtext")
gColor = gColorObj.TextColor;
break;
}
// Set initial color in input field and in the colorpicker
SetCurrentColor(gColor);
gDialog.ColorPicker.initColor(gColor);
// Use last-picked colors passed in, or those persistent on dialog
if (TextType)
{
if ( !("LastTextColor" in gColorObj) || !gColorObj.LastTextColor)
gColorObj.LastTextColor = gDialog.LastPickedColor.getAttribute("LastTextColor");
LastPickedColor = gColorObj.LastTextColor;
}
else if (HighlightType)
{
if ( !("LastHighlightColor" in gColorObj) || !gColorObj.LastHighlightColor)
gColorObj.LastHighlightColor = gDialog.LastPickedColor.getAttribute("LastHighlightColor");
LastPickedColor = gColorObj.LastHighlightColor;
}
else
{
if ( !("LastBackgroundColor" in gColorObj) || !gColorObj.LastBackgroundColor)
gColorObj.LastBackgroundColor = gDialog.LastPickedColor.getAttribute("LastBackgroundColor");
LastPickedColor = gColorObj.LastBackgroundColor;
}
gDialog.LastPickedColor.setAttribute("style","background-color: "+LastPickedColor);
// Set method to detect clicking on OK button
// so we don't get fooled by changing "default" behavior
gDialog.Ok.setAttribute("onclick", "SetDefaultToOk()");
// Make the "Last-picked" the default button
// until the user selects a color
gDialog.Ok.removeAttribute("default");
gDialog.LastPickedButton.setAttribute("default","true");
// Caller can prevent user from submitting an empty, i.e., default color
NoDefault = gColorObj.NoDefault;
if (NoDefault)
{
// Hide the "Default button -- user must pick a color
document.getElementById("DefaultColorButton").collapsed = true;
}
// Set focus to colorpicker if not set to table radio buttons above
if (!haveTableRadio)
gDialog.ColorPicker.focus();
SetWindowLocation();
}
function ChangePalette(palette)
{
gDialog.ColorPicker.setAttribute("palettename", palette);
window.sizeToContent();
}
function SelectColor()
{
var color = gDialog.ColorPicker.color;
if (color)
SetCurrentColor(color);
}
function RemoveColor()
{
SetCurrentColor("");
gDialog.ColorInput.focus();
SetDefaultToOk();
}
function SelectColorByKeypress(aEvent)
{
if (aEvent.charCode == aEvent.DOM_VK_SPACE)
{
SelectColor();
SetDefaultToOk();
}
}
function SelectLastPickedColor()
{
SetCurrentColor(LastPickedColor);
if ( onAccept() )
//window.close();
return true;
return false;
}
function SetCurrentColor(color)
{
// TODO: Validate color?
if(!color) color = "";
gColor = TrimString(color).toLowerCase();
if (gColor == "mixed")
gColor = "";
gDialog.ColorInput.value = gColor;
SetColorSwatch();
}
function SetColorSwatch()
{
// TODO: DON'T ALLOW SPACES?
var color = TrimString(gDialog.ColorInput.value);
if (color)
{
gDialog.ColorSwatch.setAttribute("style",("background-color:"+color));
gDialog.ColorSwatch.removeAttribute("default");
}
else
{
gDialog.ColorSwatch.setAttribute("style",("background-color:inherit"));
gDialog.ColorSwatch.setAttribute("default","true");
}
}
function SetDefaultToOk()
{
gDialog.LastPickedButton.removeAttribute("default");
gDialog.Ok.setAttribute("default","true");
LastPickedIsDefault = false;
}
function ValidateData()
{
if (LastPickedIsDefault)
gColor = LastPickedColor;
else
gColor = gDialog.ColorInput.value;
gColor = TrimString(gColor).toLowerCase();
// TODO: Validate the color string!
if (NoDefault && !gColor)
{
ShowInputErrorMessage(GetString("NoColorError"));
SetTextboxFocus(gDialog.ColorInput);
return false;
}
return true;
}
function onAccept()
{
if (!ValidateData())
return false;
// Set return values and save in persistent color attributes
if (TextType)
{
gColorObj.TextColor = gColor;
if (gColor.length > 0)
{
gDialog.LastPickedColor.setAttribute("LastTextColor", gColor);
gColorObj.LastTextColor = gColor;
}
}
else if (HighlightType)
{
gColorObj.HighlightColor = gColor;
if (gColor.length > 0)
{
gDialog.LastPickedColor.setAttribute("LastHighlightColor", gColor);
gColorObj.LastHighlightColor = gColor;
}
}
else
{
gColorObj.BackgroundColor = gColor;
if (gColor.length > 0)
{
gDialog.LastPickedColor.setAttribute("LastBackgroundColor", gColor);
gColorObj.LastBackgroundColor = gColor;
}
// If table or cell requested, tell caller which element to set on
if (TableOrCell && gDialog.TableRadio.selected)
gColorObj.Type = "Table";
}
SaveWindowLocation();
return true; // do close the window
}
function onCancelColor()
{
// Tells caller that user canceled
gColorObj.Cancel = true;
SaveWindowLocation();
return true;
}
|