Let windows stick to right display edge (WB)
authorH.G. Muller <h.g.muller@hccnet.nl>
Thu, 20 Sep 2012 13:29:42 +0000 (15:29 +0200)
committerH.G. Muller <h.g.muller@hccnet.nl>
Thu, 20 Sep 2012 13:43:08 +0000 (15:43 +0200)
Auxiliary windows docked to the board window from below or to the right, which are
pushed out of view when the board window resizes, will be trimmed to just touch the
diplay edge (if sufficient width or height remains). When the board window shrinks,
auxiliary windows touching the edge will be resized so they remain touching it.

winboard/winboard.h
winboard/wlayout.c

index 6759f79..fe03547 100644 (file)
@@ -215,3 +215,4 @@ extern HWND gameListDialog;
 \r
 VOID EditTagsProc(void);\r
 extern HWND editTagsDialog;\r
+extern int screenWidth, screenHeight;
index 2442466..08f461f 100644 (file)
@@ -172,12 +172,20 @@ VOID ReattachAfterSize( LPRECT lprcOldPos, int new_w, int new_h, HWND hWndChild,
             int delta_y = new_h - (lprcOldPos->bottom - lprcOldPos->top);\r
 \r
             /* Adjust size & placement */\r
-            if(pwpChild->x + pwpChild->width  >= lprcOldPos->right  )\r
+            if(pwpChild->x + pwpChild->width  >= lprcOldPos->right &&\r
+              (pwpChild->x + pwpChild->width  < screenWidth - 5 || delta_x > 0) ) // keep right edge glued to display edge if touching\r
                pwpChild->width += delta_x;\r
-            if(pwpChild->y + pwpChild->height >= lprcOldPos->bottom )\r
+            if(pwpChild->x + pwpChild->width  >= screenWidth  ) // don't move right edge off screen\r
+               pwpChild->width = screenWidth - pwpChild->x;\r
+            if(pwpChild->y + pwpChild->height >= lprcOldPos->bottom &&\r
+              (pwpChild->y + pwpChild->height < screenHeight - 35 || delta_y > 0) ) // keep bottom edge glued to display edge if touching\r
                pwpChild->height += delta_y;\r
+            if(pwpChild->y + pwpChild->height >= screenHeight - 30 ) // don't move bottom edge off screen\r
+               pwpChild->height = screenHeight - 30 - pwpChild->y;\r
             if(pwpChild->x >= lprcOldPos->right)  pwpChild->width  -= delta_x, pwpChild->x += delta_x;\r
             if(pwpChild->y >= lprcOldPos->bottom) pwpChild->height -= delta_y, pwpChild->y += delta_y;\r
+            if(pwpChild->width  < 30) pwpChild->width = 30;  // force minimum width\r
+            if(pwpChild->height < 50) pwpChild->height = 50; // force minimum height\r
             /* Move window */\r
             if( hWndChild != NULL ) {\r
                 SetWindowPos( hWndChild, HWND_TOP,\r