2006-10-01 18:30:10 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
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
|
|
|
/* Mutter interface for talking to GTK+ UI module */
|
2001-06-17 15:53:45 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_UI_H
|
|
|
|
#define META_UI_H
|
|
|
|
|
2001-08-06 03:58:49 -04:00
|
|
|
/* Don't include gtk.h or gdk.h here */
|
2001-06-18 02:11:53 -04:00
|
|
|
#include "common.h"
|
2001-06-19 23:01:26 -04:00
|
|
|
#include <X11/Xlib.h>
|
2001-09-11 00:37:10 -04:00
|
|
|
#include <X11/Xutil.h>
|
2001-06-19 23:01:26 -04:00
|
|
|
#include <glib.h>
|
2001-08-06 03:58:49 -04:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2001-06-17 15:53:45 -04:00
|
|
|
|
|
|
|
typedef struct _MetaUI MetaUI;
|
|
|
|
|
2001-06-19 23:01:26 -04:00
|
|
|
typedef gboolean (* MetaEventFunc) (XEvent *xevent, gpointer data);
|
|
|
|
|
2007-05-25 10:36:12 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_UI_DIRECTION_LTR,
|
|
|
|
META_UI_DIRECTION_RTL
|
|
|
|
} MetaUIDirection;
|
|
|
|
|
2001-06-17 15:53:45 -04:00
|
|
|
void meta_ui_init (int *argc, char ***argv);
|
|
|
|
|
2006-05-04 13:32:26 -04:00
|
|
|
Display* meta_ui_get_display (void);
|
2001-06-19 23:01:26 -04:00
|
|
|
|
|
|
|
void meta_ui_add_event_func (Display *xdisplay,
|
|
|
|
MetaEventFunc func,
|
|
|
|
gpointer data);
|
|
|
|
void meta_ui_remove_event_func (Display *xdisplay,
|
|
|
|
MetaEventFunc func,
|
|
|
|
gpointer data);
|
|
|
|
|
2001-06-17 23:24:25 -04:00
|
|
|
MetaUI* meta_ui_new (Display *xdisplay,
|
|
|
|
Screen *screen);
|
2001-06-17 15:53:45 -04:00
|
|
|
void meta_ui_free (MetaUI *ui);
|
|
|
|
|
2004-01-10 12:16:07 -05:00
|
|
|
void meta_ui_theme_get_frame_borders (MetaUI *ui,
|
|
|
|
MetaFrameType type,
|
|
|
|
MetaFrameFlags flags,
|
|
|
|
int *top_height,
|
|
|
|
int *bottom_height,
|
|
|
|
int *left_width,
|
|
|
|
int *right_width);
|
2001-06-17 23:24:25 -04:00
|
|
|
void meta_ui_get_frame_geometry (MetaUI *ui,
|
|
|
|
Window frame_xwindow,
|
|
|
|
int *top_height, int *bottom_height,
|
|
|
|
int *left_width, int *right_width);
|
2003-08-16 12:32:10 -04:00
|
|
|
Window meta_ui_create_frame_window (MetaUI *ui,
|
2003-11-15 23:19:18 -05:00
|
|
|
Display *xdisplay,
|
|
|
|
Visual *xvisual,
|
2003-08-16 12:32:10 -04:00
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
2009-06-13 16:45:32 -04:00
|
|
|
gint screen_no,
|
|
|
|
gulong *create_serial);
|
2003-08-16 12:32:10 -04:00
|
|
|
void meta_ui_destroy_frame_window (MetaUI *ui,
|
|
|
|
Window xwindow);
|
|
|
|
void meta_ui_move_resize_frame (MetaUI *ui,
|
|
|
|
Window frame,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height);
|
2001-07-03 22:10:54 -04:00
|
|
|
|
2001-06-19 23:01:26 -04:00
|
|
|
/* GDK insists on tracking map/unmap */
|
|
|
|
void meta_ui_map_frame (MetaUI *ui,
|
|
|
|
Window xwindow);
|
|
|
|
void meta_ui_unmap_frame (MetaUI *ui,
|
|
|
|
Window xwindow);
|
2001-06-17 23:24:25 -04:00
|
|
|
|
2002-01-27 00:27:11 -05:00
|
|
|
void meta_ui_unflicker_frame_bg (MetaUI *ui,
|
|
|
|
Window xwindow,
|
|
|
|
int target_width,
|
|
|
|
int target_height);
|
|
|
|
void meta_ui_reset_frame_bg (MetaUI *ui,
|
|
|
|
Window xwindow);
|
2001-06-17 23:24:25 -04:00
|
|
|
|
2003-01-05 02:51:02 -05:00
|
|
|
void meta_ui_apply_frame_shape (MetaUI *ui,
|
|
|
|
Window xwindow,
|
|
|
|
int new_window_width,
|
|
|
|
int new_window_height,
|
|
|
|
gboolean window_has_shape);
|
2002-05-30 20:02:54 -04:00
|
|
|
|
2001-06-17 23:24:25 -04:00
|
|
|
void meta_ui_queue_frame_draw (MetaUI *ui,
|
|
|
|
Window xwindow);
|
2001-06-17 15:53:45 -04:00
|
|
|
|
2001-06-19 23:01:26 -04:00
|
|
|
void meta_ui_set_frame_title (MetaUI *ui,
|
|
|
|
Window xwindow,
|
|
|
|
const char *title);
|
|
|
|
|
2002-05-09 18:34:00 -04:00
|
|
|
void meta_ui_repaint_frame (MetaUI *ui,
|
|
|
|
Window xwindow);
|
|
|
|
|
2001-06-23 01:49:35 -04:00
|
|
|
MetaWindowMenu* meta_ui_window_menu_new (MetaUI *ui,
|
|
|
|
Window client_xwindow,
|
|
|
|
MetaMenuOp ops,
|
|
|
|
MetaMenuOp insensitive,
|
2007-04-16 00:48:14 -04:00
|
|
|
unsigned long active_workspace,
|
2001-06-23 01:49:35 -04:00
|
|
|
int n_workspaces,
|
|
|
|
MetaWindowMenuFunc func,
|
|
|
|
gpointer data);
|
|
|
|
void meta_ui_window_menu_popup (MetaWindowMenu *menu,
|
|
|
|
int root_x,
|
|
|
|
int root_y,
|
|
|
|
int button,
|
|
|
|
guint32 timestamp);
|
|
|
|
void meta_ui_window_menu_free (MetaWindowMenu *menu);
|
|
|
|
|
|
|
|
|
2001-08-30 00:01:38 -04:00
|
|
|
/* FIXME these lack a display arg */
|
2001-08-19 21:42:44 -04:00
|
|
|
GdkPixbuf* meta_gdk_pixbuf_get_from_pixmap (GdkPixbuf *dest,
|
|
|
|
Pixmap xpixmap,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
|
|
|
int dest_x,
|
|
|
|
int dest_y,
|
|
|
|
int width,
|
|
|
|
int height);
|
|
|
|
|
2001-08-18 21:19:54 -04:00
|
|
|
/* Used when we have a server grab and draw all over everything,
|
|
|
|
* then we need to handle exposes after doing that, instead of
|
|
|
|
* during it
|
|
|
|
*/
|
|
|
|
void meta_ui_push_delay_exposes (MetaUI *ui);
|
|
|
|
void meta_ui_pop_delay_exposes (MetaUI *ui);
|
|
|
|
|
2001-08-19 14:09:10 -04:00
|
|
|
GdkPixbuf* meta_ui_get_default_window_icon (MetaUI *ui);
|
2001-09-15 20:30:45 -04:00
|
|
|
GdkPixbuf* meta_ui_get_default_mini_icon (MetaUI *ui);
|
2001-08-19 14:09:10 -04:00
|
|
|
|
2001-08-30 00:01:38 -04:00
|
|
|
gboolean meta_ui_window_should_not_cause_focus (Display *xdisplay,
|
|
|
|
Window xwindow);
|
2001-08-19 02:23:59 -04:00
|
|
|
|
2001-09-11 00:37:10 -04:00
|
|
|
char* meta_text_property_to_utf8 (Display *xdisplay,
|
|
|
|
const XTextProperty *prop);
|
|
|
|
|
2002-02-06 22:07:56 -05:00
|
|
|
void meta_ui_set_current_theme (const char *name,
|
|
|
|
gboolean force_reload);
|
|
|
|
gboolean meta_ui_have_a_theme (void);
|
|
|
|
|
2002-07-13 23:16:41 -04:00
|
|
|
gboolean meta_ui_parse_accelerator (const char *accel,
|
|
|
|
unsigned int *keysym,
|
Patch from Ed Catmur to fix keybindings with hex-values (coming from
2006-08-21 Elijah Newren <newren gmail com>
Patch from Ed Catmur to fix keybindings with hex-values (coming
from special extended keyboard keys). #140448.
* src/keybindings.c (struct _MetaKeyBinding): change keycode from
KeyCode to unsigned int (comment from Elijah: why???),
(reload_keycodes): only grab keysyms for keybindings that have
them, (count_bindings, rebuild_binding_table): bindings can be
valid either due to a valid keysym or a valid keycode,
(display_get_keybinding_action, meta_change_keygrab,
process_tab_grab, process_workspace_switch_grab): handle keycode
as well as keysym
* src/prefs.[ch] (struct MetaKeyCombo, update_binding,
update_list_binding): handle keycode as well as keysym
* src/ui.[ch] (meta_ui_accelerator_parse): new function special
cases strings of the form "0x[0-9a-fA-F]+" and otherwise calling
gtk_accelerator_parse(), (meta_ui_parse_accelerator,
meta_ui_parse_modifier): call meta_ui_accelerator_parse instead of
gtk_accelerator_parse.
2006-08-21 15:06:26 -04:00
|
|
|
unsigned int *keycode,
|
2002-07-13 23:16:41 -04:00
|
|
|
MetaVirtualModifier *mask);
|
2002-10-07 19:14:40 -04:00
|
|
|
gboolean meta_ui_parse_modifier (const char *accel,
|
|
|
|
MetaVirtualModifier *mask);
|
2002-02-06 22:07:56 -05:00
|
|
|
|
2006-02-27 17:44:47 -05:00
|
|
|
/* Caller responsible for freeing return string of meta_ui_accelerator_name! */
|
|
|
|
gchar* meta_ui_accelerator_name (unsigned int keysym,
|
|
|
|
MetaVirtualModifier mask);
|
2002-08-10 11:55:18 -04:00
|
|
|
gboolean meta_ui_window_is_widget (MetaUI *ui,
|
|
|
|
Window xwindow);
|
|
|
|
|
2003-06-12 01:55:06 -04:00
|
|
|
int meta_ui_get_drag_threshold (MetaUI *ui);
|
2003-05-29 22:53:42 -04:00
|
|
|
|
2007-05-25 10:36:12 -04:00
|
|
|
MetaUIDirection meta_ui_get_direction (void);
|
|
|
|
|
2001-08-30 00:01:38 -04:00
|
|
|
#include "tabpopup.h"
|
2010-06-24 14:41:28 -04:00
|
|
|
#include "tile-preview.h"
|
2001-08-19 02:23:59 -04:00
|
|
|
|
2001-06-17 15:53:45 -04:00
|
|
|
#endif
|