Examples of showPage()


Examples of net.xoetrope.xui.XPageManager.showPage()

        project.setStartupParam( "Language", defLangCode );

        pageHelper.componentFactory.setResourceBundle( defLangCode );
        XPageManager pm = project.getPageManager();
        pm.reset();
        pm.showPage( "Welcome" );
        updateBoundComponentValues();
      }
      inChangeLang = false;
    }
  }
View Full Code Here

Examples of org.apache.fop.viewer.PreviewDialog.showPage()

            Result res = new SAXResult(driver.getContentHandler());
            transformer.transform(src, res);

            //Show page
            frame.progress(translator.getString("Show"));
            frame.showPage();

        } catch (Exception e) {
            frame.reportException(e);
            if (e instanceof FOPException) {
                throw (FOPException)e;
View Full Code Here

Examples of org.eclipse.help.ui.internal.views.ReusableHelpPart.showPage()

      page.setHorizontalMargin(0);
      CheatSheetElement contentElement = CheatSheetRegistryReader.getInstance().findCheatSheet(id);
      helpPart.addPart(CheatSheetHelpPart.ID, new CheatSheetHelpPart(helpPart.getForm().getForm().getBody(), helpPart.getForm().getToolkit(), page.getToolBarManager(), contentElement, new DefaultStateManager()));
      page.addPart(CheatSheetHelpPart.ID, true);
      helpPart.addPage(page);
      helpPart.showPage(CheatSheetHelpPart.ID);
    }
    else {
      CheatSheetView view = ViewUtilities.showCheatSheetView();
      if (view == null) {
        return;
View Full Code Here

Examples of org.eclipse.help.ui.internal.views.ReusableHelpPart.showPage()

      stateManager = trayManager;
      saveCurrentSheet();      // Save the state into the tray manager
      helpPart.addPart(CheatSheetHelpPart.ID, new CheatSheetHelpPart(helpPart.getForm().getForm().getBody(), helpPart.getForm().getToolkit(), page.getToolBarManager(), contentElement, trayManager));
      page.addPart(CheatSheetHelpPart.ID, true);
      helpPart.addPage(page);
      helpPart.showPage(CheatSheetHelpPart.ID);
     
      /*
       * Disable the viewer until the tray is closed, then show it again.
       */
      control.setVisible(false);
 
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.ScrolledPageBook.showPage()

            sharedStyleManager.getProperties());
        boolean pageHasNavigation = styleManager.showHomePageNavigation();
        if (pageToShow != null) {
            if (pageBook.hasPage(pageToShow.getId()))
                // we are showing Home Page.
                pageBook.showPage(pageToShow.getId());
            else {
                if (pageHasNavigation) {
                    // page or Home Page with a page layout and navigation, set
                    // the page id to the static PageFormWithNavigation id.
                    // first create the correct content.
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.ScrolledPageBook.showPage()

                    // page or Home Page with a page layout and navigation, set
                    // the page id to the static PageFormWithNavigation id.
                    // first create the correct content.
                    pageFormWithNav.showPage(pageToShow, sharedStyleManager);
                    // then show the page
                    pageBook
                        .showPage(PageFormWithNavigation.PAGE_FORM_WITH_NAVIGATION_ID);
                } else {
                    // page or Home Page with a regular page layout, set the
                    // page id to the static PageForm id. first create the
                    // correct content.
View Full Code Here

Examples of org.eclipse.ui.forms.widgets.ScrolledPageBook.showPage()

                    // page or Home Page with a regular page layout, set the
                    // page id to the static PageForm id. first create the
                    // correct content.
                    pageForm.showPage(pageToShow, sharedStyleManager);
                    // then show the page
                    pageBook.showPage(PageForm.PAGE_FORM_ID);
                }
            }
            updateHistory(pageToShow);
        }
View Full Code Here

Examples of org.eclipse.ui.part.PageBook.showPage()

//
//        });
       
        if (!preferences.installed()) {
            setMessage(getDriversMessage());
            book.showPage(book.getChildren()[0]);
        } else {
            book.showPage(book.getChildren()[1]);
        }
    }
    /**
 
View Full Code Here

Examples of org.eclipse.ui.part.PageBook.showPage()

       
        if (!preferences.installed()) {
            setMessage(getDriversMessage());
            book.showPage(book.getChildren()[0]);
        } else {
            book.showPage(book.getChildren()[1]);
        }
    }
    /**
     * Called by the Wizard's updateButtons method to see if the "Finish"
     * button can be activated.
View Full Code Here

Examples of org.eclipse.ui.part.PageBook.showPage()

        splitter.setWeights(new int[]{10, 90});

        {
            information = new Text(book, SWT.WRAP );
            information.setText(Messages.InfoView_instructions_text);
            book.showPage(information);           
        }
        {
            textDisplay = new TextInfoDisplay();
            textDisplay.createDisplay(book);
            //textDisplay.getControl().setVisible(false);
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.