Example usage for org.eclipse.jface.preference FieldEditorPreferencePage GRID

List of usage examples for org.eclipse.jface.preference FieldEditorPreferencePage GRID

Introduction

In this page you can find the example usage for org.eclipse.jface.preference FieldEditorPreferencePage GRID.

Prototype

int GRID

To view the source code for org.eclipse.jface.preference FieldEditorPreferencePage GRID.

Click Source Link

Document

Layout constant (value 1) indicating that the field editors' basic controls are put into a grid layout.

Usage

From source file:ar.com.tadp.xml.rinzo.core.preferences.FormattingPreferencePage.java

License:Open Source License

public FormattingPreferencePage() {
    super(FieldEditorPreferencePage.GRID);
    setPreferenceStore(XMLEditorPlugin.getDefault().getPreferenceStore());
    setDescription("XML Editor settings:");

    initializeDefaults();/*ww w.j  a va 2  s. c  o m*/

    this.colorPreferences.put("Line number foreground", "lineNumberColor");
    this.colorPreferences.put("Current line highlight", "currentLineColor");
    this.colorPreferences.put("Print margin", "printMarginColor");
    this.colorPreferences.put("Selection foreground color", "AbstractTextEditor.Color.SelectionForeground");
    this.colorPreferences.put("Selection background color", "AbstractTextEditor.Color.SelectionBackground");
    this.colorPreferences.put("Background color", "AbstractTextEditor.Color.Background");
}

From source file:br.ufmg.dcc.tabuleta.ui.ConcernMapperPreferencePage.java

License:Open Source License

/**
 * Creates a new preference page for TaBuLeTa.
 *///  w  w w .  j  a  v  a  2  s  .  c  om
public ConcernMapperPreferencePage() {
    super(FieldEditorPreferencePage.GRID);
    IPreferenceStore lStore = Tabuleta.getDefault().getPreferenceStore();
    setPreferenceStore(lStore);
}

From source file:ch.opentrainingcenter.client.preferences.ChartColorPreferencePage.java

License:Open Source License

public ChartColorPreferencePage() {
    super(FieldEditorPreferencePage.GRID);
    setDescription(Messages.ChartColorPreferencePage_0);
}

From source file:ch.opentrainingcenter.client.preferences.ChartPreferencePage.java

License:Open Source License

public ChartPreferencePage() {
    super(FieldEditorPreferencePage.GRID);
    setDescription(Messages.ChartPreferencePage_0);
}

From source file:ch.unibe.iam.scg.archie.preferences.ArchiePreferencePage.java

License:Open Source License

/**
 * Constructs an ArchiePreferencePage/*from  w  ww . j ava  2  s.  c o m*/
 */
public ArchiePreferencePage() {
    super(FieldEditorPreferencePage.GRID);

    this.setPreferenceStore(ArchieActivator.getInstance().getPreferenceStore());
    this.setDefaults();

    this.setDescription(
            "Archie settings page. Use the following input fields to manipulate Archie's default behaviour and adjust to fit your preferences.");
}

From source file:com.agynamix.platform.frontend.preferences.GlobalPreferencePageNetwork.java

License:Open Source License

public GlobalPreferencePageNetwork(IPreferenceConfigAdapter configAdapter) {
    super("Network Settings", FieldEditorPreferencePage.GRID);
    this.configAdapter = configAdapter;
    setDescription("Use this preference dialog to change Simidude's network behavior.\n"
            + "The default settings work out in most cases, "
            + "anyway you might want to check the group name and password settings, "
            + "especially if you are using Simidude in a corporate network.\n\nPlease restart Simidude after making changes.");
}

From source file:com.aptana.editor.js.preferences.NodePreferencePage.java

License:Open Source License

public NodePreferencePage() {
    // This will align the field-editors in a nice way.
    super(FieldEditorPreferencePage.GRID);
}

From source file:com.aptana.ide.ssh.impl.preferences.SSHPreferencePage.java

License:Open Source License

public SSHPreferencePage() {
    super(FieldEditorPreferencePage.GRID);
}

From source file:com.boothen.jsonedit.preferences.WorkbenchPreferencePage.java

License:Open Source License

/**
 *
 *//*www.j a va  2 s.c om*/
public WorkbenchPreferencePage() {
    super(FieldEditorPreferencePage.GRID);
    IPreferenceStore store = JsonPreferenceStore.getIPreferenceStore();
    setPreferenceStore(store);

}

From source file:com.boothen.jsonedit.preferences.WorkbenchPreferencePage.java

License:Open Source License

/**
 * @param title
 */

public WorkbenchPreferencePage(String title) {
    super(FieldEditorPreferencePage.GRID);
}