From b5c5fe52bef889237ab416682b8f13064a2989b1 Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Fri, 28 Mar 2003 19:19:33 +0000 Subject: [PATCH] Added default format preference constants for variables, expressions and registers. --- debug/org.eclipse.cdt.debug.core/ChangeLog | 4 ++++ .../eclipse/cdt/debug/core/ICDebugConstants.java | 15 +++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index 616c13dd4d4..7ff9a5cec53 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,7 @@ +2003-03-28 Mikhail Khodjaiants + Added default format preference constants for variables, expressions and registers. + * ICDebugConstants.java + 2003-03-28 Mikhail Khodjaiants Core support of the 'Run To C/C++ Line' and 'Resume At C/C++ Line' actions for external files. * IJumpToLine.java diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDebugConstants.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDebugConstants.java index 972d3c35b72..21eb8aea21a 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDebugConstants.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/ICDebugConstants.java @@ -25,4 +25,19 @@ public interface ICDebugConstants * disassembly mode. */ public static final String PREF_AUTO_DISASSEMBLY = PLUGIN_ID + "cDebug.auto_disassembly"; //$NON-NLS-1$ + + /** + * The identifier of the default variable format to use in the variables view + */ + public static final String PREF_DEFAULT_VARIABLE_FORMAT = PLUGIN_ID + "cDebug.default_variable_format"; //$NON-NLS-1$ + + /** + * The identifier of the default register format to use in the registers view + */ + public static final String PREF_DEFAULT_REGISTER_FORMAT = PLUGIN_ID + "cDebug.default_register_format"; //$NON-NLS-1$ + + /** + * The identifier of the default expression format to use in the expressions views + */ + public static final String PREF_DEFAULT_EXPRESSION_FORMAT = PLUGIN_ID + "cDebug.default_expression_format"; //$NON-NLS-1$ }