01: /*
02: * @(#)${NAME}
03: *
04: * Copyright 2002 - 2004 JIDE Software Inc. All rights reserved.
05: */
06: package com.jidesoft.plaf.office2003;
07:
08: import com.jidesoft.plaf.vsnet.VsnetWindowsLookAndFeel;
09:
10: import javax.swing.*;
11:
12: /**
13: * WindowsLookAndFeel with Offfice 2003 extension
14: *
15: * @deprecated Due to the change in LookAndFeelFactory, this class is no longer needed.
16: * The best way to set any L&F is to use UIManager.setLookAndFeel() as usual. then call
17: * installJideExtension() or installJideExtension(int style) to add UIDefaults needed by JIDE products.
18: */
19: public class Office2003WindowsLookAndFeel extends
20: VsnetWindowsLookAndFeel {
21: @Override
22: public String getName() {
23: return "Office 2003";
24: }
25:
26: @Override
27: public String getDescription() {
28: return "The Microsoft Office 2003 Look And Feel";
29: }
30:
31: @Override
32: public String getID() {
33: return "Office 2003";
34: }
35:
36: @Override
37: protected void initClassDefaults(UIDefaults table) {
38: super .initClassDefaults(table);
39: Office2003WindowsUtils.initClassDefaults(table);
40: }
41:
42: @Override
43: protected void initComponentDefaults(UIDefaults table) {
44: super.initComponentDefaults(table);
45: Office2003WindowsUtils.initComponentDefaults(table);
46: }
47: }
|