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

bibliothek.gui.dock.action.MultiDockActionSource Maven / Gradle / Ivy

The 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) 2007 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.action;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import bibliothek.gui.dock.action.actions.SeparatorAction;
import bibliothek.gui.dock.event.DockActionSourceListener;

/**
 * A {@link DockActionSource} that combines various sources in one source.
 * This source behaves like a list of {@link DockActionSource DockActionSources}.
 * @author Benjamin Sigg
 */
public class MultiDockActionSource extends AbstractDockActionSource {
    private List sources = new ArrayList();
    private List separators = new ArrayList();
    
    private Listener listener;
    private boolean separateSources = false;
    private LocationHint hint;
    
    /**
     * Constructs a new source. The sources are added as children
     * of this source.
     * @param sources The children of this source
     */
    public MultiDockActionSource( DockActionSource...sources ){
    	this( LocationHint.UNKNOWN, sources );
    }
    
    /**
     * Constructs a new source. The sources are added as children
     * of this source.
     * @param hint the preferred location of this source
     * @param sources The children of this source
     */
    public MultiDockActionSource( LocationHint hint, DockActionSource...sources ){
        listener = new Listener();
        
        for( DockActionSource source : sources ){
            this.sources.add( source );
        }
        
        setHint( hint );
    }
    
    public Iterator iterator(){
    	return new Iterator(){
    		private Iterator sourceIterator = sources.iterator();
    		private Iterator actionIterator;
    		
			public boolean hasNext(){
				if( actionIterator == null ){
					if( sourceIterator.hasNext() )
						actionIterator = sourceIterator.next().iterator();
					else
						return false;
				}
				
				while( true ){
					if( actionIterator.hasNext() )
						return true;
					
					if( sourceIterator.hasNext() )
						actionIterator = sourceIterator.next().iterator();
					else
						return false;
				}
			}

			public DockAction next(){
				hasNext();
				return actionIterator.next();
			}

			public void remove(){
				hasNext();
				actionIterator.remove();
			}
    		
    	};
    }
    
    @Override
    public void addDockActionSourceListener( DockActionSourceListener listener ){
    	boolean empty = listeners.isEmpty();
    	super.addDockActionSourceListener( listener );
    	if( empty && !listeners.isEmpty() ){
    		for( DockActionSource source : sources )
    			source.addDockActionSourceListener( this.listener );
    		updateSeparators();
    	}
    }
    
    @Override
    public void removeDockActionSourceListener( DockActionSourceListener listener ){
    	boolean empty = listeners.isEmpty();
    	super.removeDockActionSourceListener( listener );
    	if( !empty && listeners.isEmpty() ){
    		for( DockActionSource source : sources )
    			source.removeDockActionSourceListener( this.listener );
    	}
    }
    
    public LocationHint getLocationHint(){
    	return hint;
    }
    
    /**
     * Sets the location-hint of this source.
     * @param hint the hint that tells an {@link ActionOffer} where to
     * put this source.
     */
    public void setHint( LocationHint hint ){
    	if( hint == null )
    		throw new IllegalArgumentException( "Hint must not be null" );
    	
		this.hint = hint;
	}
    
    /**
     * Adds a separator at the end of the current list of actions
     */
    public void addSeparator(){
        add( SeparatorAction.SEPARATOR );
    }
    
    /**
     * Tells whether there is a separator between sources or not
     * @return true if there is a separator
     */
    public boolean isSeparateSources() {
        return separateSources;
    }
    
    /**
     * Sets whether there are separators between the children of this 
     * source or not.
     * @param separateSources true if children should be separated
     */
    public void setSeparateSources( boolean separateSources ) {
        if( this.separateSources != separateSources ){
            this.separateSources = separateSources;
            updateSeparators();
        }
    }
    
    /**
     * Adds a source as child of this source. All {@link DockAction DockActions}
     * of source will be presented as actions of this source.
* Note: creating circles or adding a source more than once will lead to * unspecified behavior. * @param source the new child */ public void add( DockActionSource source ){ SeparatorSource separator = new SeparatorSource( source ); sources.add( source ); sources.add( separator ); separators.add( separator ); if( !listeners.isEmpty() ){ source.addDockActionSourceListener( listener ); separator.addDockActionSourceListener( listener ); } int index = getDockActionCountUntil( sources.size()-2, false ); int length = source.getDockActionCount(); if( length > 0 ) fireAdded( index, index+length-1 ); updateSeparators(); } /** * Removes source from this {@link MultiDockActionSource}. * @param source the child to remove */ public void remove( DockActionSource source ){ int index = sources.indexOf( source ); if( index < 0 ) return; SeparatorSource separator = (SeparatorSource)sources.get( index+1 ); int actionIndex = getDockActionCountUntil( index, false ); int length = source.getDockActionCount(); sources.remove( index+1 ); sources.remove( index ); separators.remove( separator ); if( !listeners.isEmpty() ){ source.removeDockActionSourceListener( listener ); separator.removeDockActionSourceListener( listener ); } if( length > 0 ){ fireRemoved( actionIndex, index+length-1 ); } updateSeparators(); } /** * Removes all children of this source. */ public void removeAll(){ int length = getDockActionCount(); if( !listeners.isEmpty() ){ for( SeparatorSource source : separators ){ source.removeDockActionSourceListener( listener ); } for( DockActionSource source : sources ){ source.removeDockActionSourceListener( listener ); } } separators.clear(); sources.clear(); if( length > 0 ){ fireRemoved( 0, length-1 ); } } /** * Adds several actions to this source. * @param actions the new actions */ public void add( DockAction... actions ){ add( new DefaultDockActionSource( actions )); } public int getDockActionCount(){ return getDockActionCountUntil( sources.size(), true ); } /** * Gets the index of the child-source which contains action. * @param action the action for which is searched * @return the index of the source which contains the action or -1 */ protected int getSource( DockAction action ){ for( int i = 0, n = sources.size(); iindex
(excl). * @param index the index of the first source that should not be counted * @param allowUpdate whether the {@link #updateSeparators()} can be called * by this method or not * @return the number of actions of the first index * child-sources. */ protected int getDockActionCountUntil( int index, boolean allowUpdate ){ if( allowUpdate && listeners.isEmpty() ) updateSeparators(); int sum = 0; for( int i = 0; i < index; i++ ) sum += sources.get( i ).getDockActionCount(); return sum; } public DockAction getDockAction( int index ) { if( listeners.isEmpty() ) updateSeparators(); int sum = 0; for( int i = 0, n = sources.size(); i 0 && getDockActionCount() == 0 ) add( SeparatorAction.SEPARATOR ); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy