~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/composer/base/dialogs/confirmInlineSpellChecking.xul

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
 
 
3
<!-- ***** BEGIN LICENSE BLOCK *****
 
4
   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
5
   -
 
6
   - The contents of this file are subject to the Mozilla Public License Version
 
7
   - 1.1 (the "License"); you may not use this file except in compliance with
 
8
   - the License. You may obtain a copy of the License at
 
9
   - http://www.mozilla.org/MPL/
 
10
   -
 
11
   - Software distributed under the License is distributed on an "AS IS" basis,
 
12
   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
13
   - for the specific language governing rights and limitations under the
 
14
   - License.
 
15
   -
 
16
   - The Original Code is Nvu.
 
17
   -
 
18
   - The Initial Developer of the Original Code is
 
19
   - Linspire Inc..
 
20
   - Portions created by the Initial Developer are Copyright (C) 2005
 
21
   - the Initial Developer. All Rights Reserved.
 
22
   -
 
23
   - Contributor(s):
 
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 MPL, indicate your
 
33
   - decision by deleting the provisions above and replace them with the notice
 
34
   - and other provisions required by the LGPL or the GPL. 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 MPL, the GPL or the LGPL.
 
37
   -
 
38
   - ***** END LICENSE BLOCK ***** -->
 
39
 
 
40
<?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
 
41
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
 
42
 
 
43
<?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
 
44
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
 
45
 
 
46
<!DOCTYPE dialog SYSTEM "chrome://editor/locale/confirmInlineSpellChecking.dtd">
 
47
 
 
48
<dialog id="confirmInlineSpellCheckingDlg" title="&window.title;"
 
49
   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
 
50
   onload="Startup();"
 
51
   centerWindowOnScreen="true"
 
52
   ondialogaccept="EnableSpellChecker(true);"
 
53
   ondialogcancel="EnableSpellChecker(false);"
 
54
   onunload="SavePrefs();"
 
55
   buttons="accept,cancel">
 
56
 
 
57
  <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
 
58
  <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
 
59
 
 
60
  <script type="application/x-javascript">
 
61
    <![CDATA[
 
62
 
 
63
      var gPrefs;
 
64
 
 
65
      function Startup()
 
66
      {
 
67
        gPrefs = GetPrefs();
 
68
 
 
69
        gDialog.exitWarningCheckbox = document.getElementById("exitWarningCheckbox");
 
70
        gDialog.root                = document.getElementById("confirmInlineSpellCheckingDlg");
 
71
 
 
72
        var acceptButton = document.documentElement.getButton("accept");
 
73
        var cancelButton = document.documentElement.getButton("cancel");
 
74
        var bundle = document.getElementById("dialogBundle");
 
75
 
 
76
        acceptButton.setAttribute("label", bundle.getString("Proceed"));
 
77
        acceptButton.setAttribute("accesskey", bundle.getString("ProceedAccessKey"));
 
78
        cancelButton.setAttribute("label", bundle.getString("Disable"));
 
79
        cancelButton.setAttribute("accesskey", bundle.getString("DisableAccessKey"));
 
80
 
 
81
        //gDialog.root.moveToAlertPosition();
 
82
        CenterWindowLocation();
 
83
      }
 
84
 
 
85
      function EnableSpellChecker(aEnabled)
 
86
      {
 
87
        if (gPrefs)
 
88
          gPrefs.setBoolPref("spellchecker.enablerealtimespell", aEnabled);
 
89
      }
 
90
 
 
91
      function SavePrefs()
 
92
      {
 
93
        if (gDialog.exitWarningCheckbox.checked)
 
94
          gPrefs.setBoolPref("editor.showDisableSpellCheckWarning", false);
 
95
      }
 
96
    ]]>
 
97
  </script>
 
98
 
 
99
  <stringbundle id="dialogBundle" src="chrome://editor/locale/confirmInlineSpellChecking.properties"/>
 
100
 
 
101
  <broadcaster id="args" value=""/>
 
102
  <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
 
103
 
 
104
  <hbox align="start">
 
105
    <image src="chrome://global/skin/icons/Warning.png"/>
 
106
    <spacer class="spacer"/>
 
107
    <vbox style="max-width: 27em">
 
108
      <description>&confirmInlineSpellChecking.label;</description>
 
109
      <hbox align="center">
 
110
        <checkbox id="exitWarningCheckbox"
 
111
                  label="&exitWarningCheckbox.label;"/>
 
112
      </hbox>
 
113
    </vbox>
 
114
  </hbox>
 
115
  
 
116
</dialog>