Example usage for org.eclipse.jface.window Window subclass-usage

List of usage examples for org.eclipse.jface.window Window subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.window Window subclass-usage.

Usage

From source file ca.uvic.chisel.javasketch.ui.internal.TimerDialog.java

/**
 * A simple class that shows a timer that updates every second or so.
 * @author Del Myers
 *
 */
public class TimerDialog extends Window {

From source file com.aptana.ide.core.ui.actions.SubmitBugDialog.java

/**
 * @author Michael Xia (mxia@aptana.com)
 */
public class SubmitBugDialog extends Window implements LocationListener {

    private static final String TITLE = Messages.SubmitBugDialog_Title;

From source file com.aptana.ide.documentation.help.HelpDialog.java

/**
 * @author Kevin Sawicki (ksawicki@aptana.com)
 */
public class HelpDialog extends Window {

    /**

From source file com.aptana.ide.syncing.ui.views.SmartSyncDialog.java

/**
 * @author Kevin Sawicki (ksawicki@aptana.com)
 * @author Michael Xia (mxia@aptana.com)
 */
public class SmartSyncDialog extends Window implements SelectionListener, ModifyListener, DirectionToolBar.Client,
        OptionsToolBar.Client, SyncJob.Client {

From source file com.github.haixing_hu.swt.window.ApplicationWindowEx.java

/**
 * An application window is a high-level "main window", with built-in
 * support for an optional menu bar with standard menus, an optional toolbar,
 * and an optional status line.
 * <p>
 * Creating an application window involves the following steps:

From source file com.google.dart.tools.ui.omni.BasePopupDialog.java

/**
 * A modified {@link PopupDialog} for use in the omnibox.
 */
public class BasePopupDialog extends Window {

    /**

From source file com.maccasoft.composer.InstrumentEditor.java

public class InstrumentEditor extends Window {

    Text name;
    ScrolledComposite sc;
    Composite instrumentContainer;
    InstrumentChart chart;

From source file com.nokia.carbide.remoteconnections.internal.ui.mylyn.AbstractNotificationPopup.java

/**
 * @author Benjamin Pasero
 * @author Mik Kersten
 * @author Steffen Pingel
 */
public abstract class AbstractNotificationPopup extends Window {

From source file com.swtxml.views.SwtXmlWindow.java

/**
 * Extend this class to implement JFace Windows with SWT/XML. It will parse the
 * co-located .swtxml file (same package, same name).
 * 
 * @author Ralf Ebert <info@ralfebert.de>
 */

From source file custom.swt.widgets.PopupDialog.java

/**
 * A lightweight, transient dialog that is popped up to show contextual or
 * temporal information and is easily dismissed. Clients control whether the
 * dialog should be able to receive input focus. An optional title area at the
 * top and an optional info area at the bottom can be used to provide additional
 * information.