2001-05-30 11:36:31 -04:00
|
|
|
/* Metacity X managed windows */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 Havoc Pennington
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "window.h"
|
|
|
|
#include "util.h"
|
2001-05-31 02:42:58 -04:00
|
|
|
#include "frame.h"
|
|
|
|
#include "errors.h"
|
2001-06-06 00:47:37 -04:00
|
|
|
#include "workspace.h"
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
2001-06-06 00:47:37 -04:00
|
|
|
static void constrain_size (MetaWindow *window,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int *new_width,
|
|
|
|
int *new_height);
|
|
|
|
static int update_size_hints (MetaWindow *window);
|
|
|
|
static int update_title (MetaWindow *window);
|
|
|
|
static int update_protocols (MetaWindow *window);
|
|
|
|
static int update_wm_hints (MetaWindow *window);
|
|
|
|
static int set_wm_state (MetaWindow *window,
|
|
|
|
int state);
|
|
|
|
static void send_configure_notify (MetaWindow *window);
|
|
|
|
static gboolean process_configure_request (MetaWindow *window,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int border_width);
|
|
|
|
static gboolean process_property_notify (MetaWindow *window,
|
|
|
|
XPropertyEvent *event);
|
|
|
|
static void meta_window_show (MetaWindow *window);
|
|
|
|
static void meta_window_hide (MetaWindow *window);
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
MetaWindow*
|
|
|
|
meta_window_new (MetaDisplay *display, Window xwindow)
|
|
|
|
{
|
|
|
|
MetaWindow *window;
|
|
|
|
XWindowAttributes attrs;
|
|
|
|
GSList *tmp;
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2001-05-31 02:42:58 -04:00
|
|
|
meta_verbose ("Attempting to manage 0x%lx\n", xwindow);
|
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
/* round trip */
|
2001-05-31 02:42:58 -04:00
|
|
|
meta_error_trap_push (display);
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
if (XGetWindowAttributes (display->xdisplay,
|
2001-05-31 02:42:58 -04:00
|
|
|
xwindow, &attrs) == Success &&
|
|
|
|
attrs.override_redirect)
|
|
|
|
{
|
2001-06-02 21:33:27 -04:00
|
|
|
meta_verbose ("Deciding not to manage override_redirect window 0x%lx\n", xwindow);
|
2001-05-31 02:42:58 -04:00
|
|
|
meta_error_trap_pop (display);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
XAddToSaveSet (display->xdisplay, xwindow);
|
|
|
|
|
|
|
|
XSelectInput (display->xdisplay, xwindow,
|
2001-06-04 00:58:22 -04:00
|
|
|
PropertyChangeMask |
|
|
|
|
EnterWindowMask | LeaveWindowMask |
|
|
|
|
FocusChangeMask);
|
|
|
|
|
|
|
|
/* Get rid of any borders */
|
|
|
|
if (attrs.border_width != 0)
|
|
|
|
XSetWindowBorderWidth (display->xdisplay, xwindow, 0);
|
2001-05-31 02:42:58 -04:00
|
|
|
|
|
|
|
if (meta_error_trap_pop (display) != Success)
|
2001-05-30 11:36:31 -04:00
|
|
|
{
|
|
|
|
meta_verbose ("Window 0x%lx disappeared just as we tried to manage it\n",
|
|
|
|
xwindow);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
window = g_new (MetaWindow, 1);
|
|
|
|
|
|
|
|
window->xwindow = xwindow;
|
2001-05-31 02:42:58 -04:00
|
|
|
|
|
|
|
/* this is in window->screen->display, but that's too annoying to
|
|
|
|
* type
|
|
|
|
*/
|
|
|
|
window->display = display;
|
2001-06-06 00:47:37 -04:00
|
|
|
window->workspaces = NULL;
|
2001-05-30 11:36:31 -04:00
|
|
|
|
|
|
|
window->screen = NULL;
|
|
|
|
tmp = display->screens;
|
|
|
|
while (tmp != NULL)
|
|
|
|
{
|
|
|
|
if (((MetaScreen *)tmp->data)->xscreen == attrs.screen)
|
|
|
|
{
|
|
|
|
window->screen = tmp->data;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = tmp->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert (window->screen);
|
2001-06-04 00:58:22 -04:00
|
|
|
|
|
|
|
/* Remember this rect is the actual window size */
|
2001-05-31 02:42:58 -04:00
|
|
|
window->rect.x = attrs.x;
|
|
|
|
window->rect.y = attrs.y;
|
|
|
|
window->rect.width = attrs.width;
|
|
|
|
window->rect.height = attrs.height;
|
2001-06-02 21:33:27 -04:00
|
|
|
|
2001-06-04 00:58:22 -04:00
|
|
|
/* And border width, size_hints are the "request" */
|
|
|
|
window->border_width = attrs.border_width;
|
2001-06-02 21:33:27 -04:00
|
|
|
window->size_hints.x = attrs.x;
|
|
|
|
window->size_hints.y = attrs.y;
|
|
|
|
window->size_hints.width = attrs.width;
|
|
|
|
window->size_hints.height = attrs.height;
|
|
|
|
|
2001-05-31 02:42:58 -04:00
|
|
|
window->depth = attrs.depth;
|
|
|
|
window->xvisual = attrs.visual;
|
2001-05-31 23:00:01 -04:00
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
window->title = NULL;
|
|
|
|
|
|
|
|
window->desc = g_strdup_printf ("0x%lx", window->xwindow);
|
2001-06-02 21:33:27 -04:00
|
|
|
|
|
|
|
window->frame = NULL;
|
2001-06-04 00:58:22 -04:00
|
|
|
window->has_focus = FALSE;
|
2001-06-04 02:17:52 -04:00
|
|
|
|
|
|
|
window->initially_iconic = FALSE;
|
|
|
|
window->minimized = FALSE;
|
|
|
|
window->iconic = FALSE;
|
|
|
|
window->mapped = FALSE;
|
2001-05-31 02:42:58 -04:00
|
|
|
|
|
|
|
meta_display_register_x_window (display, &window->xwindow, window);
|
2001-05-30 11:36:31 -04:00
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
update_size_hints (window);
|
|
|
|
update_title (window);
|
2001-06-02 21:33:27 -04:00
|
|
|
update_protocols (window);
|
2001-06-04 00:58:22 -04:00
|
|
|
update_wm_hints (window);
|
2001-06-04 02:17:52 -04:00
|
|
|
|
|
|
|
if (window->initially_iconic)
|
|
|
|
{
|
2001-06-06 00:47:37 -04:00
|
|
|
/* WM_HINTS said minimized */
|
|
|
|
window->minimized = TRUE;
|
|
|
|
meta_verbose ("Window %s asked to start out minimized\n", window->desc);
|
2001-06-04 02:17:52 -04:00
|
|
|
}
|
2001-06-04 00:58:22 -04:00
|
|
|
|
2001-06-06 00:47:37 -04:00
|
|
|
meta_window_resize (window,
|
|
|
|
window->size_hints.width,
|
|
|
|
window->size_hints.height);
|
|
|
|
|
|
|
|
/* FIXME we have a tendency to set this then immediately
|
|
|
|
* change it again.
|
|
|
|
*/
|
|
|
|
set_wm_state (window, window->iconic ? IconicState : NormalState);
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2001-05-31 02:42:58 -04:00
|
|
|
meta_window_ensure_frame (window);
|
2001-06-04 02:17:52 -04:00
|
|
|
|
2001-06-06 00:47:37 -04:00
|
|
|
meta_workspace_add_window (window->screen->active_workspace, window);
|
|
|
|
|
|
|
|
/* Put our state back where it should be */
|
|
|
|
meta_window_queue_calc_showing (window);
|
2001-05-31 02:42:58 -04:00
|
|
|
|
2001-05-30 11:36:31 -04:00
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_free (MetaWindow *window)
|
|
|
|
{
|
2001-06-06 00:47:37 -04:00
|
|
|
GList *tmp;
|
|
|
|
|
2001-05-31 02:42:58 -04:00
|
|
|
meta_verbose ("Unmanaging 0x%lx\n", window->xwindow);
|
2001-06-06 00:47:37 -04:00
|
|
|
|
|
|
|
tmp = window->workspaces;
|
|
|
|
while (tmp != NULL)
|
|
|
|
{
|
|
|
|
GList *next;
|
|
|
|
|
|
|
|
next = tmp->next;
|
|
|
|
|
|
|
|
/* pops front of list */
|
|
|
|
meta_workspace_remove_window (tmp->data, window);
|
|
|
|
|
|
|
|
tmp = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert (window->workspaces == NULL);
|
|
|
|
|
|
|
|
set_wm_state (window, WithdrawnState);
|
2001-05-31 02:42:58 -04:00
|
|
|
|
|
|
|
meta_display_unregister_x_window (window->display, window->xwindow);
|
2001-05-31 23:00:01 -04:00
|
|
|
|
2001-05-31 02:42:58 -04:00
|
|
|
meta_window_destroy_frame (window);
|
2001-06-04 02:17:52 -04:00
|
|
|
|
|
|
|
/* Put back anything we messed up */
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
if (window->border_width != 0)
|
|
|
|
XSetWindowBorderWidth (window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
window->border_width);
|
|
|
|
|
|
|
|
meta_error_trap_pop (window->display);
|
2001-05-31 02:42:58 -04:00
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
g_free (window->title);
|
|
|
|
g_free (window->desc);
|
2001-05-30 11:36:31 -04:00
|
|
|
g_free (window);
|
|
|
|
}
|
|
|
|
|
2001-06-06 00:47:37 -04:00
|
|
|
static int
|
|
|
|
set_wm_state (MetaWindow *window,
|
|
|
|
int state)
|
|
|
|
{
|
|
|
|
unsigned long data[1];
|
|
|
|
|
|
|
|
/* twm sets the icon window as data[1], I couldn't find that in
|
|
|
|
* ICCCM.
|
|
|
|
*/
|
|
|
|
data[0] = state;
|
|
|
|
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
XChangeProperty (window->display->xdisplay, window->xwindow,
|
|
|
|
window->display->atom_wm_state,
|
|
|
|
window->display->atom_wm_state,
|
|
|
|
32, PropModeReplace, (guchar*) data, 1);
|
|
|
|
return meta_error_trap_pop (window->display);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_calc_showing (MetaWindow *window)
|
|
|
|
{
|
|
|
|
gboolean on_workspace;
|
|
|
|
|
|
|
|
on_workspace = g_list_find (window->workspaces,
|
|
|
|
window->screen->active_workspace) != NULL;
|
|
|
|
|
|
|
|
if (!on_workspace)
|
|
|
|
meta_verbose ("Window %s is not on workspace %d\n",
|
|
|
|
window->desc,
|
|
|
|
meta_workspace_index (window->screen->active_workspace));
|
|
|
|
else
|
|
|
|
meta_verbose ("Window %s is on the active workspace %d\n",
|
|
|
|
window->desc,
|
|
|
|
meta_workspace_index (window->screen->active_workspace));
|
|
|
|
|
|
|
|
if (window->minimized || !on_workspace)
|
|
|
|
{
|
|
|
|
meta_window_hide (window);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
meta_window_show (window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_queue_calc_showing (MetaWindow *window)
|
|
|
|
{
|
|
|
|
/* FIXME */
|
|
|
|
meta_window_calc_showing (window);
|
|
|
|
}
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
void
|
|
|
|
meta_window_show (MetaWindow *window)
|
|
|
|
{
|
2001-06-06 00:47:37 -04:00
|
|
|
meta_verbose ("Showing window %s\n", window->desc);
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
if (window->frame)
|
|
|
|
XMapWindow (window->display->xdisplay, window->frame->xwindow);
|
|
|
|
XMapWindow (window->display->xdisplay, window->xwindow);
|
|
|
|
|
2001-06-04 02:17:52 -04:00
|
|
|
/* These flags aren't always in sync, iconic
|
|
|
|
* is set only here in show/hide, mapped
|
|
|
|
* can be set in a couple other places where
|
2001-06-06 00:47:37 -04:00
|
|
|
* we map/unmap. So that's why both flags exist.
|
2001-06-04 02:17:52 -04:00
|
|
|
*/
|
|
|
|
window->mapped = TRUE;
|
|
|
|
|
2001-06-06 00:47:37 -04:00
|
|
|
if (window->iconic)
|
|
|
|
{
|
|
|
|
window->iconic = FALSE;
|
|
|
|
set_wm_state (window, NormalState);
|
|
|
|
}
|
2001-06-02 00:14:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_hide (MetaWindow *window)
|
|
|
|
{
|
2001-06-06 00:47:37 -04:00
|
|
|
meta_verbose ("Hiding window %s\n", window->desc);
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
if (window->frame)
|
|
|
|
XUnmapWindow (window->display->xdisplay, window->frame->xwindow);
|
|
|
|
XUnmapWindow (window->display->xdisplay, window->xwindow);
|
|
|
|
|
2001-06-04 02:17:52 -04:00
|
|
|
window->mapped = FALSE;
|
|
|
|
|
2001-06-06 00:47:37 -04:00
|
|
|
if (!window->iconic)
|
|
|
|
{
|
|
|
|
window->iconic = TRUE;
|
|
|
|
set_wm_state (window, IconicState);
|
|
|
|
}
|
2001-06-04 02:17:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_minimize (MetaWindow *window)
|
|
|
|
{
|
|
|
|
if (!window->minimized)
|
|
|
|
{
|
|
|
|
window->minimized = TRUE;
|
|
|
|
meta_window_hide (window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_unminimize (MetaWindow *window)
|
|
|
|
{
|
|
|
|
if (window->minimized)
|
|
|
|
{
|
|
|
|
window->minimized = FALSE;
|
|
|
|
meta_window_show (window);
|
|
|
|
}
|
2001-06-02 00:14:18 -04:00
|
|
|
}
|
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
void
|
|
|
|
meta_window_resize (MetaWindow *window,
|
|
|
|
int w,
|
|
|
|
int h)
|
|
|
|
{
|
|
|
|
meta_verbose ("Resizing %s to %d x %d\n", window->desc, w, h);
|
|
|
|
constrain_size (window, w, h, &w, &h);
|
|
|
|
meta_verbose ("Constrained resize of %s to %d x %d\n", window->desc, w, h);
|
|
|
|
|
|
|
|
if (w != window->rect.width ||
|
|
|
|
h != window->rect.height)
|
|
|
|
{
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
XResizeWindow (window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
w, h);
|
|
|
|
meta_error_trap_pop (window->display);
|
|
|
|
window->rect.width = w;
|
|
|
|
window->rect.height = h;
|
|
|
|
|
|
|
|
if (window->frame)
|
|
|
|
meta_frame_queue_recalc (window->frame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-06 00:47:37 -04:00
|
|
|
void
|
|
|
|
meta_window_move (MetaWindow *window,
|
|
|
|
int root_x_nw,
|
|
|
|
int root_y_nw)
|
|
|
|
{
|
|
|
|
if (window->frame)
|
|
|
|
{
|
|
|
|
int new_x, new_y;
|
|
|
|
|
|
|
|
new_x = root_x_nw - window->frame->child_x;
|
|
|
|
new_y = root_y_nw - window->frame->child_y;
|
|
|
|
|
|
|
|
if (new_x != window->frame->rect.x ||
|
|
|
|
new_y != window->frame->rect.y)
|
|
|
|
{
|
|
|
|
window->frame->rect.x = new_x;
|
|
|
|
window->frame->rect.y = new_y;
|
|
|
|
|
|
|
|
XMoveWindow (window->display->xdisplay,
|
|
|
|
window->frame->xwindow,
|
|
|
|
window->frame->rect.x,
|
|
|
|
window->frame->rect.y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (root_x_nw != window->rect.x ||
|
|
|
|
root_y_nw != window->rect.y)
|
|
|
|
{
|
|
|
|
window->rect.x = root_x_nw;
|
|
|
|
window->rect.y = root_y_nw;
|
|
|
|
|
|
|
|
XMoveWindow (window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
window->rect.x,
|
|
|
|
window->rect.y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
send_configure_notify (window);
|
|
|
|
}
|
|
|
|
|
2001-06-04 00:58:22 -04:00
|
|
|
void
|
|
|
|
meta_window_delete (MetaWindow *window,
|
|
|
|
Time timestamp)
|
|
|
|
{
|
|
|
|
meta_error_trap_push (window->display);
|
2001-06-04 02:17:52 -04:00
|
|
|
if (window->delete_window)
|
|
|
|
{
|
|
|
|
meta_verbose ("Deleting %s with delete_window request\n",
|
|
|
|
window->desc);
|
|
|
|
meta_window_send_icccm_message (window,
|
|
|
|
window->display->atom_wm_delete_window,
|
|
|
|
timestamp);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
meta_verbose ("Deleting %s with explicit kill\n",
|
|
|
|
window->desc);
|
|
|
|
XKillClient (window->display->xdisplay, window->xwindow);
|
|
|
|
}
|
2001-06-04 00:58:22 -04:00
|
|
|
meta_error_trap_pop (window->display);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_window_focus (MetaWindow *window,
|
|
|
|
Time timestamp)
|
|
|
|
{
|
|
|
|
meta_verbose ("Setting input focus to window %s, input: %d take_focus: %d\n",
|
|
|
|
window->desc, window->input, window->take_focus);
|
|
|
|
|
|
|
|
if (window->input)
|
|
|
|
{
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
if (window->take_focus)
|
|
|
|
{
|
|
|
|
meta_window_send_icccm_message (window,
|
|
|
|
window->display->atom_wm_take_focus,
|
|
|
|
timestamp);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XSetInputFocus (window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
RevertToParent,
|
|
|
|
timestamp);
|
|
|
|
}
|
|
|
|
meta_error_trap_pop (window->display);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-06 00:47:37 -04:00
|
|
|
void
|
|
|
|
meta_window_raise (MetaWindow *window)
|
|
|
|
{
|
|
|
|
meta_verbose ("Raising window %s\n", window->desc);
|
|
|
|
|
|
|
|
if (window->frame == NULL)
|
|
|
|
{
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
|
|
|
|
XRaiseWindow (window->display->xdisplay, window->xwindow);
|
|
|
|
|
|
|
|
meta_error_trap_pop (window->display);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XRaiseWindow (window->display->xdisplay,
|
|
|
|
window->frame->xwindow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-04 00:58:22 -04:00
|
|
|
void
|
|
|
|
meta_window_send_icccm_message (MetaWindow *window,
|
|
|
|
Atom atom,
|
|
|
|
Time timestamp)
|
|
|
|
{
|
|
|
|
/* This comment and code are from twm, copyright
|
|
|
|
* Open Group, Evans & Sutherland, etc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ICCCM Client Messages - Section 4.2.8 of the ICCCM dictates that all
|
|
|
|
* client messages will have the following form:
|
|
|
|
*
|
|
|
|
* event type ClientMessage
|
|
|
|
* message type _XA_WM_PROTOCOLS
|
|
|
|
* window tmp->w
|
|
|
|
* format 32
|
|
|
|
* data[0] message atom
|
|
|
|
* data[1] time stamp
|
|
|
|
*/
|
|
|
|
|
|
|
|
XClientMessageEvent ev;
|
|
|
|
|
|
|
|
/* This should always be error trapped. */
|
|
|
|
g_return_if_fail (window->display->error_traps != NULL);
|
|
|
|
|
|
|
|
ev.type = ClientMessage;
|
|
|
|
ev.window = window->xwindow;
|
|
|
|
ev.message_type = window->display->atom_wm_protocols;
|
|
|
|
ev.format = 32;
|
|
|
|
ev.data.l[0] = atom;
|
|
|
|
ev.data.l[1] = timestamp;
|
|
|
|
|
|
|
|
XSendEvent (window->display->xdisplay,
|
|
|
|
window->xwindow, False, 0, (XEvent*) &ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
gboolean
|
|
|
|
meta_window_configure_request (MetaWindow *window,
|
|
|
|
XEvent *event)
|
|
|
|
{
|
|
|
|
return process_configure_request (window,
|
|
|
|
event->xconfigurerequest.x,
|
|
|
|
event->xconfigurerequest.y,
|
|
|
|
event->xconfigurerequest.width,
|
|
|
|
event->xconfigurerequest.height,
|
|
|
|
event->xconfigurerequest.border_width);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
meta_window_property_notify (MetaWindow *window,
|
|
|
|
XEvent *event)
|
|
|
|
{
|
|
|
|
return process_property_notify (window, &event->xproperty);
|
|
|
|
}
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
static gboolean
|
|
|
|
process_property_notify (MetaWindow *window,
|
|
|
|
XPropertyEvent *event)
|
|
|
|
{
|
|
|
|
if (event->atom == XA_WM_NAME ||
|
|
|
|
event->atom == window->display->atom_net_wm_name)
|
|
|
|
{
|
|
|
|
update_title (window);
|
2001-06-02 21:33:27 -04:00
|
|
|
|
|
|
|
if (window->frame)
|
|
|
|
meta_frame_queue_recalc (window->frame);
|
2001-06-02 00:14:18 -04:00
|
|
|
}
|
|
|
|
else if (event->atom == XA_WM_NORMAL_HINTS)
|
|
|
|
{
|
|
|
|
update_size_hints (window);
|
2001-06-02 21:33:27 -04:00
|
|
|
|
|
|
|
/* See if we need to constrain current size */
|
|
|
|
meta_window_resize (window, window->rect.width, window->rect.height);
|
2001-06-02 00:14:18 -04:00
|
|
|
}
|
2001-06-02 21:33:27 -04:00
|
|
|
else if (event->atom == window->display->atom_wm_protocols)
|
2001-06-02 00:14:18 -04:00
|
|
|
{
|
|
|
|
update_protocols (window);
|
2001-06-02 21:33:27 -04:00
|
|
|
|
2001-06-04 02:17:52 -04:00
|
|
|
if (window->frame)
|
|
|
|
meta_frame_queue_recalc (window->frame);
|
|
|
|
}
|
|
|
|
else if (event->atom == XA_WM_HINTS)
|
|
|
|
{
|
|
|
|
update_wm_hints (window);
|
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
if (window->frame)
|
|
|
|
meta_frame_queue_recalc (window->frame);
|
2001-06-02 00:14:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
static void
|
|
|
|
send_configure_notify (MetaWindow *window)
|
|
|
|
{
|
|
|
|
XEvent event;
|
|
|
|
|
|
|
|
/* from twm */
|
|
|
|
|
|
|
|
event.type = ConfigureNotify;
|
|
|
|
event.xconfigure.display = window->display->xdisplay;
|
|
|
|
event.xconfigure.event = window->xwindow;
|
|
|
|
event.xconfigure.window = window->xwindow;
|
|
|
|
event.xconfigure.x = window->rect.x - window->border_width;
|
|
|
|
event.xconfigure.y = window->rect.y - window->border_width;
|
|
|
|
if (window->frame)
|
|
|
|
{
|
|
|
|
/* Need to be in root window coordinates */
|
|
|
|
event.xconfigure.x += window->frame->rect.x;
|
|
|
|
event.xconfigure.y += window->frame->rect.y;
|
|
|
|
}
|
|
|
|
event.xconfigure.width = window->rect.width;
|
|
|
|
event.xconfigure.height = window->rect.height;
|
|
|
|
event.xconfigure.border_width = window->border_width; /* requested not actual */
|
|
|
|
event.xconfigure.above = None; /* FIXME */
|
|
|
|
event.xconfigure.override_redirect = False;
|
|
|
|
|
|
|
|
meta_verbose ("Sending synthetic configure notify to %s with x: %d y: %d w: %d h: %d\n",
|
|
|
|
window->desc,
|
|
|
|
event.xconfigure.x, event.xconfigure.y,
|
|
|
|
event.xconfigure.width, event.xconfigure.height);
|
|
|
|
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
XSendEvent(window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
False, StructureNotifyMask, &event);
|
|
|
|
meta_error_trap_pop (window->display);
|
|
|
|
}
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
static gboolean
|
2001-06-02 21:33:27 -04:00
|
|
|
process_configure_request (MetaWindow *window,
|
|
|
|
int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int border_width)
|
2001-06-02 00:14:18 -04:00
|
|
|
{
|
|
|
|
/* ICCCM 4.1.5 */
|
2001-06-02 21:33:27 -04:00
|
|
|
XWindowChanges values;
|
|
|
|
unsigned int mask;
|
|
|
|
int client_x, client_y;
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
/* Note that x, y is the corner of the window border,
|
|
|
|
* and width, height is the size of the window inside
|
|
|
|
* its border, but that we always deny border requests
|
2001-06-04 00:58:22 -04:00
|
|
|
* and give windows a border of 0
|
2001-06-02 00:14:18 -04:00
|
|
|
*/
|
2001-06-02 21:33:27 -04:00
|
|
|
window->border_width = border_width;
|
|
|
|
|
|
|
|
/* We're ignoring the value_mask here, since sizes
|
|
|
|
* not in the mask will be the current window geometry.
|
|
|
|
*/
|
|
|
|
|
|
|
|
window->size_hints.x = x;
|
|
|
|
window->size_hints.y = y;
|
|
|
|
window->size_hints.width = width;
|
|
|
|
window->size_hints.height = height;
|
|
|
|
|
|
|
|
constrain_size (window,
|
|
|
|
window->size_hints.width,
|
|
|
|
window->size_hints.height,
|
|
|
|
&window->size_hints.width,
|
|
|
|
&window->size_hints.height);
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
meta_verbose ("Constrained configure request size to %d x %d\n",
|
|
|
|
window->size_hints.width, window->size_hints.height);
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
if (window->frame)
|
|
|
|
{
|
|
|
|
meta_frame_child_configure_request (window->frame);
|
|
|
|
client_x = window->frame->child_x;
|
|
|
|
client_y = window->frame->child_y;
|
|
|
|
meta_verbose ("Will place client window %s inside frame at %d,%d\n",
|
|
|
|
window->desc, client_x, client_y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
client_x = window->size_hints.x;
|
|
|
|
client_y = window->size_hints.y;
|
|
|
|
meta_verbose ("Will place client window %s at root coordinate %d,%d\n",
|
|
|
|
window->desc, client_x, client_y);
|
|
|
|
}
|
|
|
|
|
|
|
|
values.border_width = 0;
|
|
|
|
values.x = client_x;
|
|
|
|
values.y = client_y;
|
|
|
|
values.width = window->size_hints.width;
|
|
|
|
values.height = window->size_hints.height;
|
|
|
|
|
|
|
|
mask = 0;
|
|
|
|
if (window->border_width != 0)
|
|
|
|
mask |= CWBorderWidth;
|
|
|
|
if (values.x != window->rect.x)
|
|
|
|
mask |= CWX;
|
|
|
|
if (values.y != window->rect.y)
|
|
|
|
mask |= CWY;
|
|
|
|
if (values.width != window->rect.width)
|
|
|
|
mask |= CWWidth;
|
|
|
|
if (values.height != window->rect.height)
|
|
|
|
mask |= CWHeight;
|
|
|
|
|
|
|
|
window->rect.x = values.x;
|
|
|
|
window->rect.y = values.y;
|
|
|
|
window->rect.width = values.width;
|
|
|
|
window->rect.height = values.height;
|
|
|
|
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
XConfigureWindow (window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
mask,
|
|
|
|
&values);
|
|
|
|
meta_error_trap_pop (window->display);
|
|
|
|
|
|
|
|
if (mask & (CWBorderWidth | CWWidth | CWHeight))
|
|
|
|
{
|
|
|
|
/* Resizing, no synthetic ConfigureNotify, third case in 4.1.5 */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Moving but not resizing, second case in 4.1.5, or
|
|
|
|
* have to send the ConfigureNotify, first case in 4.1.5
|
|
|
|
*/
|
|
|
|
send_configure_notify (window);
|
|
|
|
}
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
update_size_hints (MetaWindow *window)
|
|
|
|
{
|
|
|
|
int x, y, w, h;
|
|
|
|
|
|
|
|
/* Save the last ConfigureRequest, which we put here.
|
|
|
|
* Values here set in the hints are supposed to
|
|
|
|
* be ignored.
|
|
|
|
*/
|
|
|
|
x = window->size_hints.x;
|
|
|
|
y = window->size_hints.y;
|
|
|
|
w = window->size_hints.width;
|
|
|
|
h = window->size_hints.height;
|
|
|
|
|
|
|
|
window->size_hints.flags = 0;
|
|
|
|
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
XGetNormalHints (window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
&window->size_hints);
|
|
|
|
|
|
|
|
/* Put it back. */
|
|
|
|
window->size_hints.x = x;
|
|
|
|
window->size_hints.y = y;
|
|
|
|
window->size_hints.width = w;
|
|
|
|
window->size_hints.height = h;
|
|
|
|
|
|
|
|
if (window->size_hints.flags & PBaseSize)
|
2001-06-02 21:33:27 -04:00
|
|
|
{
|
|
|
|
meta_verbose ("Window %s sets base size %d x %d\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.base_width,
|
|
|
|
window->size_hints.base_height);
|
|
|
|
}
|
2001-06-02 00:14:18 -04:00
|
|
|
else if (window->size_hints.flags & PMinSize)
|
|
|
|
{
|
|
|
|
window->size_hints.base_width = window->size_hints.min_width;
|
|
|
|
window->size_hints.base_height = window->size_hints.min_height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.base_width = 0;
|
|
|
|
window->size_hints.base_height = 0;
|
|
|
|
}
|
|
|
|
window->size_hints.flags |= PBaseSize;
|
|
|
|
|
|
|
|
if (window->size_hints.flags & PMinSize)
|
2001-06-02 21:33:27 -04:00
|
|
|
{
|
|
|
|
meta_verbose ("Window %s sets min size %d x %d\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.min_width,
|
|
|
|
window->size_hints.min_height);
|
|
|
|
}
|
2001-06-02 00:14:18 -04:00
|
|
|
else if (window->size_hints.flags & PBaseSize)
|
|
|
|
{
|
|
|
|
window->size_hints.min_width = window->size_hints.base_width;
|
|
|
|
window->size_hints.min_height = window->size_hints.base_height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.min_width = 0;
|
|
|
|
window->size_hints.min_height = 0;
|
|
|
|
}
|
|
|
|
window->size_hints.flags |= PMinSize;
|
|
|
|
|
|
|
|
if (window->size_hints.flags & PMaxSize)
|
2001-06-02 21:33:27 -04:00
|
|
|
{
|
|
|
|
meta_verbose ("Window %s sets max size %d x %d\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.max_width,
|
|
|
|
window->size_hints.max_height);
|
|
|
|
}
|
2001-06-02 00:14:18 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.max_width = G_MAXINT;
|
|
|
|
window->size_hints.max_height = G_MAXINT;
|
|
|
|
window->size_hints.flags |= PMaxSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->size_hints.flags & PResizeInc)
|
2001-06-02 21:33:27 -04:00
|
|
|
{
|
|
|
|
meta_verbose ("Window %s sets resize width inc: %d height inc: %d\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.width_inc,
|
|
|
|
window->size_hints.height_inc);
|
|
|
|
if (window->size_hints.width_inc == 0)
|
|
|
|
{
|
|
|
|
window->size_hints.width_inc = 1;
|
|
|
|
meta_verbose ("Corrected 0 width_inc to 1\n");
|
|
|
|
}
|
|
|
|
if (window->size_hints.height_inc == 0)
|
|
|
|
{
|
|
|
|
window->size_hints.height_inc = 1;
|
|
|
|
meta_verbose ("Corrected 0 height_inc to 1\n");
|
|
|
|
}
|
|
|
|
}
|
2001-06-02 00:14:18 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.width_inc = 1;
|
|
|
|
window->size_hints.height_inc = 1;
|
|
|
|
window->size_hints.flags |= PResizeInc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->size_hints.flags & PAspect)
|
|
|
|
{
|
2001-06-02 21:33:27 -04:00
|
|
|
meta_verbose ("Window %s sets min_aspect: %d/%d max_aspect: %d/%d\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.min_aspect.x,
|
|
|
|
window->size_hints.min_aspect.y,
|
|
|
|
window->size_hints.max_aspect.x,
|
|
|
|
window->size_hints.max_aspect.y);
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
/* don't divide by 0 */
|
|
|
|
if (window->size_hints.min_aspect.y < 1)
|
|
|
|
window->size_hints.min_aspect.y = 1;
|
|
|
|
if (window->size_hints.max_aspect.y < 1)
|
|
|
|
window->size_hints.max_aspect.y = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.min_aspect.x = 1;
|
|
|
|
window->size_hints.min_aspect.y = G_MAXINT;
|
|
|
|
window->size_hints.max_aspect.x = G_MAXINT;
|
|
|
|
window->size_hints.max_aspect.y = 1;
|
|
|
|
window->size_hints.flags |= PAspect;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->size_hints.flags & PWinGravity)
|
2001-06-02 21:33:27 -04:00
|
|
|
{
|
|
|
|
meta_verbose ("Window %s sets gravity %d\n",
|
|
|
|
window->desc,
|
|
|
|
window->size_hints.win_gravity);
|
|
|
|
}
|
2001-06-02 00:14:18 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
window->size_hints.win_gravity = NorthWestGravity;
|
|
|
|
window->size_hints.flags |= PWinGravity;
|
|
|
|
}
|
|
|
|
|
|
|
|
return meta_error_trap_pop (window->display);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
update_title (MetaWindow *window)
|
|
|
|
{
|
|
|
|
XTextProperty text;
|
|
|
|
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
|
|
|
|
if (window->title)
|
|
|
|
{
|
|
|
|
g_free (window->title);
|
|
|
|
window->title = NULL;
|
2001-06-03 14:33:59 -04:00
|
|
|
}
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
XGetTextProperty (window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
&text,
|
|
|
|
window->display->atom_net_wm_name);
|
|
|
|
|
|
|
|
if (text.nitems > 0 &&
|
|
|
|
text.format == 8 &&
|
|
|
|
g_utf8_validate (text.value, text.nitems, NULL))
|
|
|
|
{
|
|
|
|
meta_verbose ("Using _NET_WM_NAME for new title of %s: '%s'\n",
|
|
|
|
window->desc, text.value);
|
|
|
|
|
|
|
|
window->title = g_strdup (text.value);
|
|
|
|
}
|
|
|
|
|
2001-06-03 14:33:59 -04:00
|
|
|
if (text.nitems > 0)
|
|
|
|
XFree (text.value);
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
if (window->title == NULL &&
|
|
|
|
text.nitems > 0)
|
|
|
|
meta_warning ("_NET_WM_NAME property for %s contained invalid UTF-8\n",
|
|
|
|
window->desc);
|
|
|
|
|
|
|
|
if (window->title == NULL)
|
|
|
|
{
|
|
|
|
XGetTextProperty (window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
&text,
|
|
|
|
XA_WM_NAME);
|
|
|
|
|
|
|
|
if (text.nitems > 0)
|
|
|
|
{
|
|
|
|
/* FIXME This isn't particularly correct. Need to copy the
|
|
|
|
* GDK code...
|
|
|
|
*/
|
|
|
|
char *str;
|
|
|
|
GError *err;
|
|
|
|
|
|
|
|
err = NULL;
|
|
|
|
str = g_locale_to_utf8 (text.value,
|
|
|
|
(text.format / 8) * text.nitems,
|
|
|
|
NULL, NULL,
|
|
|
|
&err);
|
|
|
|
if (err != NULL)
|
|
|
|
{
|
|
|
|
meta_warning ("WM_NAME property for %s contained stuff we are too dumb to figure out: %s\n", window->desc, err->message);
|
|
|
|
g_error_free (err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->title)
|
|
|
|
meta_verbose ("Using WM_NAME for new title of %s: '%s'\n",
|
|
|
|
window->desc, text.value);
|
|
|
|
|
|
|
|
window->title = str;
|
2001-06-03 14:33:59 -04:00
|
|
|
|
|
|
|
XFree (text.value);
|
2001-06-02 00:14:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->title == NULL)
|
|
|
|
window->title = g_strdup ("");
|
2001-06-03 14:33:59 -04:00
|
|
|
|
|
|
|
g_free (window->desc);
|
2001-06-02 00:14:18 -04:00
|
|
|
window->desc = g_strdup_printf ("0x%lx (%.10s)", window->xwindow, window->title);
|
2001-06-02 21:33:27 -04:00
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
return meta_error_trap_pop (window->display);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
update_protocols (MetaWindow *window)
|
|
|
|
{
|
2001-06-02 21:33:27 -04:00
|
|
|
Atom *protocols = NULL;
|
|
|
|
int n_protocols = 0;
|
2001-06-02 00:14:18 -04:00
|
|
|
int i;
|
|
|
|
|
|
|
|
window->take_focus = FALSE;
|
|
|
|
window->delete_window = FALSE;
|
2001-06-02 21:33:27 -04:00
|
|
|
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
|
|
|
|
if (XGetWMProtocols (window->display->xdisplay,
|
|
|
|
window->xwindow,
|
|
|
|
&protocols,
|
2001-06-04 02:17:52 -04:00
|
|
|
&n_protocols))
|
2001-06-02 00:14:18 -04:00
|
|
|
{
|
2001-06-02 21:33:27 -04:00
|
|
|
i = 0;
|
|
|
|
while (i < n_protocols)
|
|
|
|
{
|
|
|
|
if (protocols[i] == window->display->atom_wm_take_focus)
|
|
|
|
window->take_focus = TRUE;
|
|
|
|
else if (protocols[i] == window->display->atom_wm_delete_window)
|
|
|
|
window->delete_window = TRUE;
|
|
|
|
++i;
|
|
|
|
}
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
if (protocols)
|
|
|
|
XFree (protocols);
|
|
|
|
}
|
2001-06-02 00:14:18 -04:00
|
|
|
|
2001-06-02 21:33:27 -04:00
|
|
|
meta_verbose ("Window %s has take_focus = %d delete_window = %d\n",
|
|
|
|
window->desc, window->take_focus, window->delete_window);
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
return meta_error_trap_pop (window->display);
|
|
|
|
}
|
|
|
|
|
2001-06-04 00:58:22 -04:00
|
|
|
static int
|
|
|
|
update_wm_hints (MetaWindow *window)
|
|
|
|
{
|
|
|
|
XWMHints *hints;
|
|
|
|
|
|
|
|
/* Fill in defaults */
|
|
|
|
window->input = FALSE;
|
2001-06-04 02:17:52 -04:00
|
|
|
window->initially_iconic = FALSE;
|
2001-06-04 00:58:22 -04:00
|
|
|
|
|
|
|
meta_error_trap_push (window->display);
|
|
|
|
|
|
|
|
hints = XGetWMHints (window->display->xdisplay,
|
|
|
|
window->xwindow);
|
|
|
|
if (hints)
|
|
|
|
{
|
|
|
|
window->input = (hints->flags & InputHint) != 0;
|
2001-06-04 02:17:52 -04:00
|
|
|
|
|
|
|
window->initially_iconic = (hints->initial_state == IconicState);
|
2001-06-04 00:58:22 -04:00
|
|
|
|
|
|
|
/* FIXME there are a few others there. */
|
|
|
|
|
2001-06-04 02:17:52 -04:00
|
|
|
meta_verbose ("Read WM_HINTS input: %d iconic: %d\n",
|
|
|
|
window->input, window->initially_iconic);
|
|
|
|
|
2001-06-04 00:58:22 -04:00
|
|
|
XFree (hints);
|
|
|
|
}
|
|
|
|
|
|
|
|
return meta_error_trap_pop (window->display);
|
|
|
|
}
|
|
|
|
|
2001-06-02 00:14:18 -04:00
|
|
|
static void
|
|
|
|
constrain_size (MetaWindow *window,
|
|
|
|
int width, int height,
|
|
|
|
int *new_width, int *new_height)
|
|
|
|
{
|
|
|
|
/* This is partially borrowed from GTK (LGPL), which in turn
|
|
|
|
* partially borrowed from fvwm,
|
|
|
|
*
|
|
|
|
* Copyright 1993, Robert Nation
|
|
|
|
* You may use this code for any purpose, as long as the original
|
|
|
|
* copyright remains in the source code and all documentation
|
|
|
|
*
|
|
|
|
* which in turn borrows parts of the algorithm from uwm
|
|
|
|
*/
|
|
|
|
int delta;
|
|
|
|
double min_aspect, max_aspect;
|
|
|
|
|
|
|
|
#define FLOOR(value, base) ( ((gint) ((value) / (base))) * (base) )
|
|
|
|
|
|
|
|
/* clamp width and height to min and max values
|
|
|
|
*/
|
|
|
|
width = CLAMP (width,
|
|
|
|
window->size_hints.min_width,
|
|
|
|
window->size_hints.max_width);
|
|
|
|
height = CLAMP (height,
|
|
|
|
window->size_hints.min_height,
|
|
|
|
window->size_hints.max_height);
|
|
|
|
|
|
|
|
/* shrink to base + N * inc
|
|
|
|
*/
|
|
|
|
width = window->size_hints.base_width +
|
|
|
|
FLOOR (width - window->size_hints.base_width, window->size_hints.width_inc);
|
|
|
|
height = window->size_hints.base_height +
|
|
|
|
FLOOR (height - window->size_hints.base_height, window->size_hints.height_inc);
|
|
|
|
|
|
|
|
/* constrain aspect ratio, according to:
|
|
|
|
*
|
|
|
|
* width
|
|
|
|
* min_aspect <= -------- <= max_aspect
|
|
|
|
* height
|
|
|
|
*/
|
|
|
|
|
|
|
|
min_aspect = window->size_hints.min_aspect.x / (double) window->size_hints.min_aspect.y;
|
|
|
|
max_aspect = window->size_hints.max_aspect.x / (double) window->size_hints.max_aspect.y;
|
|
|
|
|
|
|
|
if (min_aspect * height > width)
|
|
|
|
{
|
|
|
|
delta = FLOOR (height - width * min_aspect, window->size_hints.height_inc);
|
|
|
|
if (height - delta >= window->size_hints.min_height)
|
|
|
|
height -= delta;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delta = FLOOR (height * min_aspect - width, window->size_hints.width_inc);
|
|
|
|
if (width + delta <= window->size_hints.max_width)
|
|
|
|
width += delta;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (max_aspect * height < width)
|
|
|
|
{
|
|
|
|
delta = FLOOR (width - height * max_aspect, window->size_hints.width_inc);
|
|
|
|
if (width - delta >= window->size_hints.min_width)
|
|
|
|
width -= delta;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delta = FLOOR (width / max_aspect - height, window->size_hints.height_inc);
|
|
|
|
if (height + delta <= window->size_hints.max_height)
|
|
|
|
height += delta;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef FLOOR
|
|
|
|
|
|
|
|
*new_width = width;
|
|
|
|
*new_height = height;
|
|
|
|
}
|
2001-06-02 21:33:27 -04:00
|
|
|
|