2001-05-30 11:36:31 -04:00
|
|
|
/* Metacity utilities */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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_UTIL_H
|
|
|
|
#define META_UTIL_H
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
gboolean meta_is_verbose (void);
|
|
|
|
void meta_set_verbose (gboolean setting);
|
2001-05-31 02:42:58 -04:00
|
|
|
gboolean meta_is_debugging (void);
|
|
|
|
void meta_set_debugging (gboolean setting);
|
|
|
|
gboolean meta_is_syncing (void);
|
|
|
|
void meta_set_syncing (gboolean setting);
|
2002-06-08 19:55:27 -04:00
|
|
|
gboolean meta_get_replace_current_wm (void);
|
|
|
|
void meta_set_replace_current_wm (gboolean setting);
|
2001-05-30 11:36:31 -04:00
|
|
|
|
|
|
|
void meta_debug_spew (const char *format,
|
|
|
|
...) G_GNUC_PRINTF (1, 2);
|
|
|
|
void meta_verbose (const char *format,
|
|
|
|
...) G_GNUC_PRINTF (1, 2);
|
2001-05-30 23:30:58 -04:00
|
|
|
void meta_bug (const char *format,
|
|
|
|
...) G_GNUC_PRINTF (1, 2);
|
2001-05-30 11:36:31 -04:00
|
|
|
void meta_warning (const char *format,
|
|
|
|
...) G_GNUC_PRINTF (1, 2);
|
|
|
|
void meta_fatal (const char *format,
|
|
|
|
...) G_GNUC_PRINTF (1, 2);
|
|
|
|
|
2002-01-03 18:28:19 -05:00
|
|
|
typedef enum
|
|
|
|
{
|
2002-02-07 22:34:26 -05:00
|
|
|
META_DEBUG_FOCUS = 1 << 0,
|
|
|
|
META_DEBUG_WORKAREA = 1 << 1,
|
|
|
|
META_DEBUG_STACK = 1 << 2,
|
|
|
|
META_DEBUG_THEMES = 1 << 3,
|
|
|
|
META_DEBUG_SM = 1 << 4,
|
|
|
|
META_DEBUG_EVENTS = 1 << 5,
|
|
|
|
META_DEBUG_WINDOW_STATE = 1 << 6,
|
|
|
|
META_DEBUG_WINDOW_OPS = 1 << 7,
|
|
|
|
META_DEBUG_GEOMETRY = 1 << 8,
|
Screw around with Anders's ping patch so he'll get plenty of CVS
2002-02-26 Havoc Pennington <hp@pobox.com>
Screw around with Anders's ping patch so he'll get plenty of CVS
conflicts. ;-)
* src/display.c (meta_display_ping_window): spew warnings
if we try to call this with CurrentTime
(meta_display_ping_timeout): remove ping from the pending pings
after it times out.
* src/util.h: added PING debug category
* src/display.c (remove_pending_pings_for_window): don't remove
"tmp" just before "tmp->next", don't break out of loop after
finding the first match
(meta_display_open): no trailing comma in array init
(event_callback): move the processing of ping replies into a
separate function
* src/screen.c (set_supported_hint): add _NET_WM_PING to supported
list
* src/display.h: change gpointer to void*
2002-02-26 Anders Carlsson <andersca@gnu.org>
* src/display.c: (ping_data_free),
(remove_pending_pings_for_window), (meta_display_open),
(event_callback), (meta_display_unregister_x_window),
(meta_display_ping_timeout), (meta_display_ping_window),
(meta_display_window_has_pending_pings):
Implement meta_display_ping_window, and filter out scroll wheel
events.
* src/display.h:
Add MetaWindowPingFunc, meta_display_ping_window and
meta_display_window_has_pending_pings.
2002-02-26 21:05:39 -05:00
|
|
|
META_DEBUG_PLACEMENT = 1 << 9,
|
2002-04-21 15:35:02 -04:00
|
|
|
META_DEBUG_PING = 1 << 10,
|
2002-04-28 00:52:26 -04:00
|
|
|
META_DEBUG_XINERAMA = 1 << 11,
|
2002-10-21 17:44:35 -04:00
|
|
|
META_DEBUG_KEYBINDINGS = 1 << 12,
|
|
|
|
META_DEBUG_SYNC = 1 << 13,
|
2002-10-25 19:35:50 -04:00
|
|
|
META_DEBUG_ERRORS = 1 << 14,
|
|
|
|
META_DEBUG_STARTUP = 1 << 15
|
2002-01-03 18:28:19 -05:00
|
|
|
|
|
|
|
} MetaDebugTopic;
|
|
|
|
|
|
|
|
void meta_topic (MetaDebugTopic topic,
|
|
|
|
const char *format,
|
|
|
|
...) G_GNUC_PRINTF (2, 3);
|
|
|
|
|
2001-06-10 15:23:28 -04:00
|
|
|
void meta_push_no_msg_prefix (void);
|
|
|
|
void meta_pop_no_msg_prefix (void);
|
|
|
|
|
2002-08-12 17:32:13 -04:00
|
|
|
gint meta_unsigned_long_equal (gconstpointer v1,
|
|
|
|
gconstpointer v2);
|
|
|
|
guint meta_unsigned_long_hash (gconstpointer v);
|
|
|
|
|
2001-12-09 17:41:12 -05:00
|
|
|
#include <libintl.h>
|
|
|
|
#define _(x) dgettext (GETTEXT_PACKAGE, x)
|
2001-06-21 02:08:35 -04:00
|
|
|
#define N_(x) x
|
2001-05-30 11:36:31 -04:00
|
|
|
|
|
|
|
#endif
|
2001-06-18 02:11:53 -04:00
|
|
|
|
|
|
|
|