summaryrefslogtreecommitdiff
path: root/gdk/win32
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2003-08-02 02:05:12 +0000
committerTor Lillqvist <tml@src.gnome.org>2003-08-02 02:05:12 +0000
commit3dc24f5893e40b85633370742e393fe57b3be36a (patch)
tree561878e96dac3771626df688fb5eaf9fb2c26b3c /gdk/win32
parent6796cc5fa53afede8b91c872d909eb7a8ec152c0 (diff)
downloadgdk-pixbuf-3dc24f5893e40b85633370742e393fe57b3be36a.tar.gz
Fix gdk/win32 window geometry handling again. The window position in a
2003-08-02 Tor Lillqvist <tml@iki.fi> Fix gdk/win32 window geometry handling again. The window position in a GDK_CONFIGURE event should be that of the client area, not of the window decorations. (I was confused by the term "window border" in X11. It does *not* mean the window manager decorations. There are no X11-style window borders in Win32.) Also, this time do take the geometry hints into account appropriately when moving windows. Now testgtk's gravity test's move buttons work OK. There are stil problems with taking gravity into account when showing a hidden window. * gdk/win32/gdkwindow-win32.h: Keep a whole GdkGeometry as hints instead of separate fields. * gdk/win32/gdkevents-win32.c (handle_configure_event): Don't adjust for decorations. * gdk/win32/gdkwindow-win32.c (get_outer_rect, adjust_for_gravity_hints): New functions. (gdk_window_move, gdk_window_resize, gdk_window_move_resize): Use above functions, take geometry hints into account. (gdk_window_set_geometry_hints): Size hints specicy client area, not including decorations.
Diffstat (limited to 'gdk/win32')
-rw-r--r--gdk/win32/gdkevents-win32.c47
-rw-r--r--gdk/win32/gdkwindow-win32.c255
-rw-r--r--gdk/win32/gdkwindow-win32.h4
3 files changed, 175 insertions, 131 deletions
diff --git a/gdk/win32/gdkevents-win32.c b/gdk/win32/gdkevents-win32.c
index 7aa0715ad..f31aaf10b 100644
--- a/gdk/win32/gdkevents-win32.c
+++ b/gdk/win32/gdkevents-win32.c
@@ -1575,46 +1575,31 @@ static void
handle_configure_event (MSG *msg,
GdkWindow *window)
{
- RECT client_rect, outer_rect;
- POINT point;
- LONG style, exstyle;
+ RECT client_rect;
GetClientRect (msg->hwnd, &client_rect);
GDK_WINDOW_IMPL_WIN32 (((GdkWindowObject *) window)->impl)->width = client_rect.right - client_rect.left;
GDK_WINDOW_IMPL_WIN32 (((GdkWindowObject *) window)->impl)->height = client_rect.bottom - client_rect.top;
- point.x = client_rect.left;
- point.y = client_rect.top;
- ClientToScreen (msg->hwnd, &point);
- outer_rect.left = point.x;
- outer_rect.top = point.y;
-
- point.x = client_rect.right;
- point.y = client_rect.bottom;
- ClientToScreen (msg->hwnd, &point);
- outer_rect.right = point.x;
- outer_rect.bottom = point.y;
-
- style = GetWindowLong (msg->hwnd, GWL_STYLE);
- exstyle = GetWindowLong (msg->hwnd, GWL_EXSTYLE);
-
- API_CALL (AdjustWindowRectEx, (&outer_rect, style,
- FALSE, exstyle));
-
- ((GdkWindowObject *) window)->x = outer_rect.left;
- ((GdkWindowObject *) window)->y = outer_rect.top;
+ ((GdkWindowObject *) window)->x = client_rect.left;
+ ((GdkWindowObject *) window)->y = client_rect.top;
if (((GdkWindowObject *) window)->event_mask & GDK_STRUCTURE_MASK)
{
+ POINT point;
GdkEvent *event = gdk_event_new (GDK_CONFIGURE);
+
+ point.x = point.y = 0;
+ ClientToScreen (msg->hwnd, &point);
+
event->configure.window = window;
event->configure.width = client_rect.right - client_rect.left;
event->configure.height = client_rect.bottom - client_rect.top;
- event->configure.x = outer_rect.left;
- event->configure.y = outer_rect.top;
+ event->configure.x = point.x;
+ event->configure.y = point.y;
append_event (gdk_drawable_get_display (window), event);
}
@@ -2832,20 +2817,20 @@ gdk_event_translate (GdkDisplay *display,
mmi = (MINMAXINFO*) msg->lParam;
if (impl->hint_flags & GDK_HINT_MIN_SIZE)
{
- mmi->ptMinTrackSize.x = impl->hint_min_width;
- mmi->ptMinTrackSize.y = impl->hint_min_height;
+ mmi->ptMinTrackSize.x = impl->hints.min_width;
+ mmi->ptMinTrackSize.y = impl->hints.min_height;
}
if (impl->hint_flags & GDK_HINT_MAX_SIZE)
{
- mmi->ptMaxTrackSize.x = impl->hint_max_width;
- mmi->ptMaxTrackSize.y = impl->hint_max_height;
+ mmi->ptMaxTrackSize.x = impl->hints.max_width;
+ mmi->ptMaxTrackSize.y = impl->hints.max_height;
/* kind of WM functionality, limit maximized size to screen */
mmi->ptMaxPosition.x = 0;
mmi->ptMaxPosition.y = 0;
- mmi->ptMaxSize.x = MIN (impl->hint_max_width, gdk_screen_width ());
- mmi->ptMaxSize.y = MIN (impl->hint_max_height, gdk_screen_height ());
+ mmi->ptMaxSize.x = MIN (impl->hints.max_width, gdk_screen_width ());
+ mmi->ptMaxSize.y = MIN (impl->hints.max_height, gdk_screen_height ());
}
else if (impl->hint_flags & GDK_HINT_MIN_SIZE)
{
diff --git a/gdk/win32/gdkwindow-win32.c b/gdk/win32/gdkwindow-win32.c
index 3e1c447ca..15b055cc5 100644
--- a/gdk/win32/gdkwindow-win32.c
+++ b/gdk/win32/gdkwindow-win32.c
@@ -782,6 +782,89 @@ gdk_window_destroy_notify (GdkWindow *window)
}
static void
+get_outer_rect (GdkWindow *window,
+ gint width,
+ gint height,
+ RECT *rect)
+{
+ LONG style, exstyle;
+
+ style = GetWindowLong (GDK_WINDOW_HWND (window), GWL_STYLE);
+ exstyle = GetWindowLong (GDK_WINDOW_HWND (window), GWL_EXSTYLE);
+
+ rect->left = rect->top = 0;
+ rect->right = width;
+ rect->bottom = height;
+
+ API_CALL (AdjustWindowRectEx, (rect, style, FALSE, exstyle));
+}
+
+static void
+adjust_for_gravity_hints (GdkWindowImplWin32 *impl,
+ RECT *outer_rect,
+ gint *x,
+ gint *y)
+{
+ if (impl->hint_flags & GDK_HINT_WIN_GRAVITY)
+ {
+ gint orig_x = *x, orig_y = *y;
+
+ switch (impl->hints.win_gravity)
+ {
+ case GDK_GRAVITY_NORTH:
+ case GDK_GRAVITY_CENTER:
+ case GDK_GRAVITY_SOUTH:
+ *x -= (outer_rect->right - outer_rect->left) / 2;
+ *x += impl->width / 2;
+ break;
+
+ case GDK_GRAVITY_SOUTH_EAST:
+ case GDK_GRAVITY_EAST:
+ case GDK_GRAVITY_NORTH_EAST:
+ *x -= outer_rect->right - outer_rect->left;
+ *x += impl->width;
+ break;
+
+ case GDK_GRAVITY_STATIC:
+ *x += outer_rect->left;
+ break;
+
+ default:
+ break;
+ }
+
+ switch (impl->hints.win_gravity)
+ {
+ case GDK_GRAVITY_WEST:
+ case GDK_GRAVITY_CENTER:
+ case GDK_GRAVITY_EAST:
+ *y -= (outer_rect->bottom - outer_rect->top) / 2;
+ *y += impl->height / 2;
+ break;
+
+ case GDK_GRAVITY_SOUTH_WEST:
+ case GDK_GRAVITY_SOUTH:
+ case GDK_GRAVITY_SOUTH_EAST:
+ *y -= outer_rect->bottom - outer_rect->top;
+ *y += impl->height;
+ break;
+
+ case GDK_GRAVITY_STATIC:
+ *y += outer_rect->top;
+ break;
+
+ default:
+ break;
+ }
+ GDK_NOTE (MISC,
+ (orig_x != *x || orig_y != *y) ?
+ g_print ("adjust_for_gravity_hints: x: %d->%d, y: %d->%d\n",
+ orig_x, *x, orig_y, *y)
+ : (void) 0);
+ }
+}
+
+static void
show_window_internal (GdkWindow *window,
gboolean raise,
gboolean deiconify)
@@ -947,21 +1030,27 @@ gdk_window_move (GdkWindow *window,
g_return_if_fail (window != NULL);
g_return_if_fail (GDK_IS_WINDOW (window));
+ if (GDK_WINDOW_DESTROYED (window))
+ return;
+
GDK_NOTE (MISC, g_print ("gdk_window_move: %p: +%d+%d\n",
GDK_WINDOW_HWND (window), x, y));
impl = GDK_WINDOW_IMPL_WIN32 (private->impl);
- if (!GDK_WINDOW_DESTROYED (window))
+ if (GDK_WINDOW_TYPE (private) == GDK_WINDOW_CHILD)
+ _gdk_window_move_resize_child (window, x, y, impl->width, impl->height);
+ else
{
- if (GDK_WINDOW_TYPE (private) == GDK_WINDOW_CHILD)
- _gdk_window_move_resize_child (window, x, y,
- impl->width, impl->height);
- else
- {
- API_CALL (SetWindowPos, (GDK_WINDOW_HWND (window), NULL, x, y, 0, 0,
- SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER));
- }
+ RECT outer_rect;
+
+ get_outer_rect (window, impl->width, impl->height, &outer_rect);
+
+ adjust_for_gravity_hints (impl, &outer_rect, &x, &y);
+
+ API_CALL (SetWindowPos, (GDK_WINDOW_HWND (window), NULL,
+ x, y, 0, 0,
+ SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER));
}
}
@@ -976,6 +1065,9 @@ gdk_window_resize (GdkWindow *window,
g_return_if_fail (window != NULL);
g_return_if_fail (GDK_IS_WINDOW (window));
+ if (GDK_WINDOW_DESTROYED (window))
+ return;
+
if (width < 1)
width = 1;
if (height < 1)
@@ -986,31 +1078,18 @@ gdk_window_resize (GdkWindow *window,
impl = GDK_WINDOW_IMPL_WIN32 (private->impl);
- if (!GDK_WINDOW_DESTROYED (window))
+ if (GDK_WINDOW_TYPE (private) == GDK_WINDOW_CHILD)
+ _gdk_window_move_resize_child (window, private->x, private->y, width, height);
+ else
{
- if (GDK_WINDOW_TYPE (private) == GDK_WINDOW_CHILD)
- _gdk_window_move_resize_child (window, private->x, private->y,
- width, height);
- else
- {
- RECT rect;
- LONG style;
- LONG exstyle;
-
- style = GetWindowLong (GDK_WINDOW_HWND (window), GWL_STYLE);
- exstyle = GetWindowLong (GDK_WINDOW_HWND (window), GWL_EXSTYLE);
-
- rect.left = rect.top = 0;
- rect.right = width;
- rect.bottom = height;
-
- API_CALL (AdjustWindowRectEx, (&rect, style, FALSE, exstyle));
-
- API_CALL (SetWindowPos, (GDK_WINDOW_HWND (window), NULL,
- 0, 0,
- rect.right - rect.left, rect.bottom - rect.top,
- SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER));
- }
+ RECT outer_rect;
+ get_outer_rect (window, width, height, &outer_rect);
+
+ API_CALL (SetWindowPos, (GDK_WINDOW_HWND (window), NULL,
+ 0, 0,
+ outer_rect.right - outer_rect.left,
+ outer_rect.bottom - outer_rect.top,
+ SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER));
private->resize_count += 1;
}
}
@@ -1028,6 +1107,9 @@ gdk_window_move_resize (GdkWindow *window,
g_return_if_fail (window != NULL);
g_return_if_fail (GDK_IS_WINDOW (window));
+ if (GDK_WINDOW_DESTROYED (window))
+ return;
+
if (width < 1)
width = 1;
if (height < 1)
@@ -1039,30 +1121,21 @@ gdk_window_move_resize (GdkWindow *window,
GDK_WINDOW_HWND (window),
width, height, x, y));
- if (!GDK_WINDOW_DESTROYED (window))
+ if (GDK_WINDOW_TYPE (private) == GDK_WINDOW_CHILD)
+ _gdk_window_move_resize_child (window, x, y, width, height);
+ else
{
- if (GDK_WINDOW_TYPE (private) == GDK_WINDOW_CHILD)
- _gdk_window_move_resize_child (window, x, y, width, height);
- else
- {
- RECT rect;
- LONG style;
- LONG exstyle;
+ RECT outer_rect;
- style = GetWindowLong (GDK_WINDOW_HWND (window), GWL_STYLE);
- exstyle = GetWindowLong (GDK_WINDOW_HWND (window), GWL_EXSTYLE);
+ get_outer_rect (window, width, height, &outer_rect);
- rect.left = rect.top = 0;
- rect.right = width;
- rect.bottom = height;
+ adjust_for_gravity_hints (impl, &outer_rect, &x, &y);
- API_CALL (AdjustWindowRectEx, (&rect, style, FALSE, exstyle));
-
- API_CALL (SetWindowPos, (GDK_WINDOW_HWND (window), NULL,
- x, y,
- rect.right - rect.left, rect.bottom - rect.top,
- SWP_NOACTIVATE | SWP_NOZORDER));
- }
+ API_CALL (SetWindowPos, (GDK_WINDOW_HWND (window), NULL,
+ x, y,
+ outer_rect.right - outer_rect.left,
+ outer_rect.bottom - outer_rect.top,
+ SWP_NOACTIVATE | SWP_NOZORDER));
}
}
@@ -1228,6 +1301,8 @@ gdk_window_set_hints (GdkWindow *window,
gint max_height,
gint flags)
{
+ /* Note that this function is obsolete */
+
GdkWindowImplWin32 *impl;
WINDOWPLACEMENT size_hints;
RECT rect;
@@ -1302,8 +1377,6 @@ gdk_window_set_hints (GdkWindow *window,
size_hints.rcNormalPosition.bottom));
API_CALL (SetWindowPlacement, (GDK_WINDOW_HWND (window),
&size_hints));
- impl->hint_x = rect.left;
- impl->hint_y = rect.top;
}
}
@@ -1325,8 +1398,6 @@ gdk_window_set_geometry_hints (GdkWindow *window,
GdkWindowImplWin32 *impl;
WINDOWPLACEMENT size_hints;
RECT rect;
- DWORD dwStyle;
- DWORD dwExStyle;
gint new_width = 0, new_height = 0;
g_return_if_fail (window != NULL);
@@ -1342,6 +1413,7 @@ gdk_window_set_geometry_hints (GdkWindow *window,
size_hints.length = sizeof (size_hints);
impl->hint_flags = geom_mask;
+ impl->hints = *geometry;
if (geom_mask & GDK_HINT_POS)
; /* even the X11 mplementation doesn't care */
@@ -1351,32 +1423,24 @@ gdk_window_set_geometry_hints (GdkWindow *window,
GDK_NOTE (MISC, g_print ("... MIN_SIZE: %dx%d\n",
geometry->min_width, geometry->min_height));
- /* Assume size means client area size */
- rect.left = 0;
- rect.top = 0;
- rect.right = geometry->min_width;
- rect.bottom = geometry->min_height;
- dwStyle = GetWindowLong (GDK_WINDOW_HWND (window), GWL_STYLE);
- dwExStyle = GetWindowLong (GDK_WINDOW_HWND (window), GWL_EXSTYLE);
- AdjustWindowRectEx (&rect, dwStyle, FALSE, dwExStyle);
- impl->hint_min_width = rect.right - rect.left;
- impl->hint_min_height = rect.bottom - rect.top;
-
- /* Also check if he current size of the window is in bounds */
+ /* Check if the current size of the window is in bounds */
GetClientRect (GDK_WINDOW_HWND (window), &rect);
- if (rect.right < geometry->min_width
- && rect.bottom < geometry->min_height)
+ if (rect.right < geometry->min_width &&
+ rect.bottom < geometry->min_height)
{
- new_width = geometry->min_width; new_height = geometry->min_height;
+ new_width = geometry->min_width;
+ new_height = geometry->min_height;
}
else if (rect.right < geometry->min_width)
{
- new_width = geometry->min_width; new_height = rect.bottom;
+ new_width = geometry->min_width;
+ new_height = rect.bottom;
}
else if (rect.bottom < geometry->min_height)
{
- new_width = rect.right; new_height = geometry->min_height;
+ new_width = rect.right;
+ new_height = geometry->min_height;
}
}
@@ -1385,38 +1449,28 @@ gdk_window_set_geometry_hints (GdkWindow *window,
GDK_NOTE (MISC, g_print ("... MAX_SIZE: %dx%d\n",
geometry->max_width, geometry->max_height));
- rect.left = 0;
- rect.top = 0;
- rect.right = geometry->max_width;
- rect.bottom = geometry->max_height;
- dwStyle = GetWindowLong (GDK_WINDOW_HWND (window), GWL_STYLE);
- dwExStyle = GetWindowLong (GDK_WINDOW_HWND (window), GWL_EXSTYLE);
- /* HB: dont' know why AdjustWindowRectEx is called here, ... */
- AdjustWindowRectEx (&rect, dwStyle, FALSE, dwExStyle);
- impl->hint_max_width = rect.right - rect.left;
- impl->hint_max_height = rect.bottom - rect.top;
- /* ... but negative sizes are always wrong */
- if (impl->hint_max_width < 0) impl->hint_max_width = G_MAXSHORT;
- if (impl->hint_max_height < 0) impl->hint_max_height = G_MAXSHORT;
-
- /* Again, check if the window is too large currently. */
+ /* Check if the current size of the window is in bounds */
GetClientRect (GDK_WINDOW_HWND (window), &rect);
- if (rect.right > geometry->max_width
- && rect.bottom > geometry->max_height)
+
+ if (rect.right > geometry->max_width &&
+ rect.bottom > geometry->max_height)
{
- new_width = geometry->max_width; new_height = geometry->max_height;
+ new_width = geometry->max_width;
+ new_height = geometry->max_height;
}
else if (rect.right > geometry->max_width)
{
- new_width = geometry->max_width; new_height = rect.bottom;
+ new_width = geometry->max_width;
+ new_height = rect.bottom;
}
else if (rect.bottom > geometry->max_height)
{
- new_width = rect.right; new_height = geometry->max_height;
+ new_width = rect.right;
+ new_height = geometry->max_height;
}
}
- /* finally apply new size constraints */
+ /* Apply new size constraints */
if (new_width != 0 && new_height != 0)
gdk_window_resize (window, new_width, new_height);
@@ -1451,12 +1505,19 @@ gdk_window_set_geometry_hints (GdkWindow *window,
if (geom_mask & GDK_HINT_RESIZE_INC)
{
- /* XXX */
+ GDK_NOTE (MISC, g_print ("... RESIZE_INC: (%d,%d)\n",
+ geometry->width_inc, geometry->height_inc));
}
if (geom_mask & GDK_HINT_ASPECT)
{
- /* XXX */
+ GDK_NOTE (MISC, g_print ("... ASPECT: %g--%g\n",
+ geometry->min_aspect, geometry->max_aspect));
+ }
+
+ if (geom_mask & GDK_HINT_WIN_GRAVITY)
+ {
+ GDK_NOTE (MISC, g_print ("... GRAVITY: %d\n", geometry->win_gravity));
}
}
diff --git a/gdk/win32/gdkwindow-win32.h b/gdk/win32/gdkwindow-win32.h
index aeb4bf606..2b9303c11 100644
--- a/gdk/win32/gdkwindow-win32.h
+++ b/gdk/win32/gdkwindow-win32.h
@@ -79,9 +79,7 @@ struct _GdkWindowImplWin32
/* Window size hints */
gint hint_flags;
- gint hint_x, hint_y;
- gint hint_min_width, hint_min_height;
- gint hint_max_width, hint_max_height;
+ GdkGeometry hints;
gboolean extension_events_selected;
};