216 lines
6.4 KiB
C
216 lines
6.4 KiB
C
/**
|
|
* @file libnotify/notify.h Notifications library
|
|
*
|
|
* @Copyright (C) 2004 Christian Hammond
|
|
*
|
|
* 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.
|
|
*/
|
|
#ifndef _LIBNOTIFY_NOTIFY_H_
|
|
#define _LIBNOTIFY_NOTIFY_H_
|
|
|
|
#include <glib.h>
|
|
#include <time.h>
|
|
|
|
/**
|
|
* Basic notification types.
|
|
*/
|
|
typedef enum
|
|
{
|
|
NOTIFY_TYPE_NOTIFICATION, /**< Notification */
|
|
NOTIFY_TYPE_REQUEST /**< Request */
|
|
|
|
} NotifyType;
|
|
|
|
/**
|
|
* Notification and request urgency levels.
|
|
*/
|
|
typedef enum
|
|
{
|
|
NOTIFY_URGENCY_LOW, /**< Low urgency. */
|
|
NOTIFY_URGENCY_NORMAL, /**< Normal urgency. */
|
|
NOTIFY_URGENCY_HIGH, /**< High urgency. */
|
|
NOTIFY_URGENCY_CRITICAL, /**< Critical urgency. */
|
|
|
|
} NotifyUrgency;
|
|
|
|
typedef struct _NotifyHandle NotifyHandle;
|
|
typedef struct _NotifyIcon NotifyIcon;
|
|
|
|
typedef void (*NotifyCallback)(NotifyHandle *, guint32, gpointer);
|
|
|
|
/**************************************************************************/
|
|
/** @name libnotify Base API */
|
|
/**************************************************************************/
|
|
/*@{*/
|
|
|
|
/**
|
|
* Initializes the notifications library.
|
|
*
|
|
* @param app_name The application name.
|
|
*
|
|
* @return TRUE if the library initialized properly and a connection to a
|
|
* notification server was made.
|
|
*/
|
|
gboolean notify_init(const char *app_name);
|
|
|
|
/**
|
|
* Uninitializes the notifications library.
|
|
*
|
|
* This will be automatically called on exit unless previously called.
|
|
*/
|
|
void notify_uninit(void);
|
|
|
|
/**
|
|
* Returns whether or not the notification library is initialized.
|
|
*
|
|
* @return TRUE if the library is initialized, or FALSE.
|
|
*/
|
|
gboolean notify_is_initted(void);
|
|
|
|
/**
|
|
* Manually closes a notification or request.
|
|
*
|
|
* @param handle The notification or request handle.
|
|
*/
|
|
void notify_close(NotifyHandle *handle);
|
|
|
|
/*@}*/
|
|
|
|
/**************************************************************************/
|
|
/** @name NotifyIcon API */
|
|
/**************************************************************************/
|
|
/*@{*/
|
|
|
|
/**
|
|
* Creates an icon with the specified icon URI.
|
|
*
|
|
* @param icon_uri The icon URI.
|
|
*
|
|
* @return The icon.
|
|
*/
|
|
NotifyIcon *notify_icon_new(const char *icon_uri);
|
|
|
|
/**
|
|
* Creates an icon with the specified icon data.
|
|
*
|
|
* @param icon_len The icon data length.
|
|
* @param icon_data The icon data.
|
|
*
|
|
* @return The icon.
|
|
*/
|
|
NotifyIcon *notify_icon_new_with_data(size_t icon_len,
|
|
const guchar *icon_data);
|
|
|
|
/**
|
|
* Destroys an icon.
|
|
*
|
|
* @param icon The icon to destroy.
|
|
*/
|
|
void notify_icon_destroy(NotifyIcon *icon);
|
|
|
|
/*@}*/
|
|
|
|
/**************************************************************************/
|
|
/** @name Notifications API */
|
|
/**************************************************************************/
|
|
/*@{*/
|
|
|
|
/**
|
|
* Sends a standard notification.
|
|
*
|
|
* @param urgency The urgency level.
|
|
* @param summary The summary of the notification.
|
|
* @param detailed The optional detailed information.
|
|
* @param icon The optional icon.
|
|
* @param timeout The optional time to automatically close the notification,
|
|
* or 0.
|
|
*
|
|
* @return A unique ID for the notification.
|
|
*/
|
|
NotifyHandle *notify_send_notification(NotifyUrgency urgency,
|
|
const char *summary,
|
|
const char *detailed,
|
|
const NotifyIcon *icon, time_t timeout);
|
|
|
|
/*@}*/
|
|
|
|
/**************************************************************************/
|
|
/** @name Requests API */
|
|
/**************************************************************************/
|
|
/*@{*/
|
|
|
|
/**
|
|
* Sends a standard request.
|
|
*
|
|
* A callback has the following prototype:
|
|
*
|
|
* @code
|
|
* void callback(NotifyHandle *handle, guint32 button, void *user_data);
|
|
* @endcode
|
|
*
|
|
* @param urgency The urgency level.
|
|
* @param summary The summary of the request.
|
|
* @param detailed The optional detailed information.
|
|
* @param icon The optional icon.
|
|
* @param timeout The optional time to automatically close the request,
|
|
* or 0.
|
|
* @param user_data User-specified data to send to a callback.
|
|
* @param default_button The default button, or -1.
|
|
* @param button_count The number of buttons.
|
|
* @param ... The buttons in string/callback pairs.
|
|
*
|
|
* @return A unique ID for the request.
|
|
*/
|
|
NotifyHandle *notify_send_request(NotifyUrgency urgency, const char *summary,
|
|
const char *detailed, const NotifyIcon *icon,
|
|
time_t timeout, gpointer user_data,
|
|
size_t default_button,
|
|
size_t button_count, ...);
|
|
|
|
/**
|
|
* Sends a standard request, taking a va_list for the buttons.
|
|
*
|
|
* A callback has the following prototype:
|
|
*
|
|
* @code
|
|
* void callback(NotifyHandle *handle, guint32 button, void *user_data);
|
|
* @endcode
|
|
*
|
|
* @param urgency The urgency level.
|
|
* @param summary The summary of the request.
|
|
* @param detailed The optional detailed information.
|
|
* @param icon The optional icon.
|
|
* @param timeout The optional time to automatically close the request,
|
|
* or 0.
|
|
* @param user_data User-specified data to send to a callback.
|
|
* @param default_button The default button, or -1.
|
|
* @param button_count The number of buttons.
|
|
* @param buttons The buttons in string/callback pairs.
|
|
*
|
|
* @return A unique ID for the request.
|
|
*/
|
|
NotifyHandle *notify_send_request_varg(NotifyUrgency urgency,
|
|
const char *summary,
|
|
const char *detailed,
|
|
const NotifyIcon *icon, time_t timeout,
|
|
gpointer user_data,
|
|
size_t default_button,
|
|
size_t button_count, va_list buttons);
|
|
|
|
/*@}*/
|
|
|
|
#endif /* _LIBNOTIFY_NOTIFY_H_ */
|