01: /*
02: * Copyright (C) 2001, 2002 Robert MacGrogan
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2.1 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: *
18: *
19: * $Archive: SourceJammer$
20: * $FileName: PlasticLAFAction.java$
21: * $FileID: 4950$
22: *
23: * Last change:
24: * $AuthorName: Rob MacGrogan$
25: * $Date: 9/11/03 9:54 PM$
26: * $Comment: Fixed default headers.$
27: */
28: package org.sourcejammer.client.gui.action;
29:
30: import org.sourcejammer.client.DisplayTextLibrary;
31: import org.sourcejammer.client.gui.conf.UserPrefs;
32: import org.sourcejammer.util.AppConfig;
33:
34: import com.jgoodies.plaf.plastic.PlasticLookAndFeel;
35: import com.jgoodies.plaf.plastic.theme.SkyBluerTahoma;
36:
37: /**
38: * Title: $FileName: PlasticLAFAction.java$
39: * @author $AuthorName: Rob MacGrogan$
40: * @version $VerNum: 2$
41: * $KeyWordsOff: $<br><br>
42: *
43: *
44: * Sets look and feel to JLooks Plastic look and feel (www.jgoodies.com).
45: */
46: public class PlasticLAFAction extends ChangeLookAndFeelAction {
47: public PlasticLAFAction() {
48: super (DisplayTextLibrary
49: .displayText(DisplayTextLibrary.ACT_PLASTIC_LAF));
50: }
51:
52: /* (non-Javadoc)
53: * @see org.sourcejammer.client.gui.action.ChangeLookAndFeelAction#getLookAndFeelName()
54: */
55: protected String getLookAndFeelName() {
56: UserPrefs.getInstance().setString(UserPrefs.LOOK_AND_FEEL,
57: AppConfig.LookAndFeel.PLASTIC);
58: PlasticLookAndFeel.setMyCurrentTheme(new SkyBluerTahoma());
59: return "com.jgoodies.plaf.plastic.Plastic3DLookAndFeel";
60: }
61:
62: /* (non-Javadoc)
63: * @see org.sourcejammer.client.gui.action.ChangeLookAndFeelAction#getActionIdentifier()
64: */
65: protected Integer getActionIdentifier() {
66: return Actions.act_PLASTIC_LOOK_AND_FEEL;
67: }
68:
69: }
|