Example usage for org.eclipse.jface.dialogs IPageChangeProvider interface-usage

List of usage examples for org.eclipse.jface.dialogs IPageChangeProvider interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.dialogs IPageChangeProvider interface-usage.

Usage

From source file com.codesourcery.internal.installer.ui.WizardDialog.java

/**
 * A dialog to show a wizard to the end user.
 * <p>
 * In typical usage, the client instantiates this class with a particular
 * wizard. The dialog serves as the wizard container and orchestrates the
 * presentation of its pages.

From source file com.google.dart.tools.search.internal.ui.SearchDialog.java

public class SearchDialog extends ExtendedDialogWindow implements ISearchPageContainer, IPageChangeProvider {

    private class TabFolderLayout extends Layout {
        @Override
        protected Point computeSize(Composite composite, int wHint, int hHint, boolean flushCache) {
            if (wHint != SWT.DEFAULT && hHint != SWT.DEFAULT) {

From source file com.mindquarry.desktop.preferences.dialog.FilteredPreferenceDialog.java

/**
 * A preference dialog is a hierarchical presentation of preference pages. Each
 * page is represented by a node in the tree shown on the left hand side of the
 * dialog; when a node is selected, the corresponding page is shown on the right
 * hand side.
 */

From source file com.nokia.carbide.search.system.internal.ui.SearchDialog.java

public class SearchDialog extends ExtendedDialogWindow implements ISearchPageContainer, IPageChangeProvider {

    private class TabFolderLayout extends Layout {
        protected Point computeSize(Composite composite, int wHint, int hHint, boolean flushCache) {
            if (wHint != SWT.DEFAULT && hHint != SWT.DEFAULT)
                return new Point(wHint, hHint);

From source file eu.esdihumboldt.hale.ui.util.dialog.MultiPageDialog.java

/**
 * Dialog consisting of multiple {@link IDialogPage}s
 * 
 * @param <T> the dialog page type
 * 
 * @author Simon Templer

From source file net.geoprism.shapefile.LocalizedWizardDialog.java

/**
 * A dialog to show a wizard to the end user.
 * <p>
 * In typical usage, the client instantiates this class with a particular
 * wizard. The dialog serves as the wizard container and orchestrates the
 * presentation of its pages.

From source file net.heartsome.cat.common.ui.wizard.TSWizardDialog.java

/**
 * A dialog to show a wizard to the end user.( org.eclipse.jface.wizard.WizardDialog ???)
 * <p>
 * In typical usage, the client instantiates this class with a particular
 * wizard. The dialog serves as the wizard container and orchestrates the
 * presentation of its pages.

From source file net.refractions.udig.style.sld.editor.internal.EditorDialog.java

/**
 * A preference dialog is a hierarchical presentation of preference pages. Each
 * page is represented by a node in the tree shown on the left hand side of the
 * dialog; when a node is selected, the corresponding page is shown on the right
 * hand side.
 */

From source file net.sf.logsaw.ui.editors.ILogViewEditor.java

/**
 * This interface defines the methods provided by a log view editor.
 */
public interface ILogViewEditor extends IRefreshablePart, IEditorPart, IPageChangeProvider {

    /**

From source file org.eclipse.birt.core.ui.frameworks.taskwizard.WizardBaseDialog.java

/**
 * Provides Dialog for WizardBase
 */

public class WizardBaseDialog extends TitleAreaDialog
        implements SelectionListener, ControlListener, DisposeListener, IPageChangeProvider {