Package org.eclipse.ui.internal

Examples of org.eclipse.ui.internal.FastViewBar$ViewDropTarget


                if (changed) {
                    WorkbenchWindow workbenchWindow = (WorkbenchWindow) viewPane
                            .getPage().getWorkbenchWindow();
                   
                    if (vstt == null) {
                      FastViewBar bar = workbenchWindow.getFastViewBar();
                      if (bar != null && viewPane != null) {
                          IWorkbenchPartReference ref = viewPane.getPartReference();
                         
                          if (ref instanceof IViewReference) {
                              bar.setOrientation((IViewReference)ref,
                                      currentOrientation.get());
                          }
                      }
                    }
                    else {
View Full Code Here


        IWorkbenchPartReference ref = viewPane.getPartReference();
        if (!(ref instanceof IViewReference))
          return;
       
        if (minimizedStack == null) {
          FastViewBar bar = workbenchWindow.getFastViewBar();
          if (bar != null && viewPane != null) {
                currentOrientation.set(bar.getOrientation((IViewReference)ref));
          }
        }
        else {
          currentOrientation.set(minimizedStack.getPaneOrientation());
        }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.FastViewBar$ViewDropTarget

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.