OSDN Git Service

import source-tree based svn r84.
[bluegriffon/BlueGriffon.git] / base / content / bluegriffon / utils / colors.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 Mozilla Communicator client code.
15  *
16  * The Initial Developer of the Original Code is
17  * Netscape Communications Corporation.
18  * Portions created by the Initial Developer are Copyright (C) 1998
19  * the Initial Developer. All Rights Reserved.
20  *
21  * Contributor(s):
22  *   Pete Collins
23  *   Brian King
24  *   Daniel Glazman (glazman@disruptive-innovations.com), on behalf of Linspire Inc.
25  *
26  * Alternatively, the contents of this file may be used under the terms of
27  * either the GNU General Public License Version 2 or later (the "GPL"), or
28  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29  * in which case the provisions of the GPL or the LGPL are applicable instead
30  * of those above. If you wish to allow use of your version of this file only
31  * under the terms of either the GPL or the LGPL, and not to allow others to
32  * use your version of this file under the terms of the NPL, indicate your
33  * decision by deleting the provisions above and replace them with the notice
34  * and other provisions required by the GPL or the LGPL. If you do not delete
35  * the provisions above, a recipient may use your version of this file under
36  * the terms of any one of the NPL, the GPL or the LGPL.
37  *
38  * ***** END LICENSE BLOCK ***** */
39
40 var ColorUtils = {
41   getDefaultBrowserColors: function()
42   {
43     var prefs = GetPrefs();
44     var colors = { UseSysColors: true,
45                    TextColor:0,
46                    BackgroundColor:0,
47                    LinkColor:0,
48                    ActiveLinkColor:0 ,
49                    VisitedLinkColor:0 };
50     try { colors.UseSysColors = prefs.getBoolPref("browser.display.use_system_colors"); } catch (e) {}
51   
52     if (!colors.UseSysColors)
53     {
54       try { colors.TextColor = prefs.getCharPref("browser.display.foreground_color"); } catch (e) {}
55   
56       try { colors.BackgroundColor = prefs.getCharPref("browser.display.background_color"); } catch (e) {}
57     }
58     // Use OS colors for text and background if explicitly asked or pref is not set
59     if (!colors.TextColor)
60       colors.TextColor = "windowtext";
61   
62     if (!colors.BackgroundColor)
63       colors.BackgroundColor = "window";
64   
65     colors.LinkColor = prefs.getCharPref("browser.anchor_color");
66     colors.ActiveLinkColor = prefs.getCharPref("browser.active_color");
67     colors.VisitedLinkColor = prefs.getCharPref("browser.visited_color");
68   
69     return colors;
70   },
71
72   getDocumentColors: function(aDocument)
73   {
74     var colors = { UseSysColors: true,
75                    TextColor:0,
76                    BackgroundColor:0,
77                    LinkColor:0,
78                    ActiveLinkColor:0 ,
79                    VisitedLinkColor:0 };
80     var editor  = EditorUtils.getCurrentEditor();
81     var bodyElt = editor.rootElement;
82     var doc     = editor.document;
83
84     var dummyAnchor1 = doc.createElement("a");
85     dummyAnchor1.setAttribute("href", "foo");
86     var dummyAnchor1 = doc.createElement("a");
87     dummyAnchor1.setAttribute("href", "foo");
88   },
89
90   getComputedColor: function(aElt)
91   {
92     
93   }
94 };