2008-05-18 20:00:09 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Iain Holmes
|
|
|
|
*
|
|
|
|
* 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_WINDOW_H
|
|
|
|
#define META_WINDOW_H
|
|
|
|
|
2008-11-07 04:57:00 -05:00
|
|
|
#include <glib-object.h>
|
2011-03-22 15:36:12 -04:00
|
|
|
#include <cairo.h>
|
2008-05-18 20:00:09 -04:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2011-03-05 19:29:12 -05:00
|
|
|
#include <meta/boxes.h>
|
|
|
|
#include <meta/types.h>
|
2008-05-18 20:00:09 -04:00
|
|
|
|
2008-08-18 10:42:38 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_WINDOW_NORMAL,
|
|
|
|
META_WINDOW_DESKTOP,
|
|
|
|
META_WINDOW_DOCK,
|
|
|
|
META_WINDOW_DIALOG,
|
|
|
|
META_WINDOW_MODAL_DIALOG,
|
|
|
|
META_WINDOW_TOOLBAR,
|
|
|
|
META_WINDOW_MENU,
|
|
|
|
META_WINDOW_UTILITY,
|
|
|
|
META_WINDOW_SPLASHSCREEN,
|
2008-11-23 14:28:40 -05:00
|
|
|
|
|
|
|
/* override redirect window types: */
|
|
|
|
META_WINDOW_DROPDOWN_MENU,
|
|
|
|
META_WINDOW_POPUP_MENU,
|
|
|
|
META_WINDOW_TOOLTIP,
|
|
|
|
META_WINDOW_NOTIFICATION,
|
|
|
|
META_WINDOW_COMBO,
|
|
|
|
META_WINDOW_DND,
|
|
|
|
META_WINDOW_OVERRIDE_OTHER
|
2008-08-18 10:42:38 -04:00
|
|
|
} MetaWindowType;
|
|
|
|
|
2008-09-18 11:09:11 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_MAXIMIZE_HORIZONTAL = 1 << 0,
|
|
|
|
META_MAXIMIZE_VERTICAL = 1 << 1
|
|
|
|
} MetaMaximizeFlags;
|
|
|
|
|
2008-11-07 04:57:00 -05:00
|
|
|
#define META_TYPE_WINDOW (meta_window_get_type ())
|
|
|
|
#define META_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), META_TYPE_WINDOW, MetaWindow))
|
|
|
|
#define META_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), META_TYPE_WINDOW, MetaWindowClass))
|
2009-06-10 00:43:43 -04:00
|
|
|
#define META_IS_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), META_TYPE_WINDOW))
|
2008-11-07 04:57:00 -05:00
|
|
|
#define META_IS_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), META_TYPE_WINDOW))
|
|
|
|
#define META_WINDOW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), META_TYPE_WINDOW, MetaWindowClass))
|
|
|
|
|
|
|
|
typedef struct _MetaWindowClass MetaWindowClass;
|
|
|
|
|
|
|
|
GType meta_window_get_type (void);
|
|
|
|
|
2008-05-18 20:00:09 -04:00
|
|
|
MetaFrame *meta_window_get_frame (MetaWindow *window);
|
|
|
|
gboolean meta_window_has_focus (MetaWindow *window);
|
2010-11-11 16:04:31 -05:00
|
|
|
gboolean meta_window_appears_focused (MetaWindow *window);
|
2008-05-18 20:00:09 -04:00
|
|
|
gboolean meta_window_is_shaded (MetaWindow *window);
|
2009-08-14 05:42:56 -04:00
|
|
|
gboolean meta_window_is_override_redirect (MetaWindow *window);
|
2009-08-28 12:39:55 -04:00
|
|
|
gboolean meta_window_is_skip_taskbar (MetaWindow *window);
|
2008-05-18 20:00:09 -04:00
|
|
|
MetaRectangle *meta_window_get_rect (MetaWindow *window);
|
2011-06-29 13:37:04 -04:00
|
|
|
void meta_window_get_input_rect (const MetaWindow *window, MetaRectangle *rect);
|
2009-03-17 04:35:17 -04:00
|
|
|
void meta_window_get_outer_rect (const MetaWindow *window, MetaRectangle *rect);
|
2008-05-18 20:00:09 -04:00
|
|
|
MetaScreen *meta_window_get_screen (MetaWindow *window);
|
|
|
|
MetaDisplay *meta_window_get_display (MetaWindow *window);
|
|
|
|
Window meta_window_get_xwindow (MetaWindow *window);
|
2008-11-07 04:57:00 -05:00
|
|
|
MetaWindowType meta_window_get_window_type (MetaWindow *window);
|
|
|
|
Atom meta_window_get_window_type_atom (MetaWindow *window);
|
2008-09-18 11:09:11 -04:00
|
|
|
MetaWorkspace *meta_window_get_workspace (MetaWindow *window);
|
2011-02-28 09:21:35 -05:00
|
|
|
int meta_window_get_monitor (MetaWindow *window);
|
2008-09-18 11:09:11 -04:00
|
|
|
gboolean meta_window_is_on_all_workspaces (MetaWindow *window);
|
2008-10-24 05:07:24 -04:00
|
|
|
gboolean meta_window_is_hidden (MetaWindow *window);
|
|
|
|
void meta_window_activate (MetaWindow *window,guint32 current_time);
|
|
|
|
void meta_window_activate_with_workspace (MetaWindow *window,
|
|
|
|
guint32 current_time,
|
|
|
|
MetaWorkspace *workspace);
|
2008-10-30 04:30:42 -04:00
|
|
|
const char * meta_window_get_description (MetaWindow *window);
|
2009-05-29 13:26:18 -04:00
|
|
|
const char * meta_window_get_wm_class (MetaWindow *window);
|
2010-03-17 05:20:39 -04:00
|
|
|
const char * meta_window_get_wm_class_instance (MetaWindow *window);
|
2008-11-03 09:45:28 -05:00
|
|
|
gboolean meta_window_showing_on_its_workspace (MetaWindow *window);
|
|
|
|
|
2012-01-17 13:27:10 -05:00
|
|
|
const char * meta_window_get_gtk_application_id (MetaWindow *window);
|
|
|
|
const char * meta_window_get_gtk_unique_bus_name (MetaWindow *window);
|
|
|
|
const char * meta_window_get_gtk_application_object_path (MetaWindow *window);
|
|
|
|
const char * meta_window_get_gtk_window_object_path (MetaWindow *window);
|
|
|
|
const char * meta_window_get_gtk_app_menu_object_path (MetaWindow *window);
|
|
|
|
const char * meta_window_get_gtk_menubar_object_path (MetaWindow *window);
|
2011-11-25 18:42:41 -05:00
|
|
|
|
2011-03-09 10:01:44 -05:00
|
|
|
void meta_window_move(MetaWindow *window, gboolean user_op, int root_x_nw, int root_y_nw);
|
|
|
|
void meta_window_move_frame(MetaWindow *window, gboolean user_op, int root_x_nw, int root_y_nw);
|
2011-06-04 21:02:44 -04:00
|
|
|
void meta_window_move_resize_frame (MetaWindow *window, gboolean user_op, int root_x_nw, int root_y_nw, int w, int h);
|
2011-03-21 07:36:01 -04:00
|
|
|
void meta_window_move_to_monitor (MetaWindow *window, int monitor);
|
2011-03-09 10:01:44 -05:00
|
|
|
void meta_window_resize(MetaWindow *window, gboolean user_op, int w, int h);
|
|
|
|
|
2010-04-17 14:45:14 -04:00
|
|
|
void meta_window_set_demands_attention (MetaWindow *window);
|
|
|
|
void meta_window_unset_demands_attention (MetaWindow *window);
|
|
|
|
|
2008-11-19 07:30:45 -05:00
|
|
|
const char* meta_window_get_startup_id (MetaWindow *window);
|
2008-11-20 04:14:58 -05:00
|
|
|
void meta_window_change_workspace_by_index (MetaWindow *window,
|
|
|
|
gint space_index,
|
2008-11-25 10:34:07 -05:00
|
|
|
gboolean append,
|
|
|
|
guint32 timestamp);
|
2012-04-14 09:12:48 -04:00
|
|
|
void meta_window_change_workspace (MetaWindow *window,
|
|
|
|
MetaWorkspace *workspace);
|
2009-02-02 15:16:05 -05:00
|
|
|
GObject *meta_window_get_compositor_private (MetaWindow *window);
|
|
|
|
void meta_window_set_compositor_private (MetaWindow *window, GObject *priv);
|
2008-11-23 14:28:40 -05:00
|
|
|
void meta_window_configure_notify (MetaWindow *window, XConfigureEvent *event);
|
2009-01-12 07:30:31 -05:00
|
|
|
const char *meta_window_get_role (MetaWindow *window);
|
2009-03-12 17:07:27 -04:00
|
|
|
MetaStackLayer meta_window_get_layer (MetaWindow *window);
|
2009-03-19 12:01:32 -04:00
|
|
|
MetaWindow* meta_window_find_root_ancestor (MetaWindow *window);
|
2009-08-04 03:32:36 -04:00
|
|
|
gboolean meta_window_is_ancestor_of_transient (MetaWindow *window,
|
|
|
|
MetaWindow *transient);
|
2010-04-24 17:19:25 -04:00
|
|
|
|
|
|
|
typedef gboolean (*MetaWindowForeachFunc) (MetaWindow *window,
|
2012-11-16 15:23:47 -05:00
|
|
|
void *user_data);
|
2010-04-24 17:19:25 -04:00
|
|
|
|
|
|
|
void meta_window_foreach_transient (MetaWindow *window,
|
|
|
|
MetaWindowForeachFunc func,
|
|
|
|
void *user_data);
|
|
|
|
void meta_window_foreach_ancestor (MetaWindow *window,
|
|
|
|
MetaWindowForeachFunc func,
|
|
|
|
void *user_data);
|
|
|
|
|
2010-11-11 18:42:44 -05:00
|
|
|
MetaMaximizeFlags meta_window_get_maximized (MetaWindow *window);
|
|
|
|
gboolean meta_window_is_fullscreen (MetaWindow *window);
|
2011-03-09 07:04:18 -05:00
|
|
|
gboolean meta_window_is_on_primary_monitor (MetaWindow *window);
|
2012-08-30 02:40:18 -04:00
|
|
|
gboolean meta_window_requested_bypass_compositor (MetaWindow *window);
|
|
|
|
gboolean meta_window_requested_dont_bypass_compositor (MetaWindow *window);
|
2010-11-11 18:42:44 -05:00
|
|
|
|
2009-08-14 06:18:28 -04:00
|
|
|
gboolean meta_window_is_mapped (MetaWindow *window);
|
|
|
|
gboolean meta_window_toplevel_is_mapped (MetaWindow *window);
|
2009-03-31 17:29:48 -04:00
|
|
|
gboolean meta_window_get_icon_geometry (MetaWindow *window,
|
|
|
|
MetaRectangle *rect);
|
2009-04-27 08:21:39 -04:00
|
|
|
void meta_window_maximize (MetaWindow *window,
|
|
|
|
MetaMaximizeFlags directions);
|
|
|
|
void meta_window_unmaximize (MetaWindow *window,
|
|
|
|
MetaMaximizeFlags directions);
|
2009-06-10 00:14:19 -04:00
|
|
|
void meta_window_minimize (MetaWindow *window);
|
|
|
|
void meta_window_unminimize (MetaWindow *window);
|
2010-04-23 08:58:36 -04:00
|
|
|
void meta_window_raise (MetaWindow *window);
|
|
|
|
void meta_window_lower (MetaWindow *window);
|
2009-06-09 23:02:14 -04:00
|
|
|
const char *meta_window_get_title (MetaWindow *window);
|
2009-06-09 23:28:21 -04:00
|
|
|
MetaWindow *meta_window_get_transient_for (MetaWindow *window);
|
2009-10-07 06:56:49 -04:00
|
|
|
Window meta_window_get_transient_for_as_xid (MetaWindow *window);
|
2009-06-18 05:08:34 -04:00
|
|
|
void meta_window_delete (MetaWindow *window,
|
|
|
|
guint32 timestamp);
|
2009-09-18 20:50:11 -04:00
|
|
|
guint meta_window_get_stable_sequence (MetaWindow *window);
|
2009-08-30 20:04:48 -04:00
|
|
|
guint32 meta_window_get_user_time (MetaWindow *window);
|
2009-07-31 13:52:25 -04:00
|
|
|
int meta_window_get_pid (MetaWindow *window);
|
|
|
|
const char *meta_window_get_client_machine (MetaWindow *window);
|
2010-06-04 13:57:41 -04:00
|
|
|
gboolean meta_window_is_remote (MetaWindow *window);
|
2009-08-06 13:11:11 -04:00
|
|
|
gboolean meta_window_is_modal (MetaWindow *window);
|
window: make determination of attached dialog windows more consistent
Different bits of code were using slightly different checks to test
whether a window was an attached dialog. Add a new
meta_window_is_attached_dialog(), and use that everywhere.
Also, freeze the is-attached status when the window is first shown,
rather than recomputing it each time the caller asks, since this could
cause problems if a window changes its type after it has already been
attached, etc. However, if an attached window's parent is destroyed,
or an attached window changes its transient-for, then fix things up by
destroying the old MetaWindow and creating a new one (causing
compositor unmap and map events to be fired off, allowing the display
of the window to be fixed up).
Remove some code in display.c that tried to fix existing windows if
the gconf setting changed, but which didn't actually do anything (at
least under gnome-shell). However, if 654643 was fixed then the new
behavior with this patch would be that changing the gconf setting
would affect new dialogs, but not existing ones.
https://bugzilla.gnome.org/show_bug.cgi?id=646761
2011-04-05 10:14:52 -04:00
|
|
|
gboolean meta_window_is_attached_dialog (MetaWindow *window);
|
2010-01-18 05:12:17 -05:00
|
|
|
const char *meta_window_get_mutter_hints (MetaWindow *window);
|
2010-11-11 16:12:11 -05:00
|
|
|
|
|
|
|
MetaFrameType meta_window_get_frame_type (MetaWindow *window);
|
|
|
|
|
2011-03-22 15:36:12 -04:00
|
|
|
cairo_region_t *meta_window_get_frame_bounds (MetaWindow *window);
|
|
|
|
|
2012-02-24 11:08:55 -05:00
|
|
|
MetaWindow *meta_window_get_tile_match (MetaWindow *window);
|
|
|
|
|
2012-06-14 16:13:29 -04:00
|
|
|
void meta_window_make_fullscreen (MetaWindow *window);
|
|
|
|
void meta_window_unmake_fullscreen (MetaWindow *window);
|
|
|
|
void meta_window_make_above (MetaWindow *window);
|
|
|
|
void meta_window_unmake_above (MetaWindow *window);
|
|
|
|
void meta_window_shade (MetaWindow *window,
|
|
|
|
guint32 timestamp);
|
|
|
|
void meta_window_unshade (MetaWindow *window,
|
|
|
|
guint32 timestamp);
|
|
|
|
void meta_window_stick (MetaWindow *window);
|
|
|
|
void meta_window_unstick (MetaWindow *window);
|
|
|
|
|
|
|
|
void meta_window_kill (MetaWindow *window);
|
|
|
|
void meta_window_focus (MetaWindow *window,
|
|
|
|
guint32 timestamp);
|
|
|
|
|
|
|
|
void meta_window_begin_grab_op (MetaWindow *window,
|
|
|
|
MetaGrabOp op,
|
|
|
|
gboolean frame_action,
|
|
|
|
guint32 timestamp);
|
|
|
|
|
2008-05-18 20:00:09 -04:00
|
|
|
#endif
|