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

com.jidesoft.popup.JidePopupFactory Maven / Gradle / Ivy

There is a newer version: 3.6.18
Show newest version
/*
 * @(#)JidePopupFactory.java 4/25/2008
 *
 * Copyright 2002 - 2005 JIDE Software Inc. All rights reserved.
 */

package com.jidesoft.popup;

/**
 * This class creates instances of JidePopup components. It provides a consistent means for customizing popups without
 * the need for a custom UI or overriding all methods that create popups
 */
public class JidePopupFactory {
    private static int _popupType = -1;
    private static JidePopupFactory _popupFactory;

    public JidePopup createPopup() {
        JidePopup p = new JidePopup();

        if (_popupType != -1) {
            p.setPopupType(_popupType);
        }

        return p;
    }

    /**
     * Sets the type to automatically create. This forces all created popups to be of the specified type. By default, we
     * use LIGHT_WEIGHT_POPUP.
     *
     * @param poupType the popup type
     */
    public static void setPopupType(int poupType) {
        if ((poupType != JidePopup.LIGHT_WEIGHT_POPUP) && (poupType != JidePopup.HEAVY_WEIGHT_POPUP)) {
            throw new IllegalArgumentException(
                    "invalid popup type. It must be JidePopup.HEAVY_WEIGHT_POPUP or JidePopup.LIGHT_WEIGHT_POPUP.");
        }

        _popupType = poupType;
    }

    /**
     * Sets the JidePopupFactory that will be used to obtain JidePopups. This will throw an
     * IllegalArgumentException if factory is null.
     *
     * @param factory the shared factory
     * @throws IllegalArgumentException if factory is null
     * @see #createPopup
     */
    public static void setSharedInstance(JidePopupFactory factory) {
        if (factory == null) {
            throw new IllegalArgumentException("JidePopupFactory can not be null");
        }

        _popupFactory = factory;
    }

    /**
     * Get the type of popups that will automatically be created
     *
     * @return the type of popups that will automatically be created or -1 if the factory won't force a popup type.
     */
    public static int getPopupType() {
        return _popupType;
    }

    /**
     * Returns the shared JidePopupFactory which can be used to obtain JidePopups.
     *
     * @return the shared factory
     */
    public static JidePopupFactory getSharedInstance() {
        if (_popupFactory == null) {
            _popupFactory = new JidePopupFactory();
        }

        return _popupFactory;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy