import rt 3.8.7
[freeside.git] / rt / share / html / NoAuth / RichText / FCKeditor / editor / _source / classes / fckmenublockpanel.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  * This class is a menu block that behaves like a panel. It's a mix of the\r
22  * FCKMenuBlock and FCKPanel classes.\r
23  */\r
24 \r
25 var FCKMenuBlockPanel = function()\r
26 {\r
27         // Call the "base" constructor.\r
28         FCKMenuBlock.call( this ) ;\r
29 }\r
30 \r
31 FCKMenuBlockPanel.prototype = new FCKMenuBlock() ;\r
32 \r
33 \r
34 // Override the create method.\r
35 FCKMenuBlockPanel.prototype.Create = function()\r
36 {\r
37         var oPanel = this.Panel = ( this.Parent && this.Parent.Panel ? this.Parent.Panel.CreateChildPanel() : new FCKPanel() ) ;\r
38         oPanel.AppendStyleSheet( FCKConfig.SkinEditorCSS ) ;\r
39 \r
40         // Call the "base" implementation.\r
41         FCKMenuBlock.prototype.Create.call( this, oPanel.MainNode ) ;\r
42 }\r
43 \r
44 FCKMenuBlockPanel.prototype.Show = function( x, y, relElement )\r
45 {\r
46         if ( !this.Panel.CheckIsOpened() )\r
47                 this.Panel.Show( x, y, relElement ) ;\r
48 }\r
49 \r
50 FCKMenuBlockPanel.prototype.Hide = function()\r
51 {\r
52         if ( this.Panel.CheckIsOpened() )\r
53                 this.Panel.Hide() ;\r
54 }\r