All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jidesoft.plaf.office2003.Office2003WindowsLookAndFeel Maven / Gradle / Ivy

/*
 * @(#)${NAME}
 *
 * Copyright 2002 - 2004 JIDE Software Inc. All rights reserved.
 */
package com.jidesoft.plaf.office2003;

import com.jidesoft.plaf.vsnet.VsnetWindowsLookAndFeel;

import javax.swing.*;

/**
 * WindowsLookAndFeel with Offfice 2003 extension
 *
 * @deprecated Due to the change in LookAndFeelFactory, this class is no longer needed.
 *             The best way to set any L&F is to use UIManager.setLookAndFeel() as usual. then call
 *             installJideExtension() or installJideExtension(int style) to add UIDefaults needed by JIDE products.
 */
public class Office2003WindowsLookAndFeel extends VsnetWindowsLookAndFeel {
    @Override
    public String getName() {
        return "Office 2003";
    }

    @Override
    public String getDescription() {
        return "The Microsoft Office 2003 Look And Feel";
    }

    @Override
    public String getID() {
        return "Office 2003";
    }

    @Override
    protected void initClassDefaults(UIDefaults table) {
        super.initClassDefaults(table);
        Office2003WindowsUtils.initClassDefaults(table);
    }

    @Override
    protected void initComponentDefaults(UIDefaults table) {
        super.initComponentDefaults(table);
        Office2003WindowsUtils.initComponentDefaults(table);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy