usability improvements to scrollbar, sorry had no time to include all of Stefanos drawing code yet, other visual improvements

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13535 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2005-07-07 14:33:19 +00:00
parent a5ca645e49
commit 7dc436d8dd
5 changed files with 848 additions and 778 deletions
+10
View File
@@ -1832,6 +1832,16 @@ BWindow::ResizeBy(float dx, float dy)
fLink->Attach<float>(dy);
fLink->Flush();
/* int32 code;
if (fLink->FlushWithReply(code) == B_OK
&& code == SERVER_TRUE) {
fLink->Read<float>(&dx);
fLink->Read<float>(&dy);
fFrame.SetRightBottom(fFrame.LeftTop() + BPoint(dx, dy));
top_view->ResizeTo(dx, dy);
}*/
fFrame.SetRightBottom(fFrame.RightBottom() + BPoint(dx, dy));
top_view->ResizeBy(dx, dy);
}