From 980e8f525b924491915571c2ed03469bd6751047 Mon Sep 17 00:00:00 2001 From: tron Date: Thu, 5 Jan 2006 12:00:38 +0000 Subject: (svn r3364) Remove 3 unused functions (ScrollWindowToTile, AllocateWindowAutoPlace, AllocateWindowAutoPlace2) --- window.c | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'window.c') diff --git a/window.c b/window.c index f87af6fe3..91fdaca74 100644 --- a/window.c +++ b/window.c @@ -478,29 +478,6 @@ Window *AllocateWindow( return w; } -Window *AllocateWindowAutoPlace2( - WindowClass exist_class, - WindowNumber exist_num, - int width, - int height, - WindowProc *proc, - WindowClass cls, - const Widget *widget) -{ - Window *w; - int x; - - w = FindWindowById(exist_class, exist_num); - if (w == NULL || w->left >= (_screen.width-20) || w->left <= -60 || w->top >= (_screen.height-20)) { - return AllocateWindowAutoPlace(width,height,proc,cls,widget); - } - - x = w->left; - if (x > _screen.width - width) x = _screen.width - width - 20; - - return AllocateWindow(x + 10, w->top + 10, width, height, proc, cls, widget); -} - typedef struct SizeRect { int left,top,width,height; @@ -622,16 +599,6 @@ ok_pos:; return pt; } -Window *AllocateWindowAutoPlace( - int width, - int height, - WindowProc *proc, - WindowClass cls, - const Widget *widget) { - - Point pt = GetAutoPlacePosition(width, height); - return AllocateWindow(pt.x, pt.y, width, height, proc, cls, widget); -} Window *AllocateWindowDescFront(const WindowDesc *desc, int value) { -- cgit v1.2.3-54-g00ecf