#include <glib.h>
#include <time.h>
#include <libnotify/notification.h>
Go to the source code of this file.
libnotify Base API | |
gboolean | notify_init (const char *app_name) |
Initializes the notifications library. | |
void | notify_uninit (void) |
Uninitializes the notifications library. | |
gboolean | notify_is_initted (void) |
Returns whether or not the notification library is initialized. | |
const gchar * | notify_get_app_name (void) |
Returns the name of the application set when notify_init() was called. | |
GList * | notify_get_server_caps (void) |
Returns the capabilities of the notification server. | |
gboolean | notify_get_server_info (char **ret_name, char **ret_vendor, char **ret_version, char **ret_spec_version) |
Returns the server notification information. |
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.
Definition in file notify.h.
|
Returns the name of the application set when notify_init() was called.
|
|
Returns the capabilities of the notification server.
|
|
Returns the server notification information. The strings returned must be freed.
|
|
Initializes the notifications library.
|
|
Returns whether or not the notification library is initialized.
|
|
Uninitializes the notifications library. This will be automatically called on exit unless previously called. |