Examples of FastViewBar


Examples of org.eclipse.ui.internal.FastViewBar

                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

Examples of org.eclipse.ui.internal.FastViewBar

        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
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.