KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > mail > gui > composer > html > action > FontSizeMenu


1 //The contents of this file are subject to the Mozilla Public License Version 1.1
2
//(the "License"); you may not use this file except in compliance with the
3
//License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
4
//
5
//Software distributed under the License is distributed on an "AS IS" basis,
6
//WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
7
//for the specific language governing rights and
8
//limitations under the License.
9
//
10
//The Original Code is "The Columba Project"
11
//
12
//The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
13
//Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
14
//
15
//All Rights Reserved.
16
package org.columba.mail.gui.composer.html.action;
17
18 import javax.swing.ButtonGroup JavaDoc;
19 import javax.swing.JRadioButtonMenuItem JavaDoc;
20
21 import org.columba.api.gui.frame.IFrameMediator;
22 import org.columba.core.gui.menu.IMenu;
23 import org.columba.mail.util.MailResourceLoader;
24
25
26 /**
27  *
28  * Submenu for choosing the font size settings
29  * "-2, -1, 0, 1, 2, 3"
30  *
31  * TODO (@author fdietz): add actionPerformed-method, and enabling/disabling based on html/text
32  *
33  *
34  * @author fdietz
35  */

36
37 public class FontSizeMenu extends IMenu {
38     public final static String JavaDoc[] SIZES = { "-2", "-1", "0", "+1", "+2", "+3" };
39     ButtonGroup JavaDoc group;
40
41     /**
42  * @param controller
43  * @param caption
44  */

45     public FontSizeMenu(IFrameMediator controller) {
46         super(controller,
47             MailResourceLoader.getString("menu", "composer",
48                 "menu_format_font_size"),"menu_format_font_size");
49
50         initMenu();
51
52         // Enable when implemented
53
setEnabled(false);
54     }
55
56     protected void initMenu() {
57         group = new ButtonGroup JavaDoc();
58
59         for (int i = 0; i < SIZES.length; i++) {
60             JRadioButtonMenuItem JavaDoc m = new JRadioButtonMenuItem JavaDoc(SIZES[i]);
61             add(m);
62
63             group.add(m);
64         }
65     }
66 }
67
Popular Tags