2006-10-01 18:30:10 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2001-06-17 15:53:45 -04:00
|
|
|
/* Metacity interface for talking to GTK+ UI module */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
2003-11-29 22:30:27 -05:00
|
|
|
/* This is between GTK_PRIORITY_RESIZE (+10) and GTK_PRIORITY_REDRAW (+20) */
|
|
|
|
#define META_PRIORITY_RESIZE (G_PRIORITY_HIGH_IDLE + 15)
|
2003-09-30 16:36:02 -04:00
|
|
|
|
2001-06-17 15:53:45 -04:00
|
|
|
typedef struct _MetaUI MetaUI;
|
|
|
|
|
2001-08-06 03:58:49 -04:00
|
|
|
typedef struct _MetaImageWindow MetaImageWindow;
|
|
|
|
|
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,
|
|
|
|
gint screen_no);
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
2002-10-18 18:46:37 -04:00
|
|
|
MetaImageWindow* meta_image_window_new (Display *xdisplay,
|
|
|
|
int screen_number,
|
|
|
|
int max_width,
|
2002-03-05 00:05:00 -05:00
|
|
|
int max_height);
|
2001-08-06 03:58:49 -04:00
|
|
|
void meta_image_window_free (MetaImageWindow *iw);
|
|
|
|
void meta_image_window_set_showing (MetaImageWindow *iw,
|
|
|
|
gboolean showing);
|
2002-03-05 00:05:00 -05:00
|
|
|
void meta_image_window_set (MetaImageWindow *iw,
|
|
|
|
GdkPixbuf *pixbuf,
|
2001-08-06 03:58:49 -04:00
|
|
|
int x,
|
|
|
|
int y);
|
|
|
|
|
2001-08-30 00:01:38 -04:00
|
|
|
/* FIXME these lack a display arg */
|
2001-08-06 03:58:49 -04:00
|
|
|
GdkPixbuf* meta_gdk_pixbuf_get_from_window (GdkPixbuf *dest,
|
|
|
|
Window xwindow,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
|
|
|
int dest_x,
|
|
|
|
int dest_y,
|
|
|
|
int width,
|
|
|
|
int height);
|
2001-08-18 21:19:54 -04:00
|
|
|
|
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);
|
|
|
|
|
Merge compositor branch.
2007-12-18 Iain Holmes <iain@gnome.org>
* configure.in, src/theme.c, src/display.c,
src/theme.h, src/display.h, src/theme-parser.c,
src/compositor.c, src/c-screen.c, src/compositor.h,
src/c-screen.h, src/ui.c, src/screen.c, src/ui.h,
src/screen.h, src/c-window.c, src/c-window.h,
src/theme-viewer.c, src/Makefile.am: Merge compositor branch.
svn path=/trunk/; revision=3483
2007-12-18 22:49:50 -05:00
|
|
|
GdkPixbuf *meta_ui_get_pixbuf_from_pixmap (Pixmap pmap);
|
|
|
|
|
2007-12-19 16:38:15 -05:00
|
|
|
void meta_ui_get_fallback_icons (GdkPixbuf **fallback_icon_p,
|
|
|
|
GdkPixbuf **fallback_mini_icon_p);
|
|
|
|
|
2001-08-30 00:01:38 -04:00
|
|
|
#include "tabpopup.h"
|
2001-08-19 02:23:59 -04:00
|
|
|
|
2001-06-17 15:53:45 -04:00
|
|
|
#endif
|