Package com.vlsolutions.swing.docking.event

Examples of com.vlsolutions.swing.docking.event.DockingActionSplitDockableContainerEvent


      Dockable dockable = event.getDragSource().getDockable();
      DockableState.Location initialState = dockable.getDockKey().getLocation();
      DockableState.Location nextState = DockableState.Location.DOCKED;
     
      if (dragContainer instanceof TabbedDockableContainer){
         event.setDockingAction(new DockingActionSplitDockableContainerEvent(
             event.getDesktop(), initialState, nextState,
             this, dragContainer, position, 0.5f));
      } else {
         event.setDockingAction(new DockingActionSplitComponentEvent(
             event.getDesktop(), dockable, initialState, nextState,
View Full Code Here

TOP

Related Classes of com.vlsolutions.swing.docking.event.DockingActionSplitDockableContainerEvent

Copyright © 2018 www.massapicom. 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.