Examples of StandardViewSystemMenu


Examples of org.eclipse.ui.internal.presentations.util.StandardViewSystemMenu

       
        folder.setUnselectedCloseVisible(false);
        folder.setUnselectedImageVisible(false);
       
        TabbedStackPresentation result = new TabbedStackPresentation(site, partFolder,
                new StandardViewSystemMenu(site));
       
        DefaultThemeListener themeListener = new DefaultThemeListener(folder, result.getTheme());
        result.getTheme().addListener(themeListener);
       
    new DefaultSimpleTabListener(result.getApiPreferences(),
View Full Code Here

Examples of org.eclipse.ui.internal.presentations.util.StandardViewSystemMenu

       
        if (showTitle) {
            return createViewPresentation(parent, site);
        }       
        EmptyTabFolder folder = new EmptyTabFolder(parent, true);
        TabbedStackPresentation presentation = new TabbedStackPresentation(site, folder, new StandardViewSystemMenu(site));
           
        return presentation;
    }
View Full Code Here

Examples of org.eclipse.ui.internal.presentations.util.StandardViewSystemMenu

     *
     * @see org.eclipse.ui.presentations.AbstractPresentationFactory
     */
    public StackPresentation createViewPresentation(Composite parent,
            IStackPresentationSite site) {
        return new TabbedStackPresentation(site, new NativeTabFolder(parent), new StandardViewSystemMenu(site));
    }
View Full Code Here

Examples of org.eclipse.ui.internal.presentations.util.StandardViewSystemMenu

     */
    public StackPresentation createStandaloneViewPresentation(Composite parent,
            IStackPresentationSite site, boolean showTitle) {
        // TODO honour showTitle
        return new TabbedStackPresentation(site, new NativeTabFolder(parent),
                new StandardViewSystemMenu(site));
    }
View Full Code Here

Examples of org.eclipse.ui.internal.presentations.util.StandardViewSystemMenu

    folder.setUnselectedCloseVisible(false);
    folder.setUnselectedImageVisible(true);

    TabbedStackPresentation result = new TabbedStackPresentation(site,
        partFolder, new StandardViewSystemMenu(site));

    DefaultThemeListener themeListener = new DefaultThemeListener(folder,
        result.getTheme());
    result.getTheme().addListener(themeListener);
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.