From c818183b7ea0b831064f9c3ffd1dc73675089969 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Thu, 16 Jun 2005 16:44:58 +0000 Subject: [PATCH] _started_ implementing Tab sliding git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13182 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/servers/app/Decorator.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/headers/private/servers/app/Decorator.h b/headers/private/servers/app/Decorator.h index 7d7dd10469..bd044ad487 100644 --- a/headers/private/servers/app/Decorator.h +++ b/headers/private/servers/app/Decorator.h @@ -115,10 +115,13 @@ class Decorator { virtual void MoveBy(float x, float y); virtual void MoveBy(BPoint pt); - virtual BRect SlideTab(float dx, float dy = 0); virtual void ResizeBy(float x, float y); virtual void ResizeBy(BPoint pt); + virtual void SetTabLocation(float location) {} + virtual float TabLocation() const + { return 0.0; } + virtual void Draw(BRect r); virtual void Draw(); virtual void DrawClose();