Mozilla/mozilla/editor/ui/dialogs/content/EdButtonProps.js
cmanske%netscape.com 80166e4a8a Update for publishing UI, b=88208, r=brade, sr=ben
git-svn-id: svn://10.0.0.236/trunk@114574 18797224-902f-48f8-a5cc-f745e15eee43
2002-02-15 06:07:40 +00:00

166 lines
5.0 KiB
JavaScript

/* ***** 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 Button Properties Dialog.
*
* The Initial Developer of the Original Code is
* Neil Rashbrook.
* Portions created by the Initial Developer are Copyright (C) 2001
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): Neil Rashbrook <neil@parkwaycc.co.uk>
*
* Alternatively, the contents of this file may be used under the terms of
* either 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 ***** */
var insertNew;
var buttonElement;
// dialog initialization code
function Startup()
{
if (!InitEditorShell())
return;
gDialog = {
buttonType: document.getElementById("ButtonType"),
buttonName: document.getElementById("ButtonName"),
buttonValue: document.getElementById("ButtonValue"),
buttonDisabled: document.getElementById("ButtonDisabled"),
buttonTabIndex: document.getElementById("ButtonTabIndex"),
buttonAccessKey: document.getElementById("ButtonAccessKey"),
MoreSection: document.getElementById("MoreSection"),
MoreFewerButton: document.getElementById("MoreFewerButton"),
RemoveButton: document.getElementById("RemoveButton")
};
// Get a single selected button element
var tagName = "button";
buttonElement = editorShell.GetSelectedElement(tagName);
if (buttonElement)
// We found an element and don't need to insert one
insertNew = false;
else
{
insertNew = true;
// We don't have an element selected,
// so create one with default attributes
buttonElement = editorShell.CreateElementWithDefaults(tagName);
if (!buttonElement)
{
dump("Failed to get selected element or create a new one!\n");
window.close();
return;
}
// Hide button removing existing button
gDialog.RemoveButton.setAttribute("hidden", "true");
}
// Make a copy to use for AdvancedEdit
globalElement = buttonElement.cloneNode(false);
InitDialog();
InitMoreFewer();
gDialog.buttonType.focus();
SetWindowLocation();
}
function InitDialog()
{
var type = globalElement.getAttribute("type");
var index = 0;
switch (type)
{
case "button":
index = 2;
break;
case "reset":
index = 1;
break;
}
gDialog.buttonType.selectedIndex = index;
gDialog.buttonName.value = globalElement.getAttribute("name");
gDialog.buttonValue.value = globalElement.getAttribute("value");
gDialog.buttonDisabled.setAttribute("checked", globalElement.hasAttribute("disabled"));
gDialog.buttonTabIndex.value = globalElement.getAttribute("tabindex");
gDialog.buttonAccessKey.value = globalElement.getAttribute("accesskey");
}
function RemoveButton()
{
RemoveElementKeepingChildren(buttonElement);
SaveWindowLocation();
window.close();
}
function ValidateData()
{
var attributes = {
type: ["", "reset", "button"][gDialog.buttonType.selectedIndex],
name: gDialog.buttonName.value,
value: gDialog.buttonValue.value,
tabindex: gDialog.buttonTabIndex.value,
accesskey: gDialog.buttonAccessKey.value
};
for (var a in attributes)
{
if (attributes[a])
globalElement.setAttribute(a, attributes[a]);
else
globalElement.removeAttribute(a);
}
if (gDialog.buttonDisabled.checked)
globalElement.setAttribute("disabled", "");
else
globalElement.removeAttribute("disabled");
return true;
}
function onAccept()
{
// All values are valid - copy to actual element in doc or
// element created to insert
ValidateData();
editorShell.CloneAttributes(buttonElement, globalElement);
if (insertNew && !InsertElementAroundSelection(buttonElement))
{
buttonElement.innerHTML = editorShell.GetContentsAs("text/html", 1); // OutputSelectionOnly (see nsIDocumentEncoder.h)
editorShell.InsertElementAtSelection(buttonElement, true);
}
SaveWindowLocation();
return true;
}