Package cbg.editor

Examples of cbg.editor.BooleanColorFieldEditor


  }

  protected void createFieldEditors() {
    Composite p = getFieldEditorParent();
    String b = "&Bold";
    addField(new BooleanColorFieldEditor(NULL_COLOR, "Default color", NULL_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(KEYWORD1_COLOR, "Keyword1 color", KEYWORD1_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(KEYWORD2_COLOR, "Keyword2 color", KEYWORD2_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(KEYWORD3_COLOR, "Keyword3 color", KEYWORD3_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(KEYWORD4_COLOR, "Keyword4 color", KEYWORD4_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(COMMENT1_COLOR, "Comment1 color", COMMENT1_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(COMMENT2_COLOR, "Comment2 color", COMMENT2_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(LITERAL1_COLOR, "Literal1 color", LITERAL1_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(LITERAL2_COLOR, "Literal2 color", LITERAL2_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(LABEL_COLOR, "Label color", LABEL_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(FUNCTION_COLOR, "Function color", FUNCTION_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(MARKUP_COLOR, "Markup color", MARKUP_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(OPERATOR_COLOR, "Operator color", OPERATOR_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(DIGIT_COLOR, "Digit color", DIGIT_COLOR + BOLD_SUFFIX, b, p));
    addField(new BooleanColorFieldEditor(INVALID_COLOR, "Invalid color", INVALID_COLOR + BOLD_SUFFIX, b, p));
  }
View Full Code Here

TOP

Related Classes of cbg.editor.BooleanColorFieldEditor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.