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

bibliothek.gui.dock.facile.mode.MaximizedModeArea Maven / Gradle / Ivy

Go to download

DockingFrames is an open source Java Swing docking framework, licenced under LGPL 2.1. This is the same distribution as the original distribution (http://www.docking-frames.org/), only reinstalled in maven

There is a newer version: 1.1.2p20b.fix-1
Show newest version
/*
 * Bibliothek - DockingFrames
 * Library built on Java/Swing, allows the user to "drag and drop"
 * panels containing any Swing-Component the developer likes to add.
 * 
 * Copyright (C) 2009 Benjamin Sigg
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * 
 * Benjamin Sigg
 * [email protected]
 * CH - Switzerland
 */
package bibliothek.gui.dock.facile.mode;

import bibliothek.gui.DockStation;
import bibliothek.gui.Dockable;
import bibliothek.gui.dock.layout.DockableProperty;
import bibliothek.gui.dock.support.mode.AffectedSet;
import bibliothek.gui.dock.support.mode.Mode;

/**
 * The parent of a set of {@link Dockable}s that are maximized. The {@link MaximizedMode}, which
 * is feed with these areas, assumes that a {@link MaximizedModeArea} is also
 * some other kind of area (e.g. a {@link NormalModeArea}).
 * @author Benjamin Sigg
 */
public interface MaximizedModeArea extends ModeArea{
	
	/**
	 * This method is called before the method {@link Mode#apply(Dockable, Object, AffectedSet) apply}
	 * is executed of a {@link LocationMode} that is not the owner of this area. The element 
	 * event.getDockable() may or may not be a child of this station. This method is called
	 * before {@link #onApply(LocationModeEvent, Dockable)} is called.
	 * @param event detailed information about the event
	 * @return a piece of code executed once apply has finished its job 
	 */
	public Runnable onApply( LocationModeEvent event );
	
	/**
	 * This method is called before the method {@link Mode#apply(Dockable, Object, AffectedSet) apply}
	 * is executed of a {@link LocationMode} that is not the owner of this area. The element
	 * event.getDockable() is a direct or indirect child of this area and maximized. The 
	 * {@link MaximizedMode} suggests to use replacement as direct child
	 * once the old element has been removed. This method must decide how this area
	 * reacts on the pending change, e.g. set its maximized dockable to null and
	 * later re-maximize. The result of this method is a {@link Runnable} which will be executed
	 * once the apply method is finished.
* This method is called after {@link #onApply(LocationModeEvent)} is called. * @param event detailed information about the event * @param replacement the suggested new maximized element * @return a piece of code executed once apply has finished its job */ public Runnable onApply( LocationModeEvent event, Dockable replacement ); /** * This method is called by {@link MaximizedMode} just before the mode is applied * to dockable. * @param dockable the new child of this area * @param history future location of dockable * @param set this method has to store all {@link Dockable}s which might have changed their * mode in the set. */ public void prepareApply( Dockable dockable, Location history, AffectedSet set ); /** * Tells this parent to change the maximization state of dockable. This * area may unmaximize other {@link Dockable}s if necessary. * @param dockable the maximized element, null to indicate * that no element should be maximized. * @param maximized the new state of dockable * @param location the expected location of dockable after this method completed, may be null * @param set this method has to store all {@link Dockable}s which might have changed their * mode in the set. */ public void setMaximized( Dockable dockable, boolean maximized, Location location, AffectedSet set ); /** * Gets the currently maximized elements. * @return the currently maximized dockables, can be null or empty */ public Dockable[] getMaximized(); /** * Tells whether this area is representing station. It is * legitimate for an area to represent more than one or no station at all. * @param station some station * @return true if this represents station */ public boolean isRepresenting( DockStation station ); /** * Tells which mode would be the preferred mode for unmaximization. * @return the preferred unmaximized mode, can be null */ public LocationMode getUnmaximizedMode(); /** * Gets the location of dockable which is a child * of this station. * @param child the child * @return the location, may be null */ public DockableProperty getLocation( Dockable child ); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy