107 lines
3.3 KiB
C
107 lines
3.3 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
|
|
*
|
|
* @file tests/test-image.c Unit test: images
|
|
*
|
|
* @Copyright(C) 2004 Mike Hearn <mike@navi.cx>
|
|
*
|
|
* 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
|
|
* 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
|
|
* 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 <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <assert.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
GMainLoop *loop;
|
|
NotifyNotification *n;
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
char *file;
|
|
char *uri;
|
|
GdkPixbuf *pixbuf;
|
|
|
|
gtk_init (&argc, &argv);
|
|
|
|
if (!notify_init ("Images Test"))
|
|
exit (1);
|
|
|
|
/* Stock icon */
|
|
n = notify_notification_new ("Icon Test",
|
|
"Testing stock icon",
|
|
"appointment-new");
|
|
|
|
if (!notify_notification_show (n, NULL)) {
|
|
fprintf (stderr, "failed to send notification\n");
|
|
return 1;
|
|
}
|
|
|
|
g_object_unref (G_OBJECT (n));
|
|
|
|
file = g_get_current_dir ();
|
|
uri = g_strdup_printf ("file://%s/%s",
|
|
file,
|
|
"dewdop_leaf.jpg");
|
|
|
|
g_free (file);
|
|
printf ("sending %s\n", uri);
|
|
|
|
/* URIs */
|
|
n = notify_notification_new ("Alert!",
|
|
"Testing URI icons",
|
|
uri);
|
|
|
|
if (!notify_notification_show (n, NULL)) {
|
|
fprintf (stderr, "failed to send notification\n");
|
|
return 1;
|
|
}
|
|
|
|
g_object_unref (G_OBJECT (n));
|
|
|
|
/* Raw image */
|
|
n = notify_notification_new ("Raw image test",
|
|
"Testing sending raw pixbufs",
|
|
NULL);
|
|
pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_for_screen (gdk_screen_get_default ()),
|
|
"folder-open",
|
|
48,
|
|
GTK_ICON_LOOKUP_USE_BUILTIN,
|
|
NULL);
|
|
if (pixbuf == NULL) {
|
|
fprintf (stderr, "failed to render pixbuf\n");
|
|
return 1;
|
|
}
|
|
|
|
notify_notification_set_image_from_pixbuf (n, pixbuf);
|
|
g_object_unref (pixbuf);
|
|
|
|
if (!notify_notification_show (n, NULL)) {
|
|
fprintf (stderr, "failed to send notification\n");
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|