List of usage examples for org.eclipse.jface.dialogs Dialog subclass-usage
From source file ch.elexis.dialogs.BezugsKontaktAuswahl.java
public class BezugsKontaktAuswahl extends Dialog { Combo cbType; String result = ""; //$NON-NLS-1$ public BezugsKontaktAuswahl() { super(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell());
From source file ch.elexis.dialogs.BrowserInputDialog.java
public class BrowserInputDialog extends Dialog {
String url;
String title;
String text;
Text input;
String result;
From source file ch.elexis.dialogs.ChoiceDialog.java
public class ChoiceDialog extends Dialog { String title; String message; String[] choices; Button[] buttons; int result = -1;
From source file ch.elexis.dialogs.DateSelectorDialog.java
public class DateSelectorDialog extends Dialog { DatePicker dp; TimeTool date; public DateSelectorDialog(Shell parent, TimeTool date) { super(parent);
From source file ch.elexis.dialogs.GenericPrintDialog.java
/**
* A Dialog to display data to print
*
* @author Gerry Weirich
*
*/
From source file ch.elexis.preferences.SidebarPreferences.java
class PerspektivenAuswahl extends Dialog { String selection; private List list; protected PerspektivenAuswahl(Shell parentShell) { super(parentShell);
From source file ch.elexis.views.TarmedDetailDialog.java
public class TarmedDetailDialog extends Dialog { private Verrechnet verrechnet; private Combo cSide; private Button bPflicht; private ComboViewer cBezug;
From source file ch.netcetera.eclipse.common.dialog.ComboSelectionDialog.java
/** * A dialog offering a selection from a combo box. */ public class ComboSelectionDialog extends Dialog { private String fSelection = null;
From source file cn.com.sky.hyperbola.AddContactDialog.java
/** * Add roster entry dialog, which prompts for the entry details. */ public class AddContactDialog extends Dialog { private Text userIdText;
From source file cn.com.sky.hyperbola.LoginDialog.java
/** * Login dialog, which prompts for the user's account info, and has Login and * Cancel buttons. */ public class LoginDialog extends Dialog {