2006-10-01 18:30:10 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2013-03-11 11:52:36 -04:00
|
|
|
/*
|
2011-06-24 12:14:15 -04:00
|
|
|
* PLEASE KEEP IN SYNC WITH GSETTINGS SCHEMAS!
|
|
|
|
*/
|
2001-06-17 23:24:25 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 Havoc Pennington
|
Merge of all the changes on the constraints_experiments branch. This is
2005-11-18 Elijah Newren <newren@gmail.com>
Merge of all the changes on the constraints_experiments branch.
This is just a summary, to get the full ChangeLog of those
changes (approx. 2000 lines):
cvs -q -z3 update -Pd -r constraints_experiments
cvs -q -z3 diff -pu -r CONSTRAINTS_EXPERIMENTS_BRANCHPOINT ChangeLog
Bugs fixed:
unfiled - constraints.c is overly complicated[1]
unfiled - constraints.c is not robust when all constraints
cannot simultaneously be met (constraints need to be
prioritized)
unfiled - keep-titlebar-onscreen constraint is decoration
unaware (since get_outermost_onscreen_positions()
forgets to include decorations)
unfiled - keyboard snap-moving and snap-resizing snap to hidden
edges
109553 - gravity w/ simultaneous move & resize doesn't work
113601 - maximize vertical and horizontal should toggle and be
constrained
122196 - windows show up under vertical panels
122670 - jerky/random resizing of window via keyboard[2]
124582 - keyboard and mouse snap-resizing and snap-moving
erroneously moves the window multidimensionally
136307 - don't allow apps to resize themselves off the screen
(*cough* filechooser *cough*)
142016, 143784 - windows should not span multiple xineramas
unless placed there by the user
143145 - clamp new windows to screensize and force them
onscreen, if they'll fit
144126 - Handle pathological strut lists sanely[3]
149867 - fixed aspect ratio windows are difficult to resize[4]
152898 - make screen edges consistent; allow easy slamming of
windows into the left, right, and bottom edges of the
screen too.
154706 - bouncing weirdness at screen edge with keyboard moving
or resizing
156699 - avoid struts when placing windows, if possible (nasty
a11y blocker)
302456 - dragging offscreen too restrictive
304857 - wireframe moving off the top of the screen is misleading
308521 - make uni-directional resizing easier with
alt-middle-drag and prevent the occasional super
annoying resize-the-wrong-side(s) behavior
312007 - snap-resize moves windows with a minimum size
constraint
312104 - resizing the top of a window can cause the bottom to
grow
319351 - don't instantly snap on mouse-move-snapping, remove
braindeadedness of having order of releasing shift and
releasing button press matter so much
[1] fixed in my opinion, anyway.
[2] Actually, it's not totally fixed--it's just annoying
instead of almost completely unusable. Matthias had a
suggestion that may fix the remainder of the problems (see
http://tinyurl.com/bwzuu).
[3] This bug was originally about not-quite-so-pathological
cases but was left open for the worse cases. The code from
the branch handles the remainder of the cases mentioned in
this bug.
[4] Actually, although it's far better there's still some minor
issues left: a slight drift that's only noticeable after
lots of resizing, and potential problems with partially
onscreen constraints due to not clearing any
fixed_directions flags (aspect ratio windows get resized in
both directions and thus aren't fixed in one of them)
New feature:
81704 - edge resistance for user move and resize operations;
in particular 3 different kinds of resistance are
implemented:
Pixel-Distance: window movement is resisted when it
aligns with an edge unless the movement is greater than
a threshold number of pixels
Timeout: window movement past an edge is prevented until
a certain amount of time has elapsed during the
operation since the first request to move it past that
edge
Keyboard-Buildup: when moving or resizing with the
keyboard, once a window is aligned with a certain edge
it cannot move past until the correct direction has
been pressed enough times (e.g. 2 or 3 times)
Major changes:
- constraints.c has been rewritten; very few lines of code from
the old version remain. There is a comment near the top of
the function explaining the basics of how the new framework
works. A more detailed explanation can be found in
doc/how-constraints-works.txt
- edge-resistance.[ch] are new files implementing edge-resistance.
- boxes.[ch] are new files containing low-level error-prone
functions used heavily in constraints.c and edge-resistance.c,
among various places throughout the code. testboxes.c
contains a thorough testsuite for the boxes.[ch] functions
compiled into a program, testboxes.
- meta_window_move_resize_internal() *must* be told the gravity
of the associated operation (if it's just a move operation,
the gravity will be ignored, but for resize and move+resize
the correct value is needed)
- the craziness of different values that
meta_window_move_resize_internal() accepts has been documented
in a large comment at the beginning of the function. It may
be possible to clean this up some, but until then things will
remain as they were before--caller beware.
- screen and xinerama usable areas (i.e. places not covered by
e.g. panels) are cached in the workspace now, as are the
screen and xinerama edges. These get updated with the
workarea in src/workspace.c:ensure_work_areas_validated()
2005-11-19 09:58:50 -05:00
|
|
|
* Copyright (C) 2005 Elijah Newren
|
2001-06-17 23:24:25 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_COMMON_H
|
|
|
|
#define META_COMMON_H
|
|
|
|
|
2011-07-12 00:37:41 -04:00
|
|
|
/* Don't include core headers here */
|
2001-06-17 23:24:25 -04:00
|
|
|
#include <X11/Xlib.h>
|
2012-11-15 17:44:49 -05:00
|
|
|
#include <X11/extensions/XInput.h>
|
|
|
|
#include <X11/extensions/XInput2.h>
|
2001-06-23 01:49:35 -04:00
|
|
|
#include <glib.h>
|
2011-07-12 00:37:41 -04:00
|
|
|
#include <gtk/gtk.h>
|
2001-06-17 23:24:25 -04:00
|
|
|
|
2013-03-11 11:52:36 -04:00
|
|
|
/**
|
|
|
|
* SECTION:common
|
|
|
|
* @Title: Common
|
|
|
|
* @Short_Description: Mutter common types
|
|
|
|
*/
|
|
|
|
|
2012-11-20 16:59:20 -05:00
|
|
|
/* This is set in stone and also hard-coded in GDK. */
|
|
|
|
#define META_VIRTUAL_CORE_POINTER_ID 2
|
|
|
|
#define META_VIRTUAL_CORE_KEYBOARD_ID 3
|
|
|
|
|
2002-03-17 12:22:23 -05:00
|
|
|
typedef struct _MetaResizePopup MetaResizePopup;
|
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaFrameFlags:
|
|
|
|
* @META_FRAME_ALLOWS_DELETE: frame allows delete
|
|
|
|
* @META_FRAME_ALLOWS_MENU: frame allows menu
|
|
|
|
* @META_FRAME_ALLOWS_MINIMIZE: frame allows minimize
|
|
|
|
* @META_FRAME_ALLOWS_MAXIMIZE: frame allows maximize
|
|
|
|
* @META_FRAME_ALLOWS_VERTICAL_RESIZE: frame allows vertical resize
|
|
|
|
* @META_FRAME_ALLOWS_HORIZONTAL_RESIZE: frame allows horizontal resize
|
|
|
|
* @META_FRAME_HAS_FOCUS: frame has focus
|
|
|
|
* @META_FRAME_SHADED: frame is shaded
|
|
|
|
* @META_FRAME_STUCK: frame is stuck
|
|
|
|
* @META_FRAME_MAXIMIZED: frame is maximized
|
|
|
|
* @META_FRAME_ALLOWS_SHADE: frame allows shade
|
|
|
|
* @META_FRAME_ALLOWS_MOVE: frame allows move
|
|
|
|
* @META_FRAME_FULLSCREEN: frame allows fullscreen
|
|
|
|
* @META_FRAME_IS_FLASHING: frame is flashing
|
|
|
|
* @META_FRAME_ABOVE: frame is above
|
|
|
|
* @META_FRAME_TILED_LEFT: frame is tiled to the left
|
|
|
|
* @META_FRAME_TILED_RIGHT: frame is tiled to the right
|
|
|
|
*/
|
2001-06-17 23:24:25 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
2001-07-02 21:45:43 -04:00
|
|
|
META_FRAME_ALLOWS_DELETE = 1 << 0,
|
|
|
|
META_FRAME_ALLOWS_MENU = 1 << 1,
|
|
|
|
META_FRAME_ALLOWS_MINIMIZE = 1 << 2,
|
2001-09-10 23:54:54 -04:00
|
|
|
META_FRAME_ALLOWS_MAXIMIZE = 1 << 3,
|
2001-07-02 21:45:43 -04:00
|
|
|
META_FRAME_ALLOWS_VERTICAL_RESIZE = 1 << 4,
|
|
|
|
META_FRAME_ALLOWS_HORIZONTAL_RESIZE = 1 << 5,
|
2002-01-19 18:59:11 -05:00
|
|
|
META_FRAME_HAS_FOCUS = 1 << 6,
|
|
|
|
META_FRAME_SHADED = 1 << 7,
|
|
|
|
META_FRAME_STUCK = 1 << 8,
|
|
|
|
META_FRAME_MAXIMIZED = 1 << 9,
|
|
|
|
META_FRAME_ALLOWS_SHADE = 1 << 10,
|
2002-06-08 02:07:21 -04:00
|
|
|
META_FRAME_ALLOWS_MOVE = 1 << 11,
|
2003-01-28 10:07:43 -05:00
|
|
|
META_FRAME_FULLSCREEN = 1 << 12,
|
Added "above" to the list of flags a frame can have, so that we know when
* common.h: Added "above" to the list of flags a frame can have, so
that we know when to mark it as always on top. Added six grab ops,
one to do and one to undo each of the three new titlebar buttons
(shade, above, stick). Added six new button functions, similarly.
(#96229)
* frame.c (meta_frame_get_flags): If a frame has the WM_STATE_ABOVE X
attribute, set META_FRAME_ABOVE in its flags.
* frames.c (meta_frames_apply_shapes): Allow variable amounts of
rounding. (#113162)
* frames.c (show_tip_now, meta_frames_paint_to_drawable, control_rect,
get_control): extend handling of existing buttons to the
3*2 new kinds of button. (#96229)
* frames.c (meta_frames_button_press_event): translate clicks on the 3*2
new kinds of button to the new grab ops. (#96229)
* frames.c (meta_frames_button_release_event): implement the various
actions for the 3*2 new kinds of button. (#96229)
* frames.c (meta_frames_update_prelit_control,
meta_frames_motion_notify_event): extend existing motion
notifications for buttons to the 3*2 new kinds of button. (#96229)
* frames.c (meta_frames_set_window_background): handle specified
background colours and alpha transparency. (#151261)
* frames.h (MetaFrameControl): New control types for the 3*2 new kinds
of button. (#96229)
* iconcache.[ch] (meta_read_icons): use theme's fallback icons if a
window has no icon; use metacity's fallback icons only if the theme
does not provide any. (#11363)
* iconcache.[ch] (meta_invalidate_default_icons (new function)): clear
icon cache on windows using default icons, and update them. (#11363)
* main.c (main): added \n to error message.
* prefs.c (button_function_from_string): extend for 3 new button
types. (#96229)
* prefs.c (button_opposite_function (new function)): return a button
function's inverse (shade -> unshade, etc) (#96229)
* prefs.c (update_button_layout): allocate space for a button's
inverse, if it has one. (#96229)
* theme-parser.c (ParseState): add state for fallback icons (#11363)
* theme-parser.c (ParseInfo): add format_version; remove
menu_icon_* (#114305)
* theme-parser.c (parse_positive_integer): add lookup for integer
constants (#331356)
* theme-parser.c (parse_rounding (new function)): parse window
rounding amount (#113162)
* theme-parser.c (parse_alpha): don't set error if the number can't
be parsed since it'll already be set; change tolerance in comparison
from 1e6 to 1e-6
* theme-parser.c (parse_color (new function)): parse colour, including
possible constant lookup.
* theme-parser.c (parse_toplevel_element): allow defining of various
new kinds of constant; allow
hide_buttons (#121639) and more detailed rounding attributes on
<frame_geometry> (#113162); allow background and alpha attributes on
<frame_style>; (#151261) remove support for <menu_icon> except as
stub; (#114305) add support for loading stock images (#113465); add
support for <fallback>. (#11363))
* theme-parser.c (parse_draw_op_element): add from and to attribute
for arcs. (#121603)
* theme-parser.c (parse_style_element): add check for theme version
supporting a button function. (#96229)
* theme-parser.c (parse_style_set_element): add ability for shaded
windows to be resizable (#114304)
* theme-parser.c (meta_theme_load): add theme versioning routine.
* theme.c ( meta_frame_layout_get_borders): return rectangles for
the new 3*2 kinds of button, except where they're
inapplicable. (#96229)
* theme.c (meta_frame_layout_calc_geometry): don't format buttons on
windows with no buttons (#121639); strip the 3*2 new kinds of button
correctly (#96229); allow variable amounts of rounding (#113162).
* theme.c (meta_frame_style_new): set alpha to 255 by
default. (#151261)
* theme.c (meta_frame_style_unref): free colour spec if
allocated. (#151261)
* theme.c (meta_frame_style_validate): it's only an error not to
include a button if that button is valid in the current
theme. (#96229)
* theme.c (button_rect): return rectangles for the new 3*2 kinds
of button. (#96229)
* theme.c (meta_frame_style_set_unref): free differently resizable
shaded styles. (#114304)
* theme.c (get_style): look up differently resizable styles
for shaded windows. (#114304)
* theme.c (free_menu_ops (removed function), get_menu_icon
(removed function), meta_theme_draw_menu_icon (removed function),
meta_menu_icon_type_from_string (removed function),
meta_menu_icon_type_to_string (removed function),
meta_theme_free, meta_theme_validate): removed menu icon code. (#114305)
* theme.c (meta_theme_load_image): add size_of_theme_icons
parameter. (#113465)
* theme.c (meta_theme_define_color_constant (new function),
meta_theme_lookup_color_constant (new function)): allow
definition of colour constants. (#129747)
* theme.c (meta_button_type_from_string, meta_button_type_to_string):
add the 3*2 new kinds of button. (#96229)
* theme.c (meta_theme_earliest_version_with_button (new function)):
return the theme version each button was introduced in. (#96229)
* theme.h ( MetaFrameLayout): add "hide_buttons" flag (#121639) and
corner radiuses. (#113162)
* theme.h (MetaFrameGeometry): add rectangles for the 3*2 new
buttons. (#96229)
* theme.h (MetaButtonType): the 3*2 new buttons. (#96229)
* theme.h (MetaFrameStyle): add window_background_color and
window_background_alpha so that we can specify background on a
<frame_style>. (#151261)
* theme.h (MetaFrameStyleSet): shaded_styles gets resize
dimension. (#114304)
* theme.h (MetaTheme): added format_version, color_constants
hash, (#129747) fallback_icon and fallback_mini_icon, (#11363)
and removed menu_icons. (#114305)
* theme.h (META_THEME_ALLOWS (new macro)): return whether a theme
supports a given feature. Also, several macros representing
new features in v2.
* ui.c (meta_ui_set_current_theme)): also invalidate default
icons. (#11363)
* window.[ch] (meta_window_update_icon_now)): became
non-static. (#11363)
2006-10-07 12:56:47 -04:00
|
|
|
META_FRAME_IS_FLASHING = 1 << 13,
|
2010-12-07 20:16:35 -05:00
|
|
|
META_FRAME_ABOVE = 1 << 14,
|
|
|
|
META_FRAME_TILED_LEFT = 1 << 15,
|
|
|
|
META_FRAME_TILED_RIGHT = 1 << 16
|
2001-06-17 23:24:25 -04:00
|
|
|
} MetaFrameFlags;
|
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaMenuOp:
|
|
|
|
* @META_MENU_OP_NONE: No menu operation
|
|
|
|
* @META_MENU_OP_DELETE: Menu operation delete
|
|
|
|
* @META_MENU_OP_MINIMIZE: Menu operation minimize
|
|
|
|
* @META_MENU_OP_UNMAXIMIZE: Menu operation unmaximize
|
|
|
|
* @META_MENU_OP_MAXIMIZE: Menu operation maximize
|
|
|
|
* @META_MENU_OP_UNSHADE: Menu operation unshade
|
|
|
|
* @META_MENU_OP_SHADE: Menu operation shade
|
|
|
|
* @META_MENU_OP_UNSTICK: Menu operation unstick
|
|
|
|
* @META_MENU_OP_STICK: Menu operation stick
|
|
|
|
* @META_MENU_OP_WORKSPACES: Menu operation workspaces
|
|
|
|
* @META_MENU_OP_MOVE: Menu operation move
|
|
|
|
* @META_MENU_OP_RESIZE: Menu operation resize
|
|
|
|
* @META_MENU_OP_ABOVE: Menu operation above
|
|
|
|
* @META_MENU_OP_UNABOVE: Menu operation unabove
|
|
|
|
* @META_MENU_OP_MOVE_LEFT: Menu operation left
|
|
|
|
* @META_MENU_OP_MOVE_RIGHT: Menu operation right
|
|
|
|
* @META_MENU_OP_MOVE_UP: Menu operation up
|
|
|
|
* @META_MENU_OP_MOVE_DOWN: Menu operation down
|
|
|
|
* @META_MENU_OP_RECOVER: Menu operation recover
|
|
|
|
*/
|
2001-06-23 01:49:35 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
2010-03-31 16:34:02 -04:00
|
|
|
META_MENU_OP_NONE = 0,
|
2001-06-23 01:49:35 -04:00
|
|
|
META_MENU_OP_DELETE = 1 << 0,
|
|
|
|
META_MENU_OP_MINIMIZE = 1 << 1,
|
|
|
|
META_MENU_OP_UNMAXIMIZE = 1 << 2,
|
|
|
|
META_MENU_OP_MAXIMIZE = 1 << 3,
|
|
|
|
META_MENU_OP_UNSHADE = 1 << 4,
|
|
|
|
META_MENU_OP_SHADE = 1 << 5,
|
|
|
|
META_MENU_OP_UNSTICK = 1 << 6,
|
|
|
|
META_MENU_OP_STICK = 1 << 7,
|
2001-07-11 02:22:00 -04:00
|
|
|
META_MENU_OP_WORKSPACES = 1 << 8,
|
|
|
|
META_MENU_OP_MOVE = 1 << 9,
|
2003-12-21 01:31:40 -05:00
|
|
|
META_MENU_OP_RESIZE = 1 << 10,
|
|
|
|
META_MENU_OP_ABOVE = 1 << 11,
|
2007-04-16 00:48:14 -04:00
|
|
|
META_MENU_OP_UNABOVE = 1 << 12,
|
|
|
|
META_MENU_OP_MOVE_LEFT = 1 << 13,
|
|
|
|
META_MENU_OP_MOVE_RIGHT = 1 << 14,
|
|
|
|
META_MENU_OP_MOVE_UP = 1 << 15,
|
|
|
|
META_MENU_OP_MOVE_DOWN = 1 << 16,
|
|
|
|
META_MENU_OP_RECOVER = 1 << 17
|
2001-06-23 01:49:35 -04:00
|
|
|
} MetaMenuOp;
|
|
|
|
|
|
|
|
typedef struct _MetaWindowMenu MetaWindowMenu;
|
|
|
|
|
|
|
|
typedef void (* MetaWindowMenuFunc) (MetaWindowMenu *menu,
|
|
|
|
Display *xdisplay,
|
|
|
|
Window client_xwindow,
|
Fix issues on 64-bit machines with timestamps by using guint32 (like gtk+
2006-09-13 Elijah Newren <newren gmail com>
* src/common.h (MetaWindowMenuFunc):
* src/core.[ch] (meta_core_user_lower_and_unfocus,
meta_core_user_focus, meta_core_show_window_menu,
meta_core_begin_grab_op, meta_core_end_grab_op):
* src/delete.c (delete_ping_reply_func, delete_ping_timeout_func,
meta_window_delete):
* src/display.[ch] (struct MetaDisplay, struct MetaPingData,
sanity_check_timestamps, meta_display_open, event_callback,
meta_spew_event, meta_display_set_grab_op_cursor,
meta_display_begin_grab_op, meta_display_end_grab_op,
meta_display_ping_timeout, meta_display_ping_window,
process_pong_message, timestamp_too_old,
meta_display_set_input_focus_window):
* src/keybindings.[ch] (grab_keyboard, ungrab_keyboard,
meta_screen_grab_all_keys, meta_window_grab_all_keys,
meta_window_ungrab_all_keys, error_on_generic_command,
error_on_command, error_on_terminal_command):
* src/metacity-dialog.c (on_realize, warn_about_no_sm_support,
error_about_command, main):
* src/screen.[ch] (struct _MetaScreen, meta_screen_new,
meta_screen_show_desktop, meta_screen_apply_startup_properties):
* src/session.c (warn_about_lame_clients_and_finish_interact):
* src/window.[ch] (struct _MetaWindow,
intervening_user_event_occurred, window_activate,
meta_window_delete, meta_window_focus,
meta_window_send_icccm_message, meta_window_client_message,
menu_callback, meta_window_show_menu, struct EventScannerData,
check_use_this_motion_notify, meta_window_begin_grab_op,
meta_window_set_user_time):
* src/workspace.[ch] (focus_ancestor_or_mru_window,
meta_workspace_activate_with_focus, meta_workspace_activate,
meta_workspace_focus_default_window,
focus_ancestor_or_mru_window):
Fix issues on 64-bit machines with timestamps by using guint32
(like gtk+ does) instead of Time. #348305
2006-09-13 12:32:33 -04:00
|
|
|
guint32 timestamp,
|
2001-06-23 01:49:35 -04:00
|
|
|
MetaMenuOp op,
|
|
|
|
int workspace,
|
2012-11-16 15:23:47 -05:00
|
|
|
gpointer user_data);
|
2001-06-23 01:49:35 -04:00
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaGrabOp:
|
|
|
|
* @META_GRAB_OP_NONE: None
|
|
|
|
* @META_GRAB_OP_MOVING: Moving with pointer
|
|
|
|
* @META_GRAB_OP_RESIZING_SE: Resizing SE with pointer
|
|
|
|
* @META_GRAB_OP_RESIZING_S: Resizing S with pointer
|
|
|
|
* @META_GRAB_OP_RESIZING_SW: Resizing SW with pointer
|
|
|
|
* @META_GRAB_OP_RESIZING_N: Resizing N with pointer
|
|
|
|
* @META_GRAB_OP_RESIZING_NE: Resizing NE with pointer
|
|
|
|
* @META_GRAB_OP_RESIZING_NW: Resizing NW with pointer
|
|
|
|
* @META_GRAB_OP_RESIZING_W: Resizing W with pointer
|
|
|
|
* @META_GRAB_OP_RESIZING_E: Resizing E with pointer
|
|
|
|
* @META_GRAB_OP_KEYBOARD_MOVING: Moving with keyboard
|
|
|
|
* @META_GRAB_OP_KEYBOARD_RESIZING_UNKNOWN: Resizing with keyboard
|
|
|
|
* @META_GRAB_OP_KEYBOARD_RESIZING_S: Resizing S with keyboard
|
|
|
|
* @META_GRAB_OP_KEYBOARD_RESIZING_N: Resizing N with keyboard
|
|
|
|
* @META_GRAB_OP_KEYBOARD_RESIZING_W: Resizing W with keyboard
|
|
|
|
* @META_GRAB_OP_KEYBOARD_RESIZING_E: Resizing E with keyboard
|
|
|
|
* @META_GRAB_OP_KEYBOARD_RESIZING_SE: Resizing SE with keyboard
|
|
|
|
* @META_GRAB_OP_KEYBOARD_RESIZING_NE: Resizing NE with keyboard
|
|
|
|
* @META_GRAB_OP_KEYBOARD_RESIZING_SW: Resizing SW with keyboard
|
|
|
|
* @META_GRAB_OP_KEYBOARD_RESIZING_NW: Resizing NS with keyboard
|
|
|
|
* @META_GRAB_OP_KEYBOARD_TABBING_NORMAL: Tabbing
|
|
|
|
* @META_GRAB_OP_KEYBOARD_TABBING_DOCK: Tabbing through docks
|
|
|
|
* @META_GRAB_OP_KEYBOARD_ESCAPING_NORMAL: Escaping
|
|
|
|
* @META_GRAB_OP_KEYBOARD_ESCAPING_DOCK: Escaping through docks
|
|
|
|
* @META_GRAB_OP_KEYBOARD_ESCAPING_GROUP: Escaping through groups
|
|
|
|
* @META_GRAB_OP_KEYBOARD_TABBING_GROUP: Tabbing through groups
|
|
|
|
* @META_GRAB_OP_KEYBOARD_WORKSPACE_SWITCHING: Switch to another workspace
|
|
|
|
* @META_GRAB_OP_CLICKING_MINIMIZE: Clicked minimize button
|
|
|
|
* @META_GRAB_OP_CLICKING_MAXIMIZE: Clicked maximize button
|
|
|
|
* @META_GRAB_OP_CLICKING_UNMAXIMIZE: Clicked unmaximize button
|
|
|
|
* @META_GRAB_OP_CLICKING_DELETE: Clicked delete button
|
|
|
|
* @META_GRAB_OP_CLICKING_MENU: Clicked on menu
|
|
|
|
* @META_GRAB_OP_CLICKING_SHADE: Clicked shade button
|
|
|
|
* @META_GRAB_OP_CLICKING_UNSHADE: Clicked unshade button
|
|
|
|
* @META_GRAB_OP_CLICKING_ABOVE: Clicked above button
|
|
|
|
* @META_GRAB_OP_CLICKING_UNABOVE: Clicked unabove button
|
|
|
|
* @META_GRAB_OP_CLICKING_STICK: Clicked stick button
|
|
|
|
* @META_GRAB_OP_CLICKING_UNSTICK: Clicked unstick button
|
|
|
|
* @META_GRAB_OP_COMPOSITOR: Compositor asked for grab
|
|
|
|
*/
|
|
|
|
|
2001-08-19 14:09:10 -04:00
|
|
|
/* when changing this enum, there are various switch statements
|
|
|
|
* you have to update
|
|
|
|
*/
|
2001-07-11 02:22:00 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_GRAB_OP_NONE,
|
2001-08-19 14:09:10 -04:00
|
|
|
|
2001-07-25 23:14:45 -04:00
|
|
|
/* Mouse ops */
|
2001-07-11 02:22:00 -04:00
|
|
|
META_GRAB_OP_MOVING,
|
|
|
|
META_GRAB_OP_RESIZING_SE,
|
|
|
|
META_GRAB_OP_RESIZING_S,
|
|
|
|
META_GRAB_OP_RESIZING_SW,
|
|
|
|
META_GRAB_OP_RESIZING_N,
|
|
|
|
META_GRAB_OP_RESIZING_NE,
|
|
|
|
META_GRAB_OP_RESIZING_NW,
|
|
|
|
META_GRAB_OP_RESIZING_W,
|
|
|
|
META_GRAB_OP_RESIZING_E,
|
2001-08-19 14:09:10 -04:00
|
|
|
|
2001-07-25 23:14:45 -04:00
|
|
|
/* Keyboard ops */
|
2001-07-11 02:22:00 -04:00
|
|
|
META_GRAB_OP_KEYBOARD_MOVING,
|
|
|
|
META_GRAB_OP_KEYBOARD_RESIZING_UNKNOWN,
|
|
|
|
META_GRAB_OP_KEYBOARD_RESIZING_S,
|
|
|
|
META_GRAB_OP_KEYBOARD_RESIZING_N,
|
|
|
|
META_GRAB_OP_KEYBOARD_RESIZING_W,
|
2001-07-25 23:14:45 -04:00
|
|
|
META_GRAB_OP_KEYBOARD_RESIZING_E,
|
2001-08-19 14:09:10 -04:00
|
|
|
META_GRAB_OP_KEYBOARD_RESIZING_SE,
|
|
|
|
META_GRAB_OP_KEYBOARD_RESIZING_NE,
|
|
|
|
META_GRAB_OP_KEYBOARD_RESIZING_SW,
|
|
|
|
META_GRAB_OP_KEYBOARD_RESIZING_NW,
|
|
|
|
|
2002-07-06 12:50:48 -04:00
|
|
|
/* Alt+Tab */
|
2002-04-05 10:52:49 -05:00
|
|
|
META_GRAB_OP_KEYBOARD_TABBING_NORMAL,
|
|
|
|
META_GRAB_OP_KEYBOARD_TABBING_DOCK,
|
2002-06-08 23:44:16 -04:00
|
|
|
|
2002-07-06 12:50:48 -04:00
|
|
|
/* Alt+Esc */
|
|
|
|
META_GRAB_OP_KEYBOARD_ESCAPING_NORMAL,
|
|
|
|
META_GRAB_OP_KEYBOARD_ESCAPING_DOCK,
|
2006-04-14 22:05:44 -04:00
|
|
|
|
|
|
|
META_GRAB_OP_KEYBOARD_ESCAPING_GROUP,
|
|
|
|
|
|
|
|
/* Alt+F6 */
|
|
|
|
META_GRAB_OP_KEYBOARD_TABBING_GROUP,
|
2002-07-06 12:50:48 -04:00
|
|
|
|
2002-06-09 00:04:19 -04:00
|
|
|
META_GRAB_OP_KEYBOARD_WORKSPACE_SWITCHING,
|
2001-08-19 14:09:10 -04:00
|
|
|
|
2001-07-25 23:14:45 -04:00
|
|
|
/* Frame button ops */
|
|
|
|
META_GRAB_OP_CLICKING_MINIMIZE,
|
|
|
|
META_GRAB_OP_CLICKING_MAXIMIZE,
|
2001-09-10 23:54:54 -04:00
|
|
|
META_GRAB_OP_CLICKING_UNMAXIMIZE,
|
2001-07-25 23:14:45 -04:00
|
|
|
META_GRAB_OP_CLICKING_DELETE,
|
Added "above" to the list of flags a frame can have, so that we know when
* common.h: Added "above" to the list of flags a frame can have, so
that we know when to mark it as always on top. Added six grab ops,
one to do and one to undo each of the three new titlebar buttons
(shade, above, stick). Added six new button functions, similarly.
(#96229)
* frame.c (meta_frame_get_flags): If a frame has the WM_STATE_ABOVE X
attribute, set META_FRAME_ABOVE in its flags.
* frames.c (meta_frames_apply_shapes): Allow variable amounts of
rounding. (#113162)
* frames.c (show_tip_now, meta_frames_paint_to_drawable, control_rect,
get_control): extend handling of existing buttons to the
3*2 new kinds of button. (#96229)
* frames.c (meta_frames_button_press_event): translate clicks on the 3*2
new kinds of button to the new grab ops. (#96229)
* frames.c (meta_frames_button_release_event): implement the various
actions for the 3*2 new kinds of button. (#96229)
* frames.c (meta_frames_update_prelit_control,
meta_frames_motion_notify_event): extend existing motion
notifications for buttons to the 3*2 new kinds of button. (#96229)
* frames.c (meta_frames_set_window_background): handle specified
background colours and alpha transparency. (#151261)
* frames.h (MetaFrameControl): New control types for the 3*2 new kinds
of button. (#96229)
* iconcache.[ch] (meta_read_icons): use theme's fallback icons if a
window has no icon; use metacity's fallback icons only if the theme
does not provide any. (#11363)
* iconcache.[ch] (meta_invalidate_default_icons (new function)): clear
icon cache on windows using default icons, and update them. (#11363)
* main.c (main): added \n to error message.
* prefs.c (button_function_from_string): extend for 3 new button
types. (#96229)
* prefs.c (button_opposite_function (new function)): return a button
function's inverse (shade -> unshade, etc) (#96229)
* prefs.c (update_button_layout): allocate space for a button's
inverse, if it has one. (#96229)
* theme-parser.c (ParseState): add state for fallback icons (#11363)
* theme-parser.c (ParseInfo): add format_version; remove
menu_icon_* (#114305)
* theme-parser.c (parse_positive_integer): add lookup for integer
constants (#331356)
* theme-parser.c (parse_rounding (new function)): parse window
rounding amount (#113162)
* theme-parser.c (parse_alpha): don't set error if the number can't
be parsed since it'll already be set; change tolerance in comparison
from 1e6 to 1e-6
* theme-parser.c (parse_color (new function)): parse colour, including
possible constant lookup.
* theme-parser.c (parse_toplevel_element): allow defining of various
new kinds of constant; allow
hide_buttons (#121639) and more detailed rounding attributes on
<frame_geometry> (#113162); allow background and alpha attributes on
<frame_style>; (#151261) remove support for <menu_icon> except as
stub; (#114305) add support for loading stock images (#113465); add
support for <fallback>. (#11363))
* theme-parser.c (parse_draw_op_element): add from and to attribute
for arcs. (#121603)
* theme-parser.c (parse_style_element): add check for theme version
supporting a button function. (#96229)
* theme-parser.c (parse_style_set_element): add ability for shaded
windows to be resizable (#114304)
* theme-parser.c (meta_theme_load): add theme versioning routine.
* theme.c ( meta_frame_layout_get_borders): return rectangles for
the new 3*2 kinds of button, except where they're
inapplicable. (#96229)
* theme.c (meta_frame_layout_calc_geometry): don't format buttons on
windows with no buttons (#121639); strip the 3*2 new kinds of button
correctly (#96229); allow variable amounts of rounding (#113162).
* theme.c (meta_frame_style_new): set alpha to 255 by
default. (#151261)
* theme.c (meta_frame_style_unref): free colour spec if
allocated. (#151261)
* theme.c (meta_frame_style_validate): it's only an error not to
include a button if that button is valid in the current
theme. (#96229)
* theme.c (button_rect): return rectangles for the new 3*2 kinds
of button. (#96229)
* theme.c (meta_frame_style_set_unref): free differently resizable
shaded styles. (#114304)
* theme.c (get_style): look up differently resizable styles
for shaded windows. (#114304)
* theme.c (free_menu_ops (removed function), get_menu_icon
(removed function), meta_theme_draw_menu_icon (removed function),
meta_menu_icon_type_from_string (removed function),
meta_menu_icon_type_to_string (removed function),
meta_theme_free, meta_theme_validate): removed menu icon code. (#114305)
* theme.c (meta_theme_load_image): add size_of_theme_icons
parameter. (#113465)
* theme.c (meta_theme_define_color_constant (new function),
meta_theme_lookup_color_constant (new function)): allow
definition of colour constants. (#129747)
* theme.c (meta_button_type_from_string, meta_button_type_to_string):
add the 3*2 new kinds of button. (#96229)
* theme.c (meta_theme_earliest_version_with_button (new function)):
return the theme version each button was introduced in. (#96229)
* theme.h ( MetaFrameLayout): add "hide_buttons" flag (#121639) and
corner radiuses. (#113162)
* theme.h (MetaFrameGeometry): add rectangles for the 3*2 new
buttons. (#96229)
* theme.h (MetaButtonType): the 3*2 new buttons. (#96229)
* theme.h (MetaFrameStyle): add window_background_color and
window_background_alpha so that we can specify background on a
<frame_style>. (#151261)
* theme.h (MetaFrameStyleSet): shaded_styles gets resize
dimension. (#114304)
* theme.h (MetaTheme): added format_version, color_constants
hash, (#129747) fallback_icon and fallback_mini_icon, (#11363)
and removed menu_icons. (#114305)
* theme.h (META_THEME_ALLOWS (new macro)): return whether a theme
supports a given feature. Also, several macros representing
new features in v2.
* ui.c (meta_ui_set_current_theme)): also invalidate default
icons. (#11363)
* window.[ch] (meta_window_update_icon_now)): became
non-static. (#11363)
2006-10-07 12:56:47 -04:00
|
|
|
META_GRAB_OP_CLICKING_MENU,
|
|
|
|
META_GRAB_OP_CLICKING_SHADE,
|
|
|
|
META_GRAB_OP_CLICKING_UNSHADE,
|
|
|
|
META_GRAB_OP_CLICKING_ABOVE,
|
|
|
|
META_GRAB_OP_CLICKING_UNABOVE,
|
|
|
|
META_GRAB_OP_CLICKING_STICK,
|
2009-08-12 00:12:52 -04:00
|
|
|
META_GRAB_OP_CLICKING_UNSTICK,
|
|
|
|
|
|
|
|
/* Special grab op when the compositor asked for a grab */
|
|
|
|
META_GRAB_OP_COMPOSITOR
|
2001-07-11 02:22:00 -04:00
|
|
|
} MetaGrabOp;
|
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaCursor:
|
|
|
|
* @META_CURSOR_DEFAULT: Default cursor
|
|
|
|
* @META_CURSOR_NORTH_RESIZE: Resize northern edge cursor
|
|
|
|
* @META_CURSOR_SOUTH_RESIZE: Resize southern edge cursor
|
|
|
|
* @META_CURSOR_WEST_RESIZE: Resize western edge cursor
|
|
|
|
* @META_CURSOR_EAST_RESIZE: Resize eastern edge cursor
|
|
|
|
* @META_CURSOR_SE_RESIZE: Resize south-eastern corner cursor
|
|
|
|
* @META_CURSOR_SW_RESIZE: Resize south-western corner cursor
|
|
|
|
* @META_CURSOR_NE_RESIZE: Resize north-eastern corner cursor
|
|
|
|
* @META_CURSOR_NW_RESIZE: Resize north-western corner cursor
|
|
|
|
* @META_CURSOR_MOVE_OR_RESIZE_WINDOW: Move or resize cursor
|
|
|
|
* @META_CURSOR_BUSY: Busy cursor
|
|
|
|
*/
|
2001-07-25 23:14:45 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_CURSOR_DEFAULT,
|
|
|
|
META_CURSOR_NORTH_RESIZE,
|
|
|
|
META_CURSOR_SOUTH_RESIZE,
|
|
|
|
META_CURSOR_WEST_RESIZE,
|
|
|
|
META_CURSOR_EAST_RESIZE,
|
|
|
|
META_CURSOR_SE_RESIZE,
|
|
|
|
META_CURSOR_SW_RESIZE,
|
|
|
|
META_CURSOR_NE_RESIZE,
|
Patch to provide extra cues to the user when using window menu move and
2002-08-08 Craig Black <blackc@speakeasy.net>
Patch to provide extra cues to the user when using
window menu move and resize, #85724.
* src/common.h: add new cursors
* src/display.c: (grab_op_is_mouse)
(meta_display_create_x_cursor), (xcursor_for_op),
(meta_display_set_grab_op_cursor),
(meta_display_begin_grab_op):
The keyboard move and resize grab ops now also use the mouse.
Allow the grab cursor to be changed during the grab op.
Hold onto the initial grab position in case of reset.
* src/display.h: save the initial grab position
* src/keybindings.c: (process_keyboard_move_grab),
(process_keyboard_resize_grab), (handle_begin_move),
(handle_begin_resize):
The keyboard move and resize grab ops now also use the mouse.
* src/window.c: (meta_window_client_message), (menu_callback),
(update_move), (update_resize),
(meta_window_handle_mouse_grab_op_event), (warp_pointer),
(meta_window_warp_pointer), (meta_window_begin_grab_op),
(meta_window_update_resize_grab_op):
When moving or resizing a window use the last grab position
in computing change increment.
Provide support for warping the mouse pointer.
* src/window.h: new warp pointer and grab op helper functions
2002-08-09 00:27:23 -04:00
|
|
|
META_CURSOR_NW_RESIZE,
|
2006-05-22 12:12:28 -04:00
|
|
|
META_CURSOR_MOVE_OR_RESIZE_WINDOW,
|
2002-10-25 19:35:50 -04:00
|
|
|
META_CURSOR_BUSY
|
2001-07-25 23:14:45 -04:00
|
|
|
|
|
|
|
} MetaCursor;
|
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaFrameType:
|
|
|
|
* @META_FRAME_TYPE_NORMAL: Normal frame
|
|
|
|
* @META_FRAME_TYPE_DIALOG: Dialog frame
|
|
|
|
* @META_FRAME_TYPE_MODAL_DIALOG: Modal dialog frame
|
|
|
|
* @META_FRAME_TYPE_UTILITY: Utility frame
|
|
|
|
* @META_FRAME_TYPE_MENU: Menu frame
|
|
|
|
* @META_FRAME_TYPE_BORDER: Border frame
|
|
|
|
* @META_FRAME_TYPE_ATTACHED: Attached frame
|
|
|
|
* @META_FRAME_TYPE_LAST: Marks the end of the #MetaFrameType enumeration
|
|
|
|
*/
|
2002-01-19 18:59:11 -05:00
|
|
|
typedef enum
|
|
|
|
{
|
2002-01-27 03:21:53 -05:00
|
|
|
META_FRAME_TYPE_NORMAL,
|
|
|
|
META_FRAME_TYPE_DIALOG,
|
|
|
|
META_FRAME_TYPE_MODAL_DIALOG,
|
|
|
|
META_FRAME_TYPE_UTILITY,
|
|
|
|
META_FRAME_TYPE_MENU,
|
2002-06-21 23:23:02 -04:00
|
|
|
META_FRAME_TYPE_BORDER,
|
2010-11-04 12:11:54 -04:00
|
|
|
META_FRAME_TYPE_ATTACHED,
|
2002-01-27 03:21:53 -05:00
|
|
|
META_FRAME_TYPE_LAST
|
|
|
|
} MetaFrameType;
|
2002-01-19 18:59:11 -05:00
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaVirtualModifier:
|
|
|
|
* @META_VIRTUAL_SHIFT_MASK: Shift mask
|
|
|
|
* @META_VIRTUAL_CONTROL_MASK: Control mask
|
|
|
|
* @META_VIRTUAL_ALT_MASK: Alt mask
|
|
|
|
* @META_VIRTUAL_META_MASK: Meta mask
|
|
|
|
* @META_VIRTUAL_SUPER_MASK: Super mask
|
|
|
|
* @META_VIRTUAL_HYPER_MASK: Hyper mask
|
|
|
|
* @META_VIRTUAL_MOD2_MASK: Mod2 mask
|
|
|
|
* @META_VIRTUAL_MOD3_MASK: Mod3 mask
|
|
|
|
* @META_VIRTUAL_MOD4_MASK: Mod4 mask
|
|
|
|
* @META_VIRTUAL_MOD5_MASK: Mod5 mask
|
|
|
|
*/
|
2002-07-13 23:16:41 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
/* Create gratuitous divergence from regular
|
|
|
|
* X mod bits, to be sure we find bugs
|
|
|
|
*/
|
|
|
|
META_VIRTUAL_SHIFT_MASK = 1 << 5,
|
|
|
|
META_VIRTUAL_CONTROL_MASK = 1 << 6,
|
|
|
|
META_VIRTUAL_ALT_MASK = 1 << 7,
|
|
|
|
META_VIRTUAL_META_MASK = 1 << 8,
|
|
|
|
META_VIRTUAL_SUPER_MASK = 1 << 9,
|
|
|
|
META_VIRTUAL_HYPER_MASK = 1 << 10,
|
|
|
|
META_VIRTUAL_MOD2_MASK = 1 << 11,
|
|
|
|
META_VIRTUAL_MOD3_MASK = 1 << 12,
|
|
|
|
META_VIRTUAL_MOD4_MASK = 1 << 13,
|
|
|
|
META_VIRTUAL_MOD5_MASK = 1 << 14
|
|
|
|
} MetaVirtualModifier;
|
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaDirection:
|
|
|
|
* @META_DIRECTION_LEFT: Left
|
|
|
|
* @META_DIRECTION_RIGHT: Right
|
|
|
|
* @META_DIRECTION_TOP: Top
|
|
|
|
* @META_DIRECTION_BOTTOM: Bottom
|
|
|
|
* @META_DIRECTION_UP: Up
|
|
|
|
* @META_DIRECTION_DOWN: Down
|
|
|
|
* @META_DIRECTION_HORIZONTAL: Horizontal
|
|
|
|
* @META_DIRECTION_VERTICAL: Vertical
|
|
|
|
*/
|
|
|
|
|
Merge of all the changes on the constraints_experiments branch. This is
2005-11-18 Elijah Newren <newren@gmail.com>
Merge of all the changes on the constraints_experiments branch.
This is just a summary, to get the full ChangeLog of those
changes (approx. 2000 lines):
cvs -q -z3 update -Pd -r constraints_experiments
cvs -q -z3 diff -pu -r CONSTRAINTS_EXPERIMENTS_BRANCHPOINT ChangeLog
Bugs fixed:
unfiled - constraints.c is overly complicated[1]
unfiled - constraints.c is not robust when all constraints
cannot simultaneously be met (constraints need to be
prioritized)
unfiled - keep-titlebar-onscreen constraint is decoration
unaware (since get_outermost_onscreen_positions()
forgets to include decorations)
unfiled - keyboard snap-moving and snap-resizing snap to hidden
edges
109553 - gravity w/ simultaneous move & resize doesn't work
113601 - maximize vertical and horizontal should toggle and be
constrained
122196 - windows show up under vertical panels
122670 - jerky/random resizing of window via keyboard[2]
124582 - keyboard and mouse snap-resizing and snap-moving
erroneously moves the window multidimensionally
136307 - don't allow apps to resize themselves off the screen
(*cough* filechooser *cough*)
142016, 143784 - windows should not span multiple xineramas
unless placed there by the user
143145 - clamp new windows to screensize and force them
onscreen, if they'll fit
144126 - Handle pathological strut lists sanely[3]
149867 - fixed aspect ratio windows are difficult to resize[4]
152898 - make screen edges consistent; allow easy slamming of
windows into the left, right, and bottom edges of the
screen too.
154706 - bouncing weirdness at screen edge with keyboard moving
or resizing
156699 - avoid struts when placing windows, if possible (nasty
a11y blocker)
302456 - dragging offscreen too restrictive
304857 - wireframe moving off the top of the screen is misleading
308521 - make uni-directional resizing easier with
alt-middle-drag and prevent the occasional super
annoying resize-the-wrong-side(s) behavior
312007 - snap-resize moves windows with a minimum size
constraint
312104 - resizing the top of a window can cause the bottom to
grow
319351 - don't instantly snap on mouse-move-snapping, remove
braindeadedness of having order of releasing shift and
releasing button press matter so much
[1] fixed in my opinion, anyway.
[2] Actually, it's not totally fixed--it's just annoying
instead of almost completely unusable. Matthias had a
suggestion that may fix the remainder of the problems (see
http://tinyurl.com/bwzuu).
[3] This bug was originally about not-quite-so-pathological
cases but was left open for the worse cases. The code from
the branch handles the remainder of the cases mentioned in
this bug.
[4] Actually, although it's far better there's still some minor
issues left: a slight drift that's only noticeable after
lots of resizing, and potential problems with partially
onscreen constraints due to not clearing any
fixed_directions flags (aspect ratio windows get resized in
both directions and thus aren't fixed in one of them)
New feature:
81704 - edge resistance for user move and resize operations;
in particular 3 different kinds of resistance are
implemented:
Pixel-Distance: window movement is resisted when it
aligns with an edge unless the movement is greater than
a threshold number of pixels
Timeout: window movement past an edge is prevented until
a certain amount of time has elapsed during the
operation since the first request to move it past that
edge
Keyboard-Buildup: when moving or resizing with the
keyboard, once a window is aligned with a certain edge
it cannot move past until the correct direction has
been pressed enough times (e.g. 2 or 3 times)
Major changes:
- constraints.c has been rewritten; very few lines of code from
the old version remain. There is a comment near the top of
the function explaining the basics of how the new framework
works. A more detailed explanation can be found in
doc/how-constraints-works.txt
- edge-resistance.[ch] are new files implementing edge-resistance.
- boxes.[ch] are new files containing low-level error-prone
functions used heavily in constraints.c and edge-resistance.c,
among various places throughout the code. testboxes.c
contains a thorough testsuite for the boxes.[ch] functions
compiled into a program, testboxes.
- meta_window_move_resize_internal() *must* be told the gravity
of the associated operation (if it's just a move operation,
the gravity will be ignored, but for resize and move+resize
the correct value is needed)
- the craziness of different values that
meta_window_move_resize_internal() accepts has been documented
in a large comment at the beginning of the function. It may
be possible to clean this up some, but until then things will
remain as they were before--caller beware.
- screen and xinerama usable areas (i.e. places not covered by
e.g. panels) are cached in the workspace now, as are the
screen and xinerama edges. These get updated with the
workarea in src/workspace.c:ensure_work_areas_validated()
2005-11-19 09:58:50 -05:00
|
|
|
/* Relative directions or sides seem to come up all over the place... */
|
|
|
|
/* FIXME: Replace
|
|
|
|
* screen.[ch]:MetaScreenDirection,
|
|
|
|
* workspace.[ch]:MetaMotionDirection,
|
|
|
|
* with the use of MetaDirection.
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
Patch from Carlo Wood to fix handling of unidirectional maximization and
2007-04-02 Elijah Newren <newren gmail com>
Patch from Carlo Wood to fix handling of unidirectional
maximization and partial struts. #358311.
* src/constraints.c (constrain_maximization):
determine target size for unidirectionally maximized windows by
determining how far they can be maximized without hitting
orthogonal struts. Avoids weird "empty spaces".
* src/boxes.[ch] (meta_rectangle_expand_to_avoiding_struts):
new function
2007-04-02 Elijah Newren <newren gmail com>
Make the strut lists (stored in workspaces) record both the
rectangle and the side that the strut is on. Lots of code
cleanups relating to struts.
* src/boxes.h (struct MetaStrut):
new struct for struts
* src/window.[ch] (struct MetaStruts, struct MetaWindow,
meta_window_update_struts):
overhaul to make window's struts remember their side as well as
their rectangular location, and just use a list instead of several
copies of near-identical code for left/right/top/bottom (allowing
us to nuke MetaStruts struct as well)
* src/testboxes.c (new_meta_strut, get_strut_list):
* src/workspace.c (ensure_work_areas_validated):
* src/boxes.c (meta_rectangle_get_minimal_spanning_set_for_region,
meta_rectangle_expand_to_avoiding_struts,
get_disjoint_strut_rect_list_in_region, fix_up_edges,
meta_rectangle_find_onscreen_edges,
meta_rectangle_find_nonintersected_xinerama_edges):
modify to handle struts being rectangle + side instead of just rectangle
* src/workspace.c (ensure_work_areas_validated):
simplify strut list creation considerably given MetaWindow change,
modify work_area computations to take advantage of region
computations being done (makes the code shorter as well as more
robust against pathological cases).
* src/util.[ch] (meta_free_gslist_and_elements):
new convenience function
* src/common.h (enum MetaDirection):
* src/edge-resistance.c (movement_towards_edge):
* src/boxes.c (meta_rectangle_edge_aligns,
rectangle_and_edge_intersection, split_edge):
Add more MetaDirection fields for convenience
* src/boxes.h (enum FixedDirections):
* src/constraints.c (setup_constraint_info, place_window_if_needed):
add a FIXED_DIRECTION_NONE to the FixedDirections enum to make
code more clear
svn path=/trunk/; revision=3144
2007-04-02 23:41:10 -04:00
|
|
|
META_DIRECTION_LEFT = 1 << 0,
|
|
|
|
META_DIRECTION_RIGHT = 1 << 1,
|
|
|
|
META_DIRECTION_TOP = 1 << 2,
|
|
|
|
META_DIRECTION_BOTTOM = 1 << 3,
|
|
|
|
|
|
|
|
/* Some aliases for making code more readable for various circumstances. */
|
|
|
|
META_DIRECTION_UP = META_DIRECTION_TOP,
|
|
|
|
META_DIRECTION_DOWN = META_DIRECTION_BOTTOM,
|
|
|
|
|
|
|
|
/* A few more definitions using aliases */
|
|
|
|
META_DIRECTION_HORIZONTAL = META_DIRECTION_LEFT | META_DIRECTION_RIGHT,
|
|
|
|
META_DIRECTION_VERTICAL = META_DIRECTION_UP | META_DIRECTION_DOWN,
|
2009-03-17 16:53:01 -04:00
|
|
|
} MetaDirection;
|
Patch from Carlo Wood to fix handling of unidirectional maximization and
2007-04-02 Elijah Newren <newren gmail com>
Patch from Carlo Wood to fix handling of unidirectional
maximization and partial struts. #358311.
* src/constraints.c (constrain_maximization):
determine target size for unidirectionally maximized windows by
determining how far they can be maximized without hitting
orthogonal struts. Avoids weird "empty spaces".
* src/boxes.[ch] (meta_rectangle_expand_to_avoiding_struts):
new function
2007-04-02 Elijah Newren <newren gmail com>
Make the strut lists (stored in workspaces) record both the
rectangle and the side that the strut is on. Lots of code
cleanups relating to struts.
* src/boxes.h (struct MetaStrut):
new struct for struts
* src/window.[ch] (struct MetaStruts, struct MetaWindow,
meta_window_update_struts):
overhaul to make window's struts remember their side as well as
their rectangular location, and just use a list instead of several
copies of near-identical code for left/right/top/bottom (allowing
us to nuke MetaStruts struct as well)
* src/testboxes.c (new_meta_strut, get_strut_list):
* src/workspace.c (ensure_work_areas_validated):
* src/boxes.c (meta_rectangle_get_minimal_spanning_set_for_region,
meta_rectangle_expand_to_avoiding_struts,
get_disjoint_strut_rect_list_in_region, fix_up_edges,
meta_rectangle_find_onscreen_edges,
meta_rectangle_find_nonintersected_xinerama_edges):
modify to handle struts being rectangle + side instead of just rectangle
* src/workspace.c (ensure_work_areas_validated):
simplify strut list creation considerably given MetaWindow change,
modify work_area computations to take advantage of region
computations being done (makes the code shorter as well as more
robust against pathological cases).
* src/util.[ch] (meta_free_gslist_and_elements):
new convenience function
* src/common.h (enum MetaDirection):
* src/edge-resistance.c (movement_towards_edge):
* src/boxes.c (meta_rectangle_edge_aligns,
rectangle_and_edge_intersection, split_edge):
Add more MetaDirection fields for convenience
* src/boxes.h (enum FixedDirections):
* src/constraints.c (setup_constraint_info, place_window_if_needed):
add a FIXED_DIRECTION_NONE to the FixedDirections enum to make
code more clear
svn path=/trunk/; revision=3144
2007-04-02 23:41:10 -04:00
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaMotionDirection:
|
|
|
|
* @META_MOTION_UP: Upwards motion
|
|
|
|
* @META_MOTION_DOWN: Downwards motion
|
|
|
|
* @META_MOTION_LEFT: Motion to the left
|
|
|
|
* @META_MOTION_RIGHT: Motion to the right
|
|
|
|
* @META_MOTION_UP_LEFT: Motion up and to the left
|
|
|
|
* @META_MOTION_UP_RIGHT: Motion up and to the right
|
|
|
|
* @META_MOTION_DOWN_LEFT: Motion down and to the left
|
|
|
|
* @META_MOTION_DOWN_RIGHT: Motion down and to the right
|
|
|
|
*/
|
|
|
|
|
2009-07-02 11:19:02 -04:00
|
|
|
/* Negative to avoid conflicting with real workspace
|
|
|
|
* numbers
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_MOTION_UP = -1,
|
|
|
|
META_MOTION_DOWN = -2,
|
|
|
|
META_MOTION_LEFT = -3,
|
|
|
|
META_MOTION_RIGHT = -4,
|
|
|
|
/* These are only used for effects */
|
|
|
|
META_MOTION_UP_LEFT = -5,
|
|
|
|
META_MOTION_UP_RIGHT = -6,
|
|
|
|
META_MOTION_DOWN_LEFT = -7,
|
|
|
|
META_MOTION_DOWN_RIGHT = -8
|
|
|
|
} MetaMotionDirection;
|
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaSide:
|
|
|
|
* @META_SIDE_LEFT: Left side
|
|
|
|
* @META_SIDE_RIGHT: Right side
|
|
|
|
* @META_SIDE_TOP: Top side
|
|
|
|
* @META_SIDE_BOTTOM: Bottom side
|
|
|
|
*/
|
|
|
|
|
2009-03-17 16:53:01 -04:00
|
|
|
/* Sometimes we want to talk about sides instead of directions; note
|
|
|
|
* that the values must be as follows or meta_window_update_struts()
|
|
|
|
* won't work. Using these values also is a safety blanket since
|
|
|
|
* MetaDirection used to be used as a side.
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
Patch from Carlo Wood to fix handling of unidirectional maximization and
2007-04-02 Elijah Newren <newren gmail com>
Patch from Carlo Wood to fix handling of unidirectional
maximization and partial struts. #358311.
* src/constraints.c (constrain_maximization):
determine target size for unidirectionally maximized windows by
determining how far they can be maximized without hitting
orthogonal struts. Avoids weird "empty spaces".
* src/boxes.[ch] (meta_rectangle_expand_to_avoiding_struts):
new function
2007-04-02 Elijah Newren <newren gmail com>
Make the strut lists (stored in workspaces) record both the
rectangle and the side that the strut is on. Lots of code
cleanups relating to struts.
* src/boxes.h (struct MetaStrut):
new struct for struts
* src/window.[ch] (struct MetaStruts, struct MetaWindow,
meta_window_update_struts):
overhaul to make window's struts remember their side as well as
their rectangular location, and just use a list instead of several
copies of near-identical code for left/right/top/bottom (allowing
us to nuke MetaStruts struct as well)
* src/testboxes.c (new_meta_strut, get_strut_list):
* src/workspace.c (ensure_work_areas_validated):
* src/boxes.c (meta_rectangle_get_minimal_spanning_set_for_region,
meta_rectangle_expand_to_avoiding_struts,
get_disjoint_strut_rect_list_in_region, fix_up_edges,
meta_rectangle_find_onscreen_edges,
meta_rectangle_find_nonintersected_xinerama_edges):
modify to handle struts being rectangle + side instead of just rectangle
* src/workspace.c (ensure_work_areas_validated):
simplify strut list creation considerably given MetaWindow change,
modify work_area computations to take advantage of region
computations being done (makes the code shorter as well as more
robust against pathological cases).
* src/util.[ch] (meta_free_gslist_and_elements):
new convenience function
* src/common.h (enum MetaDirection):
* src/edge-resistance.c (movement_towards_edge):
* src/boxes.c (meta_rectangle_edge_aligns,
rectangle_and_edge_intersection, split_edge):
Add more MetaDirection fields for convenience
* src/boxes.h (enum FixedDirections):
* src/constraints.c (setup_constraint_info, place_window_if_needed):
add a FIXED_DIRECTION_NONE to the FixedDirections enum to make
code more clear
svn path=/trunk/; revision=3144
2007-04-02 23:41:10 -04:00
|
|
|
META_SIDE_LEFT = META_DIRECTION_LEFT,
|
|
|
|
META_SIDE_RIGHT = META_DIRECTION_RIGHT,
|
|
|
|
META_SIDE_TOP = META_DIRECTION_TOP,
|
|
|
|
META_SIDE_BOTTOM = META_DIRECTION_BOTTOM
|
2009-03-17 16:53:01 -04:00
|
|
|
} MetaSide;
|
2002-10-03 22:28:57 -04:00
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaButtonFunction:
|
|
|
|
* @META_BUTTON_FUNCTION_MENU: Menu
|
|
|
|
* @META_BUTTON_FUNCTION_MINIMIZE: Minimize
|
|
|
|
* @META_BUTTON_FUNCTION_MAXIMIZE: Maximize
|
|
|
|
* @META_BUTTON_FUNCTION_CLOSE: Close
|
|
|
|
* @META_BUTTON_FUNCTION_SHADE: Shade
|
|
|
|
* @META_BUTTON_FUNCTION_ABOVE: Above
|
|
|
|
* @META_BUTTON_FUNCTION_STICK: Stick
|
|
|
|
* @META_BUTTON_FUNCTION_UNSHADE: Unshade
|
|
|
|
* @META_BUTTON_FUNCTION_UNABOVE: Unabove
|
|
|
|
* @META_BUTTON_FUNCTION_UNSTICK: Unstick
|
|
|
|
* @META_BUTTON_FUNCTION_LAST: Marks the end of the #MetaButtonFunction enumeration
|
|
|
|
*
|
|
|
|
* Function a window button can have. Note, you can't add stuff here
|
2002-10-03 22:28:57 -04:00
|
|
|
* without extending the theme format to draw a new function and
|
|
|
|
* breaking all existing themes.
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_BUTTON_FUNCTION_MENU,
|
|
|
|
META_BUTTON_FUNCTION_MINIMIZE,
|
|
|
|
META_BUTTON_FUNCTION_MAXIMIZE,
|
|
|
|
META_BUTTON_FUNCTION_CLOSE,
|
Added "above" to the list of flags a frame can have, so that we know when
* common.h: Added "above" to the list of flags a frame can have, so
that we know when to mark it as always on top. Added six grab ops,
one to do and one to undo each of the three new titlebar buttons
(shade, above, stick). Added six new button functions, similarly.
(#96229)
* frame.c (meta_frame_get_flags): If a frame has the WM_STATE_ABOVE X
attribute, set META_FRAME_ABOVE in its flags.
* frames.c (meta_frames_apply_shapes): Allow variable amounts of
rounding. (#113162)
* frames.c (show_tip_now, meta_frames_paint_to_drawable, control_rect,
get_control): extend handling of existing buttons to the
3*2 new kinds of button. (#96229)
* frames.c (meta_frames_button_press_event): translate clicks on the 3*2
new kinds of button to the new grab ops. (#96229)
* frames.c (meta_frames_button_release_event): implement the various
actions for the 3*2 new kinds of button. (#96229)
* frames.c (meta_frames_update_prelit_control,
meta_frames_motion_notify_event): extend existing motion
notifications for buttons to the 3*2 new kinds of button. (#96229)
* frames.c (meta_frames_set_window_background): handle specified
background colours and alpha transparency. (#151261)
* frames.h (MetaFrameControl): New control types for the 3*2 new kinds
of button. (#96229)
* iconcache.[ch] (meta_read_icons): use theme's fallback icons if a
window has no icon; use metacity's fallback icons only if the theme
does not provide any. (#11363)
* iconcache.[ch] (meta_invalidate_default_icons (new function)): clear
icon cache on windows using default icons, and update them. (#11363)
* main.c (main): added \n to error message.
* prefs.c (button_function_from_string): extend for 3 new button
types. (#96229)
* prefs.c (button_opposite_function (new function)): return a button
function's inverse (shade -> unshade, etc) (#96229)
* prefs.c (update_button_layout): allocate space for a button's
inverse, if it has one. (#96229)
* theme-parser.c (ParseState): add state for fallback icons (#11363)
* theme-parser.c (ParseInfo): add format_version; remove
menu_icon_* (#114305)
* theme-parser.c (parse_positive_integer): add lookup for integer
constants (#331356)
* theme-parser.c (parse_rounding (new function)): parse window
rounding amount (#113162)
* theme-parser.c (parse_alpha): don't set error if the number can't
be parsed since it'll already be set; change tolerance in comparison
from 1e6 to 1e-6
* theme-parser.c (parse_color (new function)): parse colour, including
possible constant lookup.
* theme-parser.c (parse_toplevel_element): allow defining of various
new kinds of constant; allow
hide_buttons (#121639) and more detailed rounding attributes on
<frame_geometry> (#113162); allow background and alpha attributes on
<frame_style>; (#151261) remove support for <menu_icon> except as
stub; (#114305) add support for loading stock images (#113465); add
support for <fallback>. (#11363))
* theme-parser.c (parse_draw_op_element): add from and to attribute
for arcs. (#121603)
* theme-parser.c (parse_style_element): add check for theme version
supporting a button function. (#96229)
* theme-parser.c (parse_style_set_element): add ability for shaded
windows to be resizable (#114304)
* theme-parser.c (meta_theme_load): add theme versioning routine.
* theme.c ( meta_frame_layout_get_borders): return rectangles for
the new 3*2 kinds of button, except where they're
inapplicable. (#96229)
* theme.c (meta_frame_layout_calc_geometry): don't format buttons on
windows with no buttons (#121639); strip the 3*2 new kinds of button
correctly (#96229); allow variable amounts of rounding (#113162).
* theme.c (meta_frame_style_new): set alpha to 255 by
default. (#151261)
* theme.c (meta_frame_style_unref): free colour spec if
allocated. (#151261)
* theme.c (meta_frame_style_validate): it's only an error not to
include a button if that button is valid in the current
theme. (#96229)
* theme.c (button_rect): return rectangles for the new 3*2 kinds
of button. (#96229)
* theme.c (meta_frame_style_set_unref): free differently resizable
shaded styles. (#114304)
* theme.c (get_style): look up differently resizable styles
for shaded windows. (#114304)
* theme.c (free_menu_ops (removed function), get_menu_icon
(removed function), meta_theme_draw_menu_icon (removed function),
meta_menu_icon_type_from_string (removed function),
meta_menu_icon_type_to_string (removed function),
meta_theme_free, meta_theme_validate): removed menu icon code. (#114305)
* theme.c (meta_theme_load_image): add size_of_theme_icons
parameter. (#113465)
* theme.c (meta_theme_define_color_constant (new function),
meta_theme_lookup_color_constant (new function)): allow
definition of colour constants. (#129747)
* theme.c (meta_button_type_from_string, meta_button_type_to_string):
add the 3*2 new kinds of button. (#96229)
* theme.c (meta_theme_earliest_version_with_button (new function)):
return the theme version each button was introduced in. (#96229)
* theme.h ( MetaFrameLayout): add "hide_buttons" flag (#121639) and
corner radiuses. (#113162)
* theme.h (MetaFrameGeometry): add rectangles for the 3*2 new
buttons. (#96229)
* theme.h (MetaButtonType): the 3*2 new buttons. (#96229)
* theme.h (MetaFrameStyle): add window_background_color and
window_background_alpha so that we can specify background on a
<frame_style>. (#151261)
* theme.h (MetaFrameStyleSet): shaded_styles gets resize
dimension. (#114304)
* theme.h (MetaTheme): added format_version, color_constants
hash, (#129747) fallback_icon and fallback_mini_icon, (#11363)
and removed menu_icons. (#114305)
* theme.h (META_THEME_ALLOWS (new macro)): return whether a theme
supports a given feature. Also, several macros representing
new features in v2.
* ui.c (meta_ui_set_current_theme)): also invalidate default
icons. (#11363)
* window.[ch] (meta_window_update_icon_now)): became
non-static. (#11363)
2006-10-07 12:56:47 -04:00
|
|
|
META_BUTTON_FUNCTION_SHADE,
|
|
|
|
META_BUTTON_FUNCTION_ABOVE,
|
|
|
|
META_BUTTON_FUNCTION_STICK,
|
|
|
|
META_BUTTON_FUNCTION_UNSHADE,
|
|
|
|
META_BUTTON_FUNCTION_UNABOVE,
|
|
|
|
META_BUTTON_FUNCTION_UNSTICK,
|
2002-10-03 22:28:57 -04:00
|
|
|
META_BUTTON_FUNCTION_LAST
|
|
|
|
} MetaButtonFunction;
|
|
|
|
|
|
|
|
#define MAX_BUTTONS_PER_CORNER META_BUTTON_FUNCTION_LAST
|
|
|
|
|
2012-11-28 17:31:50 -05:00
|
|
|
/* Keep array size in sync with MAX_BUTTONS_PER_CORNER */
|
|
|
|
/**
|
|
|
|
* MetaButtonLayout:
|
|
|
|
* @left_buttons: (array fixed-size=10):
|
|
|
|
* @right_buttons: (array fixed-size=10):
|
|
|
|
* @left_buttons_has_spacer: (array fixed-size=10):
|
|
|
|
* @right_buttons_has_spacer: (array fixed-size=10):
|
|
|
|
*/
|
2002-10-03 22:28:57 -04:00
|
|
|
typedef struct _MetaButtonLayout MetaButtonLayout;
|
|
|
|
struct _MetaButtonLayout
|
|
|
|
{
|
|
|
|
/* buttons in the group on the left side */
|
|
|
|
MetaButtonFunction left_buttons[MAX_BUTTONS_PER_CORNER];
|
2008-02-29 15:41:07 -05:00
|
|
|
gboolean left_buttons_has_spacer[MAX_BUTTONS_PER_CORNER];
|
|
|
|
|
2002-10-03 22:28:57 -04:00
|
|
|
/* buttons in the group on the right side */
|
|
|
|
MetaButtonFunction right_buttons[MAX_BUTTONS_PER_CORNER];
|
2008-02-29 15:41:07 -05:00
|
|
|
gboolean right_buttons_has_spacer[MAX_BUTTONS_PER_CORNER];
|
2002-10-03 22:28:57 -04:00
|
|
|
};
|
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaFrameBorders:
|
|
|
|
* @visible: inner visible portion of frame border
|
|
|
|
* @invisible: outer invisible portion of frame border
|
|
|
|
* @total: sum of the two borders above
|
|
|
|
*/
|
2011-07-12 00:37:41 -04:00
|
|
|
typedef struct _MetaFrameBorders MetaFrameBorders;
|
|
|
|
struct _MetaFrameBorders
|
|
|
|
{
|
|
|
|
/* The frame border is made up of two pieces - an inner visible portion
|
|
|
|
* and an outer portion that is invisible but responds to events.
|
|
|
|
*/
|
|
|
|
GtkBorder visible;
|
2011-07-12 00:55:50 -04:00
|
|
|
GtkBorder invisible;
|
|
|
|
|
|
|
|
/* For convenience, we have a "total" border which is equal to the sum
|
|
|
|
* of the two borders above. */
|
|
|
|
GtkBorder total;
|
2011-07-12 00:37:41 -04:00
|
|
|
};
|
2011-07-12 00:59:12 -04:00
|
|
|
|
|
|
|
/* sets all dimensions to zero */
|
|
|
|
void meta_frame_borders_clear (MetaFrameBorders *self);
|
|
|
|
|
2001-09-17 00:42:37 -04:00
|
|
|
/* should investigate changing these to whatever most apps use */
|
2012-12-03 14:58:13 -05:00
|
|
|
#define META_ICON_WIDTH 96
|
|
|
|
#define META_ICON_HEIGHT 96
|
2001-09-17 00:42:37 -04:00
|
|
|
#define META_MINI_ICON_WIDTH 16
|
|
|
|
#define META_MINI_ICON_HEIGHT 16
|
|
|
|
|
2008-08-14 10:01:51 -04:00
|
|
|
#define META_DEFAULT_ICON_NAME "window"
|
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
/* Main loop priorities determine when activity in the GLib
|
|
|
|
* will take precendence over the others. Priorities are sometimes
|
|
|
|
* used to enforce ordering: give A a higher priority than B if
|
|
|
|
* A must occur before B. But that poses a problem since then
|
|
|
|
* if A occurs frequently enough, B will never occur.
|
|
|
|
*
|
|
|
|
* Anything we want to occur more or less immediately should
|
|
|
|
* have a priority of G_PRIORITY_DEFAULT. When we want to
|
|
|
|
* coelesce multiple things together, the appropriate place to
|
|
|
|
* do it is usually META_PRIORITY_BEFORE_REDRAW.
|
|
|
|
*
|
2009-09-25 15:47:22 -04:00
|
|
|
* Note that its usually better to use meta_later_add() rather
|
|
|
|
* than calling g_idle_add() directly; this will make sure things
|
|
|
|
* get run when added from a clutter event handler without
|
|
|
|
* waiting for another repaint cycle.
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
*
|
|
|
|
* If something has a priority lower than the redraw priority
|
|
|
|
* (such as a default priority idle), then it may be arbitrarily
|
|
|
|
* delayed. This happens if the screen is updating rapidly: we
|
|
|
|
* are spending all our time either redrawing or waiting for a
|
|
|
|
* vblank-synced buffer swap. (When X is improved to allow
|
|
|
|
* clutter to do the buffer-swap asychronously, this will get
|
|
|
|
* better.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* G_PRIORITY_DEFAULT:
|
|
|
|
* events
|
|
|
|
* many timeouts
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* GTK_PRIORITY_RESIZE: (G_PRIORITY_HIGH_IDLE + 10) */
|
|
|
|
#define META_PRIORITY_RESIZE (G_PRIORITY_HIGH_IDLE + 15)
|
|
|
|
/* GTK_PRIORITY_REDRAW: (G_PRIORITY_HIGH_IDLE + 20) */
|
|
|
|
|
|
|
|
#define META_PRIORITY_BEFORE_REDRAW (G_PRIORITY_HIGH_IDLE + 40)
|
|
|
|
/* calc-showing idle
|
|
|
|
* update-icon idle
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* CLUTTER_PRIORITY_REDRAW: (G_PRIORITY_HIGH_IDLE + 50) */
|
|
|
|
#define META_PRIORITY_REDRAW (G_PRIORITY_HIGH_IDLE + 50)
|
|
|
|
|
|
|
|
/* ==== Anything below here can be starved arbitrarily ==== */
|
|
|
|
|
|
|
|
/* G_PRIORITY_DEFAULT_IDLE:
|
|
|
|
* Mutter plugin unloading
|
|
|
|
*/
|
|
|
|
|
on unminimize, queue calc_showing on all transients
2002-05-05 Havoc Pennington <hp@pobox.com>
* src/window.c (meta_window_unminimize): on unminimize, queue
calc_showing on all transients
(meta_window_activate): on activate, unminimize all a window's
ancestors, not just the window itself.
* src/workspace.c (set_work_area_hint): don't increment "tmp" by
16 unsigned long, increment by 4
* src/window.c (meta_window_free): if a window isn't minimized,
restore its WM_STATE to NormalState instead of IconicState,
since IconicState on initial window map means that the window
should be minimized.
* src/workspace.c (meta_workspace_invalidate_work_area): queue an
idle to recompute the work area hint.
(set_work_area_hint): we need 4*num_workspaces ints, not just
num_workspaces.
* src/screen.c (meta_screen_new): add work_area_idle field,
handle it on screen shutdown
* src/common.h (META_PRIORITY_PREFS_NOTIFY,
META_PRIORITY_WORK_AREA_HINT): define some idle priorities
* src/window.c (meta_window_calc_showing): hide windows if
their parent window is minimized
(meta_window_minimize): also queue_calc_showing on all
transients of the window being minimized
* src/place.c (constrain_placement): function to apply
placement-time-only constraints, such as "not off the left of the
screen"
(meta_window_place): put dialogs down a bit over their parent,
not right at the top.
(meta_window_place): when centering a dialog, center it
on the current xinerama screen, rather than the entire
screen.
* src/screen.c (meta_screen_get_current_xinerama): new function,
but not implemented
2002-05-05 01:41:13 -04:00
|
|
|
#define META_PRIORITY_PREFS_NOTIFY (G_PRIORITY_DEFAULT_IDLE + 10)
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
|
|
|
|
/************************************************************/
|
on unminimize, queue calc_showing on all transients
2002-05-05 Havoc Pennington <hp@pobox.com>
* src/window.c (meta_window_unminimize): on unminimize, queue
calc_showing on all transients
(meta_window_activate): on activate, unminimize all a window's
ancestors, not just the window itself.
* src/workspace.c (set_work_area_hint): don't increment "tmp" by
16 unsigned long, increment by 4
* src/window.c (meta_window_free): if a window isn't minimized,
restore its WM_STATE to NormalState instead of IconicState,
since IconicState on initial window map means that the window
should be minimized.
* src/workspace.c (meta_workspace_invalidate_work_area): queue an
idle to recompute the work area hint.
(set_work_area_hint): we need 4*num_workspaces ints, not just
num_workspaces.
* src/screen.c (meta_screen_new): add work_area_idle field,
handle it on screen shutdown
* src/common.h (META_PRIORITY_PREFS_NOTIFY,
META_PRIORITY_WORK_AREA_HINT): define some idle priorities
* src/window.c (meta_window_calc_showing): hide windows if
their parent window is minimized
(meta_window_minimize): also queue_calc_showing on all
transients of the window being minimized
* src/place.c (constrain_placement): function to apply
placement-time-only constraints, such as "not off the left of the
screen"
(meta_window_place): put dialogs down a bit over their parent,
not right at the top.
(meta_window_place): when centering a dialog, center it
on the current xinerama screen, rather than the entire
screen.
* src/screen.c (meta_screen_get_current_xinerama): new function,
but not implemented
2002-05-05 01:41:13 -04:00
|
|
|
|
2002-05-28 23:11:24 -04:00
|
|
|
#define POINT_IN_RECT(xcoord, ycoord, rect) \
|
|
|
|
((xcoord) >= (rect).x && \
|
|
|
|
(xcoord) < ((rect).x + (rect).width) && \
|
|
|
|
(ycoord) >= (rect).y && \
|
|
|
|
(ycoord) < ((rect).y + (rect).height))
|
|
|
|
|
2009-03-12 17:07:27 -04:00
|
|
|
/**
|
2011-11-02 11:34:45 -04:00
|
|
|
* MetaStackLayer:
|
2013-02-15 13:42:08 -05:00
|
|
|
* @META_LAYER_DESKTOP: Desktop layer
|
|
|
|
* @META_LAYER_BOTTOM: Bottom layer
|
|
|
|
* @META_LAYER_NORMAL: Normal layer
|
|
|
|
* @META_LAYER_TOP: Top layer
|
|
|
|
* @META_LAYER_DOCK: Dock layer
|
|
|
|
* @META_LAYER_FULLSCREEN: Fullscreen layer
|
|
|
|
* @META_LAYER_FOCUSED_WINDOW: Focused window layer
|
|
|
|
* @META_LAYER_OVERRIDE_REDIRECT: Override-redirect layer
|
|
|
|
* @META_LAYER_LAST: Marks the end of the #MetaStackLayer enumeration
|
|
|
|
*
|
2009-03-12 17:07:27 -04:00
|
|
|
* Layers a window can be in.
|
|
|
|
* These MUST be in the order of stacking.
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_LAYER_DESKTOP = 0,
|
|
|
|
META_LAYER_BOTTOM = 1,
|
|
|
|
META_LAYER_NORMAL = 2,
|
|
|
|
META_LAYER_TOP = 4, /* Same as DOCK; see EWMH and bug 330717 */
|
|
|
|
META_LAYER_DOCK = 4,
|
|
|
|
META_LAYER_FULLSCREEN = 5,
|
|
|
|
META_LAYER_FOCUSED_WINDOW = 6,
|
|
|
|
META_LAYER_OVERRIDE_REDIRECT = 7,
|
|
|
|
META_LAYER_LAST = 8
|
|
|
|
} MetaStackLayer;
|
|
|
|
|
2001-06-17 23:24:25 -04:00
|
|
|
#endif
|