Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2009-02-11 21:42:30 +0000
committerPawel Piech2009-02-11 21:42:30 +0000
commit3e32eb67d25aefc077fb1336a92d931dd5eaa782 (patch)
treef5a7b655e66a8f41ed6df6402031ed522e19b319 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences
parent720a171cb424f1f416988e06093ac8b96d574a3b (diff)
downloadeclipse.platform.debug-3e32eb67d25aefc077fb1336a92d931dd5eaa782.tar.gz
eclipse.platform.debug-3e32eb67d25aefc077fb1336a92d931dd5eaa782.tar.xz
eclipse.platform.debug-3e32eb67d25aefc077fb1336a92d931dd5eaa782.zip
Bug 262261 - [breadcrumb] Add actions to Debug view to switch between tree view, breadcrumb, or automatic modes.
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/IDebugPreferenceConstants.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/IDebugPreferenceConstants.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/IDebugPreferenceConstants.java
index f500db89e..43bde360f 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/IDebugPreferenceConstants.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/IDebugPreferenceConstants.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -270,6 +270,13 @@ public interface IDebugPreferenceConstants {
*/
public static final String PREF_TABLE_RENDERING_POST_BUFFER_SIZE = "org.eclispe.debug.ui.memory.postBufferSize"; //$NON-NLS-1$
+ /**
+ * The layout mode in Debug view.
+ */
+ public static final String DEBUG_VIEW_MODE = "org.eclispe.debug.ui.Debug_view.mode"; //$NON-NLS-1$
+ public static final String DEBUG_VIEW_MODE_AUTO = "Debug_view.mode.auto"; //$NON-NLS-1$
+ public static final String DEBUG_VIEW_MODE_COMPACT = "Debug_view.mode.compact"; //$NON-NLS-1$
+ public static final String DEBUG_VIEW_MODE_FULL = "Debug_view.mode.full"; //$NON-NLS-1$
}

Back to the top