Import of Ekit 0.9h
[old-projects.git] / ekit / com / hexidec / ekit / component / JToggleButtonNoFocus.java
CommitLineData
c2da4d40
JL
1/*
2GNU Lesser General Public License
3
4JToggleButtonNoFocus
6ce136da 5Copyright (C) 2000 Howard Kistler
c2da4d40
JL
6
7This library is free software; you can redistribute it and/or
8modify it under the terms of the GNU Lesser General Public
9License as published by the Free Software Foundation; either
10version 2.1 of the License, or (at your option) any later version.
11
12This library is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15Lesser General Public License for more details.
16
17You should have received a copy of the GNU Lesser General Public
18License along with this library; if not, write to the Free Software
19Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20*/
21
22package com.hexidec.ekit.component;
23
24import javax.swing.Action;
25import javax.swing.Icon;
26import javax.swing.JToggleButton;
27
28/** Class for providing a JToggleButton that does not obtain focus
29 */
30public class JToggleButtonNoFocus extends JToggleButton
31{
32 public JToggleButtonNoFocus() { super(); this.setRequestFocusEnabled(false); }
33 public JToggleButtonNoFocus(Action a) { super(a); this.setRequestFocusEnabled(false); }
34 public JToggleButtonNoFocus(Icon icon) { super(icon); this.setRequestFocusEnabled(false); }
35 public JToggleButtonNoFocus(String text) { super(text); this.setRequestFocusEnabled(false); }
36 public JToggleButtonNoFocus(String text, Icon icon) { super(text, icon); this.setRequestFocusEnabled(false); }
37
38 public boolean isFocusable()
39 {
40 return false;
41 }
42
43 // deprecated in 1.4 with isFocusable(), left in for 1.3 compatibility
44 public boolean isFocusTraversable()
45 {
46 return false;
47 }
48}