aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/alarm-notify/util.h
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@ximian.com>2003-08-29 04:11:57 +0800
committerHans Petter <hansp@src.gnome.org>2003-08-29 04:11:57 +0800
commit2eeec5bdc657477ae623e84aa3036f6cad19515a (patch)
tree12ec026ab049f8fabcfb50bca1dbd2a5aac2c269 /calendar/gui/alarm-notify/util.h
parent39d8d81a90cdaf5f254c9581834f7faebd0f073b (diff)
downloadgsoc2013-evolution-2eeec5bdc657477ae623e84aa3036f6cad19515a.tar
gsoc2013-evolution-2eeec5bdc657477ae623e84aa3036f6cad19515a.tar.gz
gsoc2013-evolution-2eeec5bdc657477ae623e84aa3036f6cad19515a.tar.bz2
gsoc2013-evolution-2eeec5bdc657477ae623e84aa3036f6cad19515a.tar.lz
gsoc2013-evolution-2eeec5bdc657477ae623e84aa3036f6cad19515a.tar.xz
gsoc2013-evolution-2eeec5bdc657477ae623e84aa3036f6cad19515a.tar.zst
gsoc2013-evolution-2eeec5bdc657477ae623e84aa3036f6cad19515a.zip
Added alarm-notify utils.
2003-08-28 Hans Petter Jansson <hpj@ximian.com> * gui/alarm-notify/util.[ch]: Added alarm-notify utils. * gui/alarm-notify/Makefile.am: Added alarm-notify utils. * gui/alarm-notify/alarm-notify-dialog.c (timet_to_str_with_zone): Move to util.c. * gui/alarm-notify/alarm-queue.c (notify_dialog_cb) (on_dialog_removed_cb) (notify_dialog_cb) (tray_icon_destroyed_cb) (tray_icon_clicked_cb) (tray_icon_blink_cb) (display_notification): Add Rodrigo Moya's code for tray icon notification of appointments, with some fixes and blink code by me. Requires HEAD gnome-icon-theme for now. svn path=/trunk/; revision=22406
Diffstat (limited to 'calendar/gui/alarm-notify/util.h')
-rw-r--r--calendar/gui/alarm-notify/util.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/calendar/gui/alarm-notify/util.h b/calendar/gui/alarm-notify/util.h
new file mode 100644
index 0000000000..ab4cc4f995
--- /dev/null
+++ b/calendar/gui/alarm-notify/util.h
@@ -0,0 +1,29 @@
+/* Evolution calendar - utility functions
+ *
+ * Copyright (C) 2000 Ximian, Inc.
+ * Copyright (C) 2001 Ximian, Inc.
+ *
+ * Author: Federico Mena-Quintero <federico@ximian.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 of the GNU General Public
+ * License as published by the Free Software Foundation.
+ *
+ * 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.
+ */
+
+#ifndef UTIL_H
+#define UTIL_H
+
+#include <cal-util/cal-component.h>
+
+char *timet_to_str_with_zone (time_t t, icaltimezone *zone);
+
+#endif