com.alee.utils.swing.WindowMethods Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weblaf-ui Show documentation
Show all versions of weblaf-ui Show documentation
WebLaf is a Java Swing Look and Feel and extended components library for cross-platform applications
/*
* This file is part of WebLookAndFeel library.
*
* WebLookAndFeel library is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* WebLookAndFeel library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WebLookAndFeel library. If not, see .
*/
package com.alee.utils.swing;
import java.awt.*;
/**
* This interface provides a set of methods that should be added into components that support custom window methods.
*
* @param window type
* @author Mikle Garin
* @see com.alee.utils.swing.SwingMethods
* @see com.alee.utils.WindowUtils
*/
public interface WindowMethods extends SwingMethods
{
/**
* Returns whether window is opaque or not.
*
* @return true if window is opaque, false otherwise
*/
public boolean isWindowOpaque ();
/**
* Sets window opaque if that option is supported by the underlying system.
*
* @param opaque whether should make window opaque or not
* @return processed window
*/
public W setWindowOpaque ( boolean opaque );
/**
* Returns window opacity.
*
* @return window opacity
*/
public float getWindowOpacity ();
/**
* Sets window opacity if that option is supported by the underlying system.
*
* @param opacity new window opacity
* @return processed window
*/
public W setWindowOpacity ( float opacity );
// /**
// * Returns component this window follows.
// *
// * @return component this window follows
// */
// public Component getAttachedTo ();
//
// /**
// * Sets component this window follows.
// *
// * @param component component this window follows
// * @return processed window
// */
// public W setAttachedTo ( Component component );
/**
* Centers window relative to screen center.
*
* @return processed window
*/
public W center ();
/**
* Centers window relative to the specified component center.
*
* @param relativeTo component used to center window
* @return processed window
*/
public W center ( Component relativeTo );
/**
* Changes window size and centers it relative to screen center.
*
* @param width new window width
* @param height new window height
* @return processed window
*/
public W center ( int width, int height );
/**
* Changes window size and centers it relative to the specified component center.
*
* @param relativeTo component used to center window
* @param width new window width
* @param height new window height
* @return processed window
*/
public W center ( Component relativeTo, int width, int height );
/**
* Packs window to its preffered height and specified width.
*
* @param width new window width
* @return processed window
*/
public W packToWidth ( int width );
/**
* Packs window to its preffered width and specified height.
*
* @param height new window height
* @return processed window
*/
public W packToHeight ( int height );
/**
* Packs and centers window relative to old position.
*
* @return processed window
*/
public W packAndCenter ();
/**
* Packs and centers window relative to old position.
*
* @param animate whether should animate window size changes or not
* @return processed window
*/
public W packAndCenter ( boolean animate );
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy