Changed hierarchy of splits to give variables/registers more room

This commit is contained in:
Stephan Aßmus
2013-05-10 09:57:43 +02:00
parent abb7ea6512
commit 9f5437a40b
@@ -766,23 +766,23 @@ TeamWindow::_Init()
.GetSplitView(&fFunctionSplitView) .GetSplitView(&fFunctionSplitView)
.SetInsets(B_USE_SMALL_INSETS) .SetInsets(B_USE_SMALL_INSETS)
.Add(fTabView = new BTabView("tab view"), 0.4f) .Add(fTabView = new BTabView("tab view"), 0.4f)
.AddGroup(B_VERTICAL, B_USE_SMALL_SPACING) .AddSplit(B_HORIZONTAL, 3.0f)
.AddGroup(B_HORIZONTAL, B_USE_SMALL_SPACING) .GetSplitView(&fSourceSplitView)
.Add(fRunButton = new BButton("Run")) .AddGroup(B_VERTICAL, B_USE_SMALL_SPACING)
.Add(fStepOverButton = new BButton("Step Over")) .AddGroup(B_HORIZONTAL, B_USE_SMALL_SPACING)
.Add(fStepIntoButton = new BButton("Step Into")) .Add(fRunButton = new BButton("Run"))
.Add(fStepOutButton = new BButton("Step Out")) .Add(fStepOverButton = new BButton("Step Over"))
.AddGlue() .Add(fStepIntoButton = new BButton("Step Into"))
.End() .Add(fStepOutButton = new BButton("Step Out"))
.Add(fSourcePathView = new BStringView( .AddGlue()
"source path", .End()
"Source path unavailable."), 4.0f) .Add(fSourcePathView = new BStringView(
.AddSplit(B_HORIZONTAL, 3.0f) "source path",
.GetSplitView(&fSourceSplitView) "Source path unavailable."), 4.0f)
.Add(sourceScrollView = new BScrollView("source scroll", .Add(sourceScrollView = new BScrollView("source scroll",
NULL, 0, true, true), 3.0f) NULL, 0, true, true), 3.0f)
.Add(fLocalsTabView = new BTabView("locals view"))
.End() .End()
.Add(fLocalsTabView = new BTabView("locals view"))
.End() .End()
.End(); .End();