Package bibliothek.gui.dock.common.theme

Source Code of bibliothek.gui.dock.common.theme.CFlatTheme

/*
* 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
* benjamin_sigg@gmx.ch
* CH - Switzerland
*/
package bibliothek.gui.dock.common.theme;

import bibliothek.extension.gui.dock.theme.FlatTheme;
import bibliothek.gui.DockController;
import bibliothek.gui.dock.action.view.ActionViewConverter;
import bibliothek.gui.dock.action.view.ViewTarget;
import bibliothek.gui.dock.common.CControl;
import bibliothek.gui.dock.common.action.CPanelPopup;
import bibliothek.gui.dock.common.intern.action.panel.FlatPanelPopupGenerator;
import bibliothek.gui.dock.common.intern.action.panel.PanelDropDownGenerator;
import bibliothek.gui.dock.common.intern.action.panel.PanelMenuGenerator;
import bibliothek.gui.dock.common.intern.color.BasicButtonTitleTransmitter;
import bibliothek.gui.dock.common.intern.color.FlatTabTransmitter;
import bibliothek.gui.dock.common.intern.color.FlatTitleTransmitter;
import bibliothek.gui.dock.themes.ColorBridgeFactory;
import bibliothek.gui.dock.themes.NoStackTheme;
import bibliothek.gui.dock.themes.color.TabColor;
import bibliothek.gui.dock.themes.color.TitleColor;
import bibliothek.gui.dock.util.color.ColorBridge;
import bibliothek.gui.dock.util.color.ColorManager;
import bibliothek.util.ClientOnly;

/**
* A {@link CDockTheme} that encapsulates a {@link FlatTheme} in order to
* allow the theme access to the possibilities of the common-project.
* @author Benjamin Sigg
*/
@ClientOnly
public class CFlatTheme extends CDockTheme<FlatTheme> {
    /**
     * Creates a new theme.
     * @param control the controller for which this theme will be used
     * @param theme the theme that gets encapsulated
     */
    public CFlatTheme( CControl control, FlatTheme theme ){
        super( theme );
        init( control );
    }
   
    /**
     * Creates a new theme. This theme can be used directly with a
     * {@link CControl}.
     * @param control the controller for which this theme will be used.
     */
    public CFlatTheme( CControl control ){
        this( new FlatTheme() );
        init( control );
    }
   
    /**
     * Creates a new theme.
     * @param theme the delegate which will do most of the work
     */
    private CFlatTheme( FlatTheme theme ){
        super( theme, new NoStackTheme( theme ) );
    }
   
    /**
     * Initializes the properties of this theme.
     * @param control the controller for which this theme will be used
     */
    private void init( final CControl control ){
        putColorBridgeFactory( TabColor.KIND_TAB_COLOR, new ColorBridgeFactory(){
            public ColorBridge create( ColorManager manager ) {
                FlatTabTransmitter transmitter = new FlatTabTransmitter( manager );
                transmitter.setControl( control );
                return transmitter;
            }
        });
        putColorBridgeFactory( TitleColor.KIND_TITLE_COLOR, new ColorBridgeFactory(){
            public ColorBridge create( ColorManager manager ) {
                FlatTitleTransmitter transmitter = new FlatTitleTransmitter( manager );
                transmitter.setControl( control );
                return transmitter;
            }
        });
        putColorBridgeFactory( TitleColor.KIND_FLAP_BUTTON_COLOR, new ColorBridgeFactory(){
          public ColorBridge create(ColorManager manager) {
            BasicButtonTitleTransmitter transmitter = new BasicButtonTitleTransmitter( manager );
            transmitter.setControl( control );
            return transmitter;
          }
        });
        initDefaultFontBridges( control );
    }
   
    @Override
    public void install( DockController controller ){
      super.install( controller );
      ActionViewConverter converter = controller.getActionViewConverter();
      converter.putTheme( CPanelPopup.PANEL_POPUP, ViewTarget.TITLE, new FlatPanelPopupGenerator());
      converter.putTheme( CPanelPopup.PANEL_POPUP, ViewTarget.MENU, new PanelMenuGenerator() );
      converter.putTheme( CPanelPopup.PANEL_POPUP, ViewTarget.DROP_DOWN, new PanelDropDownGenerator() );
    }
   
    @Override
    public void uninstall( DockController controller ){
      ActionViewConverter converter = controller.getActionViewConverter();
      converter.putTheme( CPanelPopup.PANEL_POPUP, ViewTarget.TITLE, null );
      converter.putTheme( CPanelPopup.PANEL_POPUP, ViewTarget.MENU, null );
      converter.putTheme( CPanelPopup.PANEL_POPUP, ViewTarget.DROP_DOWN, null );
      super.uninstall( controller );
    }
}
TOP

Related Classes of bibliothek.gui.dock.common.theme.CFlatTheme

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.