libnotify/tests/test-xy-stress.c

97 lines
2.7 KiB
C
Raw Normal View History

2010-01-29 01:59:26 -06:00
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* @file tests/test-xy.c Unit test: X, Y hints
*
2006-01-09 12:16:48 -06:00
* @Copyright(C) 2005 Christian Hammond <chipx86@chipx86.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
2006-01-09 12:16:48 -06:00
* version 2.1 of the License, or(at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2010-01-29 01:59:26 -06:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <libnotify/notify.h>
#include <gdk/gdk.h>
#include <stdio.h>
#include <unistd.h>
static void
2010-01-29 01:59:26 -06:00
_handle_closed (GObject * obj)
{
2010-01-29 01:59:26 -06:00
g_message ("closing");
g_object_unref (obj);
}
static void
2010-01-29 01:59:26 -06:00
emit_notification (int x, int y)
{
2010-01-29 01:59:26 -06:00
char *buffer;
NotifyNotification *n;
2010-01-29 01:59:26 -06:00
buffer = g_strdup_printf ("This notification should point to %d, %d.",
x,
y);
2010-01-29 01:59:26 -06:00
n = notify_notification_new ("X, Y Test", buffer, NULL, NULL);
g_free (buffer);
2010-01-29 01:59:26 -06:00
notify_notification_set_hint_int32 (n, "x", x);
notify_notification_set_hint_int32 (n, "y", y);
2010-01-29 01:59:26 -06:00
g_signal_connect (G_OBJECT (n),
"closed",
G_CALLBACK (_handle_closed),
NULL);
2010-01-29 01:59:26 -06:00
if (!notify_notification_show (n, NULL))
fprintf (stderr, "failed to send notification\n");
}
static gboolean
2010-01-29 01:59:26 -06:00
_popup_random_bubble (gpointer unused)
{
2010-01-29 01:59:26 -06:00
GdkDisplay *display;
GdkScreen *screen;
2010-01-29 01:59:26 -06:00
int screen_x2, screen_y2;
int x, y;
2010-01-29 01:59:26 -06:00
display = gdk_display_get_default ();
screen = gdk_display_get_default_screen (display);
screen_x2 = gdk_screen_get_width (screen) - 1;
screen_y2 = gdk_screen_get_height (screen) - 1;
2010-01-29 01:59:26 -06:00
x = g_random_int_range (0, screen_x2);
y = g_random_int_range (0, screen_y2);
emit_notification (x, y);
2010-01-29 01:59:26 -06:00
return TRUE;
}
int
2010-01-29 01:59:26 -06:00
main (int argc, char **argv)
{
2010-01-29 01:59:26 -06:00
GMainLoop *loop;
2006-01-09 12:16:48 -06:00
2010-01-29 01:59:26 -06:00
gdk_init (&argc, &argv);
2010-01-29 01:59:26 -06:00
notify_init ("XY");
2010-01-29 01:59:26 -06:00
g_timeout_add (1000, _popup_random_bubble, NULL);
2010-01-29 01:59:26 -06:00
loop = g_main_loop_new (NULL, FALSE);
g_main_loop_run (loop);
2010-01-29 01:59:26 -06:00
return 0;
}