OSDN Git Service

import source-tree based svn r84.
[bluegriffon/BlueGriffon.git] / base / content / bluegriffon / dialogs / languages.js
1 /* ***** BEGIN LICENSE BLOCK *****
2  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3  *
4  * The contents of this file are subject to the Mozilla Public License Version
5  * 1.1 (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  * http://www.mozilla.org/MPL/
8  *
9  * Software distributed under the License is distributed on an "AS IS" basis,
10  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11  * for the specific language governing rights and limitations under the
12  * License.
13  *
14  * The Original Code is BlueGriffon.
15  *
16  * The Initial Developer of the Original Code is
17  * Disruptive Innovations SARL.
18  * Portions created by the Initial Developer are Copyright (C) 2008
19  * the Initial Developer. All Rights Reserved.
20  *
21  * Contributor(s):
22  *   Daniel Glazman <daniel.glazman@disruptive-innovations.com>, Original author
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37  
38 var gNode = null;
39 var gOkButton = null;
40 var returnValue = null;
41
42  function Startup()
43 {
44   if (!window.arguments)
45     return;
46
47   var parameter = window.arguments[0];
48
49   GetUIElements();
50   BGLanguagesHelper.init();
51
52   if (parameter instanceof Element)
53   {
54     gNode = parameter;
55     gDialog.clearSubtree.removeAttribute("hidden");
56
57     if (gNode.hasAttribute("lang"))
58     {
59       var lang = gNode.getAttribute("lang");
60       var kids = gDialog.languageListBox.getElementsByAttribute("value", lang);
61       if (kids && kids.item(0))
62         gDialog.currentLanguage.value = kids[0].getAttribute("label");
63       else
64         gDialog.currentLanguage.value = lang;
65     }
66     else
67       gDialog.currentLanguageBox.setAttribute("hidden", "true");
68
69     window.sizeToContent();
70   }
71   else
72     returnValue = window.arguments[1];
73   gOkButton = document.documentElement.getButton("accept");
74   gOkButton.setAttribute("disabled", "true");
75 }
76
77 function onAccept()
78 {
79   var lang = null;
80   if (gDialog.otherTextBox.value)
81     lang = gDialog.otherTextBox.value;
82   else
83     lang = gDialog.languageListBox.value;
84
85   if (gNode)
86   {
87     var editor = EditorUtils.getCurrentEditor();
88     var clearSubtree = gDialog.clearSubtree.checked;
89     if (clearSubtree)
90       editor.beginTransaction();
91
92     editor.setAttribute(gNode, "lang", lang);
93
94     if (clearSubtree)
95     {
96       var elementsHavingLang = gNode.querySelectorAll("*[lang]");
97       for (var i = 0; i < elementsHavingLang.length; i++)
98         editor.removeAttribute(elementsHavingLang[i], "lang");
99     }
100
101     if (clearSubtree)
102       editor.endTransaction();
103   }
104   else
105     returnValue.lang = lang;
106 }
107
108 function onListboxSelect()
109 {
110   try {
111     if (gDialog.languageListBox.value)
112       gOkButton.removeAttribute("disabled");
113   }
114   catch(e) {}
115 }
116
117 function onTextboxInput()
118 {
119   try {
120     if (gDialog.otherTextBox.value)
121       gOkButton.removeAttribute("disabled");
122     else
123     {
124       if (gDialog.languageListBox.value)
125         gOkButton.removeAttribute("disabled");
126       else
127         gOkButton.setAttribute("disabled", "true");
128     }
129   }
130   catch(e) {}
131 }