2002-02-08 01:01:58 -05:00
|
|
|
/* Metacity send-magic-messages app */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2002 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.
|
|
|
|
*/
|
|
|
|
|
2002-12-08 14:17:17 -05:00
|
|
|
#include <config.h>
|
2002-02-08 01:01:58 -05:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <gdk/gdkx.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2002-12-08 14:17:17 -05:00
|
|
|
#include <libintl.h>
|
|
|
|
#define _(x) dgettext (GETTEXT_PACKAGE, x)
|
|
|
|
#define N_(x) x
|
|
|
|
|
|
|
|
|
2002-02-08 01:01:58 -05:00
|
|
|
static void
|
|
|
|
send_restart (void)
|
|
|
|
{
|
|
|
|
XEvent xev;
|
|
|
|
|
|
|
|
xev.xclient.type = ClientMessage;
|
|
|
|
xev.xclient.serial = 0;
|
|
|
|
xev.xclient.send_event = True;
|
|
|
|
xev.xclient.display = gdk_display;
|
|
|
|
xev.xclient.window = gdk_x11_get_default_root_xwindow ();
|
|
|
|
xev.xclient.message_type = XInternAtom (gdk_display,
|
|
|
|
"_METACITY_RESTART_MESSAGE",
|
|
|
|
False);
|
|
|
|
xev.xclient.format = 32;
|
|
|
|
xev.xclient.data.l[0] = 0;
|
|
|
|
xev.xclient.data.l[1] = 0;
|
|
|
|
xev.xclient.data.l[2] = 0;
|
|
|
|
|
|
|
|
XSendEvent (gdk_display,
|
|
|
|
gdk_x11_get_default_root_xwindow (),
|
|
|
|
False,
|
|
|
|
SubstructureRedirectMask | SubstructureNotifyMask,
|
|
|
|
&xev);
|
|
|
|
|
|
|
|
XFlush (gdk_display);
|
|
|
|
XSync (gdk_display, False);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
send_reload_theme (void)
|
|
|
|
{
|
|
|
|
XEvent xev;
|
|
|
|
|
|
|
|
xev.xclient.type = ClientMessage;
|
|
|
|
xev.xclient.serial = 0;
|
|
|
|
xev.xclient.send_event = True;
|
|
|
|
xev.xclient.display = gdk_display;
|
|
|
|
xev.xclient.window = gdk_x11_get_default_root_xwindow ();
|
|
|
|
xev.xclient.message_type = XInternAtom (gdk_display,
|
|
|
|
"_METACITY_RELOAD_THEME_MESSAGE",
|
|
|
|
False);
|
|
|
|
xev.xclient.format = 32;
|
|
|
|
xev.xclient.data.l[0] = 0;
|
|
|
|
xev.xclient.data.l[1] = 0;
|
|
|
|
xev.xclient.data.l[2] = 0;
|
|
|
|
|
|
|
|
XSendEvent (gdk_display,
|
|
|
|
gdk_x11_get_default_root_xwindow (),
|
|
|
|
False,
|
|
|
|
SubstructureRedirectMask | SubstructureNotifyMask,
|
|
|
|
&xev);
|
|
|
|
|
|
|
|
XFlush (gdk_display);
|
|
|
|
XSync (gdk_display, False);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
send_set_keybindings (gboolean enabled)
|
|
|
|
{
|
|
|
|
XEvent xev;
|
|
|
|
|
|
|
|
xev.xclient.type = ClientMessage;
|
|
|
|
xev.xclient.serial = 0;
|
|
|
|
xev.xclient.send_event = True;
|
|
|
|
xev.xclient.display = gdk_display;
|
|
|
|
xev.xclient.window = gdk_x11_get_default_root_xwindow ();
|
|
|
|
xev.xclient.message_type = XInternAtom (gdk_display,
|
|
|
|
"_METACITY_SET_KEYBINDINGS_MESSAGE",
|
|
|
|
False);
|
|
|
|
xev.xclient.format = 32;
|
|
|
|
xev.xclient.data.l[0] = enabled;
|
|
|
|
xev.xclient.data.l[1] = 0;
|
|
|
|
xev.xclient.data.l[2] = 0;
|
|
|
|
|
|
|
|
XSendEvent (gdk_display,
|
|
|
|
gdk_x11_get_default_root_xwindow (),
|
|
|
|
False,
|
|
|
|
SubstructureRedirectMask | SubstructureNotifyMask,
|
|
|
|
&xev);
|
|
|
|
|
|
|
|
XFlush (gdk_display);
|
|
|
|
XSync (gdk_display, False);
|
|
|
|
}
|
|
|
|
|
2002-12-08 14:17:17 -05:00
|
|
|
#ifdef WITH_VERBOSE_MODE
|
|
|
|
static void
|
|
|
|
send_toggle_verbose (void)
|
|
|
|
{
|
|
|
|
XEvent xev;
|
|
|
|
|
|
|
|
xev.xclient.type = ClientMessage;
|
|
|
|
xev.xclient.serial = 0;
|
|
|
|
xev.xclient.send_event = True;
|
|
|
|
xev.xclient.display = gdk_display;
|
|
|
|
xev.xclient.window = gdk_x11_get_default_root_xwindow ();
|
|
|
|
xev.xclient.message_type = XInternAtom (gdk_display,
|
|
|
|
"_METACITY_TOGGLE_VERBOSE",
|
|
|
|
False);
|
|
|
|
xev.xclient.format = 32;
|
|
|
|
xev.xclient.data.l[0] = 0;
|
|
|
|
xev.xclient.data.l[1] = 0;
|
|
|
|
xev.xclient.data.l[2] = 0;
|
|
|
|
|
|
|
|
XSendEvent (gdk_display,
|
|
|
|
gdk_x11_get_default_root_xwindow (),
|
|
|
|
False,
|
|
|
|
SubstructureRedirectMask | SubstructureNotifyMask,
|
|
|
|
&xev);
|
|
|
|
|
|
|
|
XFlush (gdk_display);
|
|
|
|
XSync (gdk_display, False);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-02-08 01:01:58 -05:00
|
|
|
static void
|
|
|
|
usage (void)
|
|
|
|
{
|
2002-12-08 14:17:17 -05:00
|
|
|
g_printerr (_("Usage: %s\n"),
|
|
|
|
"metacity-message (restart|reload-theme|enable-keybindings|disable-keybindings|toggle-verbose)");
|
2002-02-08 01:01:58 -05:00
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
2003-09-30 15:59:15 -04:00
|
|
|
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
|
|
|
|
2002-02-08 01:01:58 -05:00
|
|
|
gtk_init (&argc, &argv);
|
|
|
|
|
|
|
|
if (argc < 2)
|
|
|
|
usage ();
|
|
|
|
|
|
|
|
if (strcmp (argv[1], "restart") == 0)
|
|
|
|
send_restart ();
|
|
|
|
else if (strcmp (argv[1], "reload-theme") == 0)
|
|
|
|
send_reload_theme ();
|
|
|
|
else if (strcmp (argv[1], "enable-keybindings") == 0)
|
|
|
|
send_set_keybindings (TRUE);
|
|
|
|
else if (strcmp (argv[1], "disable-keybindings") == 0)
|
|
|
|
send_set_keybindings (FALSE);
|
2002-12-08 14:17:17 -05:00
|
|
|
else if (strcmp (argv[1], "toggle-verbose") == 0)
|
|
|
|
{
|
|
|
|
#ifndef WITH_VERBOSE_MODE
|
|
|
|
g_printerr (_("Metacity was compiled without support for verbose mode\n"));
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
send_toggle_verbose ();
|
|
|
|
#endif
|
|
|
|
}
|
2002-02-08 01:01:58 -05:00
|
|
|
else
|
|
|
|
usage ();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|