List of usage examples for org.eclipse.jface.preference PreferenceDialog subclass-usage
From source file au.gov.ga.earthsci.common.ui.preferences.LazyPreferenceDialog.java
/**
* {@link PreferenceDialog} subclass that only saves/cancels pages for which
* controls have been created.
*
* @author Michael de Hoog (michael.dehoog@ga.gov.au)
*/
From source file com.elphel.vdt.ui.options.SetupOptionsDialog.java
public class SetupOptionsDialog extends PreferenceDialog { Context context; private String title; public SetupOptionsDialog(Shell parentShell) {
From source file de.tub.tfs.muvitor.ui.utils.test.PropertiesDialog.java
/**
* A Preference Dialog which has a Close button in place of OK/Cancel buttons,
* and titled "Properties" in place of "Preferences"
*
* @author Michael Yee
*/
From source file net.sourceforge.eclipsetrader.ats.ui.tradingsystem.properties.TradingSystemPropertiesDialog.java
public class TradingSystemPropertiesDialog extends PreferenceDialog { public TradingSystemPropertiesDialog(Shell parentShell, TradingSystem tradingSystem) { super(parentShell, new PreferenceManager()); getPreferenceManager().addToRoot(new PreferenceNode("general", new GeneralPage(tradingSystem)));
From source file net.sourceforge.eclipsetrader.charts.dialogs.ChartSettingsDialog.java
/** */ public class ChartSettingsDialog extends PreferenceDialog { private Chart chart; private GeneralPage generalPage;
From source file net.sourceforge.eclipsetrader.charts.dialogs.IndicatorSettingsDialog.java
/** */ public class IndicatorSettingsDialog extends PreferenceDialog { public IndicatorSettingsDialog(ChartIndicator indicator, Shell parentShell) { super(parentShell, new PreferenceManager());
From source file net.sourceforge.eclipsetrader.charts.dialogs.ObjectSettingsDialog.java
/** */ public class ObjectSettingsDialog extends PreferenceDialog { private ChartObject object; public ObjectSettingsDialog(ChartObject indicator, Shell parentShell) {
From source file net.sourceforge.eclipsetrader.core.ui.preferences.SecurityPropertiesDialog.java
public class SecurityPropertiesDialog extends PreferenceDialog { private Security security; public SecurityPropertiesDialog(Security security, Shell parentShell) { super(parentShell, new PreferenceManager()); this.security = security;
From source file net.sourceforge.eclipsetrader.trading.wizards.accounts.AccountSettingsDialog.java
public class AccountSettingsDialog extends PreferenceDialog { private Account account; private GeneralPage generalPage; public AccountSettingsDialog(Account account, Shell parentShell) { super(parentShell, new PreferenceManager());
From source file net.sourceforge.eclipsetrader.trading.wizards.systems.TradingSystemSettingsDialog.java
public class TradingSystemSettingsDialog extends PreferenceDialog { private TradingSystem system; private BaseParametersPage baseParameters; public TradingSystemSettingsDialog(TradingSystem system, Shell parentShell) { super(parentShell, new PreferenceManager());