/net.sf.eclipsefp.haskell.ui/src/net/sf/eclipsefp/haskell/ui/internal/preferences/editor/IEditorPreferenceNames.java

https://github.com/thiagoarrais/eclipsefp · Java · 84 lines · 53 code · 6 blank · 25 comment · 0 complexity · d80adda3e11d0bcb1fdedf648bccd6a0 MD5 · raw file

  1. // Copyright (c) 2003-2005 by Leif Frenzel - see http://leiffrenzel.de
  2. package net.sf.eclipsefp.haskell.ui.internal.preferences.editor;
  3. import org.eclipse.ui.texteditor.AbstractTextEditor;
  4. /** <p>contains the preference names for the Haskell editor.</p>
  5. *
  6. * @author Leif Frenzel
  7. */
  8. public interface IEditorPreferenceNames {
  9. // Inherited constants
  10. // String EDITOR_CURRENT_LINE
  11. // = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_CURRENT_LINE;
  12. // String EDITOR_CURRENT_LINE_COLOR
  13. // = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_CURRENT_LINE_COLOR;
  14. // String EDITOR_LINE_NUMBER_RULER
  15. // = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_LINE_NUMBER_RULER;
  16. // String EDITOR_LINE_NUMBER_RULER_COLOR
  17. // = AbstractDecoratedTextEditorPreferenceConstants
  18. // .EDITOR_LINE_NUMBER_RULER_COLOR;
  19. // String EDITOR_PRINT_MARGIN
  20. // = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_PRINT_MARGIN;
  21. // String EDITOR_PRINT_MARGIN_COLOR
  22. // = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_PRINT_MARGIN_COLOR;
  23. // String EDITOR_PRINT_MARGIN_COLUMN
  24. // = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_PRINT_MARGIN_COLUMN;
  25. // String EDITOR_OVERVIEW_RULER
  26. // = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_OVERVIEW_RULER;
  27. String EDITOR_BACKGROUND_DEFAULT_COLOR
  28. = AbstractTextEditor.PREFERENCE_COLOR_BACKGROUND_SYSTEM_DEFAULT;
  29. String EDITOR_BACKGROUND_COLOR
  30. = AbstractTextEditor.PREFERENCE_COLOR_BACKGROUND;
  31. String EDITOR_FOREGROUND_COLOR
  32. = AbstractTextEditor.PREFERENCE_COLOR_FOREGROUND;
  33. String EDITOR_FOREGROUND_DEFAULT_COLOR
  34. = AbstractTextEditor.PREFERENCE_COLOR_FOREGROUND_SYSTEM_DEFAULT;
  35. // Custom constants
  36. String EDITOR_TAB_WIDTH = "tabWidth"; //$NON-NLS-1$
  37. String EDITOR_CABAL_TAB_WIDTH = "tabWidthCabal"; //$NON-NLS-1$
  38. String EDITOR_MATCHING_BRACKETS = "matchingBrackets"; //$NON-NLS-1$
  39. String EDITOR_MATCHING_BRACKETS_COLOR = "matchingBracketsColor"; //$NON-NLS-1$
  40. String EDITOR_COMMENT_COLOR = "commentColor"; //$NON-NLS-1$
  41. String EDITOR_COMMENT_BOLD = "commentBold"; //$NON-NLS-1$
  42. String EDITOR_LITERATE_COMMENT_COLOR = "literateCommentColor"; //$NON-NLS-1$
  43. String EDITOR_LITERATE_COMMENT_BOLD = "literateCommentBold"; //$NON-NLS-1$
  44. String EDITOR_FUNCTION_COLOR = "functionColor"; //$NON-NLS-1$
  45. String EDITOR_FUNCTION_BOLD = "propertyBold"; //$NON-NLS-1$
  46. String EDITOR_KEYWORD_COLOR = "keywordColor"; //$NON-NLS-1$
  47. String EDITOR_KEYWORD_BOLD = "keywordBold"; //$NON-NLS-1$
  48. String EDITOR_STRING_COLOR = "stringColor"; //$NON-NLS-1$
  49. String EDITOR_STRING_BOLD = "stringBold"; //$NON-NLS-1$
  50. String EDITOR_CHAR_COLOR = "charColor"; //$NON-NLS-1$
  51. String EDITOR_CHAR_BOLD = "charBold"; //$NON-NLS-1$
  52. String EDITOR_NUMBER_COLOR = "numberColor"; //$NON-NLS-1$
  53. String EDITOR_NUMBER_BOLD = "numberBold"; //$NON-NLS-1$
  54. String EDITOR_VAR_COLOR = "varColor"; //$NON-NLS-1$
  55. String EDITOR_VAR_BOLD = "varBold"; //$NON-NLS-1$
  56. String EDITOR_CON_COLOR = "conColor"; //$NON-NLS-1$
  57. String EDITOR_CON_BOLD = "conBold"; //$NON-NLS-1$
  58. String EDITOR_SYMBOL_COLOR = "symbolColor"; //$NON-NLS-1$
  59. String EDITOR_SYMBOL_BOLD = "symbolBold"; //$NON-NLS-1$
  60. String EDITOR_CPP_COLOR = "cppColor"; //$NON-NLS-1$
  61. String EDITOR_CPP_BOLD = "cppBold"; //$NON-NLS-1$
  62. String EDITOR_TH_COLOR = "thColor"; //$NON-NLS-1$
  63. String EDITOR_TH_BOLD = "thBold"; //$NON-NLS-1$
  64. String EDITOR_DEFAULT_COLOR = "defaultColor"; //$NON-NLS-1$
  65. String EDITOR_DEFAULT_BOLD = "defaultBold"; //$NON-NLS-1$
  66. // String EDITOR_SPACES_FOR_TABS = "spacesForTabs"; //$NON-NLS-1$
  67. String EDITOR_CLOSE_STRINGS = "closeStrings"; //$NON-NLS-1$
  68. String EDITOR_CLOSE_BRACKETS_AND_PARENS = "closeBracketsAndParens"; //$NON-NLS-1$
  69. String EDITOR_CLOSE_BRACES = "closeBraces"; //$NON-NLS-1$
  70. String EDITOR_SHOW_SELECTED_ELEMENT_ONLY = "showSelectedElementOnly"; //$NON-NLS-1$
  71. String CA_AUTOACTIVATION = "contentAssistAutoActivation"; //$NON-NLS-1$
  72. String CA_AUTOACTIVATION_DELAY = "contentAssistAutoActivationDelay"; //$NON-NLS-1$
  73. String CA_AUTOACTIVATION_TRIGGERS = "contentAssistAutoActivationTriggers"; //$NON-NLS-1$
  74. String CA_AUTOINSERT = "contentAssistAutoInsert"; //$NON-NLS-1$
  75. String CA_ORDER_PROPOSALS = "contentAssistOrderProposals"; //$NON-NLS-1$
  76. String CA_PROPOSALS_BACKGROUND = "contentAssistProposalsBackground"; //$NON-NLS-1$
  77. String CA_PROPOSALS_FOREGROUND = "contentAssistProposalsForeground"; //$NON-NLS-1$
  78. }