Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjszursze2001-09-24 16:26:24 +0000
committerjszursze2001-09-24 16:26:24 +0000
commitb2db8e6a9a68c014f9cd7c05db53c88b8b7fdbc6 (patch)
treebff2b19486de30e5162df4ba22cf6d63190761da
parent470d5edab5015ddff2cc7c683aeebbbd84d4c399 (diff)
downloadeclipse.platform.debug-b2db8e6a9a68c014f9cd7c05db53c88b8b7fdbc6.tar.gz
eclipse.platform.debug-b2db8e6a9a68c014f9cd7c05db53c88b8b7fdbc6.tar.xz
eclipse.platform.debug-b2db8e6a9a68c014f9cd7c05db53c88b8b7fdbc6.zip
1GAURLB: ITPDUI:WINNT - Breakpoint properties
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugPerspective.java12
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java1
2 files changed, 8 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugPerspective.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugPerspective.java
index 01a758a80..608bac71e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugPerspective.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugPerspective.java
@@ -28,12 +28,14 @@ public class DebugPerspective implements IPerspectiveFactory {
navFolder.addView(IPageLayout.ID_RES_NAV);
- IFolderLayout folder= layout.createFolder(IInternalDebugUIConstants.ID_TOOLS_FOLDER_VIEW, IPageLayout.RIGHT, (float) 0.5, IInternalDebugUIConstants.ID_NAVIGATOR_FOLDER_VIEW);
- folder.addView(IDebugUIConstants.ID_VARIABLE_VIEW);
- folder.addView(IDebugUIConstants.ID_BREAKPOINT_VIEW);
- folder.addView(IDebugUIConstants.ID_INSPECTOR_VIEW);
+ IFolderLayout toolsFolder= layout.createFolder(IInternalDebugUIConstants.ID_TOOLS_FOLDER_VIEW, IPageLayout.RIGHT, (float) 0.5, IInternalDebugUIConstants.ID_NAVIGATOR_FOLDER_VIEW);
+ toolsFolder.addView(IDebugUIConstants.ID_VARIABLE_VIEW);
+ toolsFolder.addView(IDebugUIConstants.ID_BREAKPOINT_VIEW);
+ toolsFolder.addView(IDebugUIConstants.ID_INSPECTOR_VIEW);
- layout.addView(IPageLayout.ID_OUTLINE, IPageLayout.RIGHT, (float) 0.75, layout.getEditorArea());
+ IFolderLayout outlineFolder= layout.createFolder(IInternalDebugUIConstants.ID_OUTLINE_FOLDER_VIEW, IPageLayout.RIGHT, (float) 0.75, layout.getEditorArea());
+ outlineFolder.addView(IPageLayout.ID_PROP_SHEET);
+ outlineFolder.addView(IPageLayout.ID_OUTLINE);
layout.addActionSet(IDebugUIConstants.DEBUG_ACTION_SET);
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java
index 8c22aae59..54ab7238f 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/IInternalDebugUIConstants.java
@@ -11,6 +11,7 @@ public interface IInternalDebugUIConstants {
public static final String ID_NAVIGATOR_FOLDER_VIEW= "org.eclipse.debug.internal.ui.NavigatorFolderView";
public static final String ID_TOOLS_FOLDER_VIEW= "org.eclipse.debug.internal.ui.ToolsFolderView";
public static final String ID_CONSOLE_FOLDER_VIEW= "org.eclipse.debug.internal.ui.ConsoleFolderView";
+ public static final String ID_OUTLINE_FOLDER_VIEW= "org.eclipse.debug.internal.ui.OutlineFolderView";
//Current stack frame instruction pointer
public static final String INSTRUCTION_POINTER= "org.eclipse.debug.ui.instructionPointer";

Back to the top