import rt 3.8.7
[freeside.git] / rt / share / html / NoAuth / RichText / FCKeditor / editor / _source / commandclasses / fckspellcheckcommand_ie.js
1 /*\r
2  * FCKeditor - The text editor for Internet - http://www.fckeditor.net\r
3  * Copyright (C) 2003-2009 Frederico Caldeira Knabben\r
4  *\r
5  * == BEGIN LICENSE ==\r
6  *\r
7  * Licensed under the terms of any of the following licenses at your\r
8  * choice:\r
9  *\r
10  *  - GNU General Public License Version 2 or later (the "GPL")\r
11  *    http://www.gnu.org/licenses/gpl.html\r
12  *\r
13  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")\r
14  *    http://www.gnu.org/licenses/lgpl.html\r
15  *\r
16  *  - Mozilla Public License Version 1.1 or later (the "MPL")\r
17  *    http://www.mozilla.org/MPL/MPL-1.1.html\r
18  *\r
19  * == END LICENSE ==\r
20  *\r
21  * FCKStyleCommand Class: represents the "Spell Check" command.\r
22  * (IE specific implementation)\r
23  */\r
24 \r
25 var FCKSpellCheckCommand = function()\r
26 {\r
27         this.Name = 'SpellCheck' ;\r
28         this.IsEnabled = true ;\r
29 }\r
30 \r
31 FCKSpellCheckCommand.prototype.Execute = function()\r
32 {\r
33         switch ( FCKConfig.SpellChecker )\r
34         {\r
35                 case 'ieSpell' :\r
36                         this._RunIeSpell() ;\r
37                         break ;\r
38 \r
39                 case 'SpellerPages' :\r
40                         FCKDialog.OpenDialog( 'FCKDialog_SpellCheck', 'Spell Check', 'dialog/fck_spellerpages.html', 440, 480 ) ;\r
41                         break ;\r
42 \r
43                 case 'WSC' :\r
44                         FCKDialog.OpenDialog( 'FCKDialog_SpellCheck', 'Spell Check', 'wsc/w.html', 530, 480 ) ;\r
45         }\r
46 }\r
47 \r
48 FCKSpellCheckCommand.prototype._RunIeSpell = function()\r
49 {\r
50         try\r
51         {\r
52                 var oIeSpell = new ActiveXObject( "ieSpell.ieSpellExtension" ) ;\r
53                 oIeSpell.CheckAllLinkedDocuments( FCK.EditorDocument ) ;\r
54         }\r
55         catch( e )\r
56         {\r
57                 if( e.number == -2146827859 )\r
58                 {\r
59                         if ( confirm( FCKLang.IeSpellDownload ) )\r
60                                 window.open( FCKConfig.IeSpellDownloadUrl , 'IeSpellDownload' ) ;\r
61                 }\r
62                 else\r
63                         alert( 'Error Loading ieSpell: ' + e.message + ' (' + e.number + ')' ) ;\r
64         }\r
65 }\r
66 \r
67 FCKSpellCheckCommand.prototype.GetState = function()\r
68 {\r
69         if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG )\r
70                 return FCK_TRISTATE_DISABLED ;\r
71         return this.IsEnabled ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ;\r
72 }\r