JAL-1807 includes ?j2sdebug flag and DebugJS._(msg)
[jalviewjs.git] / site / j2s / swingjs / plaf / JSMenuBarUI.java
1 /*\r
2  * Copyright (c) 1997, 2005, Oracle and/or its affiliates. All rights reserved.\r
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.\r
4  *\r
5  * This code is free software; you can redistribute it and/or modify it\r
6  * under the terms of the GNU General Public License version 2 only, as\r
7  * published by the Free Software Foundation.  Oracle designates this\r
8  * particular file as subject to the "Classpath" exception as provided\r
9  * by Oracle in the LICENSE file that accompanied this code.\r
10  *\r
11  * This code is distributed in the hope that it will be useful, but WITHOUT\r
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License\r
14  * version 2 for more details (a copy is included in the LICENSE file that\r
15  * accompanied this code).\r
16  *\r
17  * You should have received a copy of the GNU General Public License version\r
18  * 2 along with this work; if not, write to the Free Software Foundation,\r
19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\r
20  *\r
21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA\r
22  * or visit www.oracle.com if you need additional information or have any\r
23  * questions.\r
24  */\r
25 \r
26 package swingjs.plaf;\r
27 \r
28 \r
29 import jsjava.awt.Dimension;\r
30 \r
31 import jsjavax.swing.JComponent;\r
32 import jsjavax.swing.LookAndFeel;\r
33 \r
34 import swingjs.api.DOMNode;\r
35 \r
36 public class JSMenuBarUI extends JSPanelUI {\r
37 \r
38         public JSMenuBarUI() {\r
39                 isContainer = true;\r
40                 setDoc();\r
41         }\r
42         \r
43         @Override\r
44         public DOMNode getDOMObject() {\r
45                 if (domNode == null)\r
46                         domNode = createDOMObject("div", id);\r
47     return domNode;\r
48         }\r
49 \r
50         @Override\r
51   protected Dimension setHTMLSize(DOMNode obj, boolean addCSS) {\r
52                 // SwingJS for now: just designated container width/height \r
53                 return new Dimension(c.getWidth(), c.getHeight());\r
54         }\r
55         \r
56         @Override\r
57         public Dimension getPreferredSize(JComponent c) {\r
58                 // SwingJS should defer to containing panel\r
59                 return null;\r
60         }\r
61 \r
62         @Override\r
63         protected void installJSUI() {\r
64     LookAndFeel.installColorsAndFont(c,\r
65         "MenuBar.background",\r
66         "MenuBar.foreground",\r
67         "MenuBar.font");\r
68         }\r
69 \r
70         @Override\r
71         protected void uninstallJSUI() {\r
72                 // TODO Auto-generated method stub\r
73                 \r
74         }\r
75 \r
76 }\r