mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 08:30:42 -05:00
d08a8de265
This commits adds support on the MetaWindow and constraints engine side for asynchronously repositioning a window with a placement rule, either due to environmental changes (e.g. parent moved) or explicitly done so via `meta_window_update_placement_rule()`. This is so far unused, as placement rules where this functionality is triggered are not yet constructed by the xdg-shell implementation, and no users of `meta_window_update_placement_rule()` exists yet. To summarize, it works by making it possible to produce placement rules with the parent rectangle a window should be placed against, while creating a pending configuration that is not applied until acknowledged by the client using the xdg-shell configure/ack_configure mechanisms. An "temporary" constrain result is added to deal with situations where the client window *must* move immediately even though it has not yet acknowledged a new configuration that was sent. This happens for example when the parent window is moved, causing the popup window to change its relative position e.g. because it ended up partially off-screen. In this situation, the temporary position corresponds to the result of the movement of the parent, while the pending (asynchronously configured) position is the relative one given the new constraining result. https://gitlab.gnome.org/GNOME/mutter/merge_requests/705
40 lines
1.4 KiB
C
40 lines
1.4 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/* Mutter size/position constraints */
|
|
|
|
/*
|
|
* Copyright (C) 2002 Red Hat, Inc.
|
|
* Copyright (C) 2005 Elijah Newren
|
|
*
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef META_CONSTRAINTS_H
|
|
#define META_CONSTRAINTS_H
|
|
|
|
#include "core/frame.h"
|
|
#include "core/window-private.h"
|
|
#include "meta/util.h"
|
|
|
|
void meta_window_constrain (MetaWindow *window,
|
|
MetaMoveResizeFlags flags,
|
|
MetaGravity resize_gravity,
|
|
const MetaRectangle *orig,
|
|
MetaRectangle *new,
|
|
MetaRectangle *intermediate,
|
|
int *rel_x,
|
|
int *rel_y);
|
|
|
|
#endif /* META_CONSTRAINTS_H */
|