diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-07-03 12:48:06 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-07-03 12:48:06 +0800 |
commit | eb52ee5a862b132e6c0655cd44b5887d64ead3ca (patch) | |
tree | a2ff41b231aaa8c630e0df8c37e34fe8cde15d1c /calendar/gui/dialogs/alarm-options.h | |
parent | 5847ef85662adc9158efa2780ff251b572a63dc1 (diff) | |
download | gsoc2013-evolution-eb52ee5a862b132e6c0655cd44b5887d64ead3ca.tar.gz gsoc2013-evolution-eb52ee5a862b132e6c0655cd44b5887d64ead3ca.tar.zst gsoc2013-evolution-eb52ee5a862b132e6c0655cd44b5887d64ead3ca.zip |
New files with the alarm options dialog; this configures the
2001-07-02 Federico Mena Quintero <federico@ximian.com>
* gui/dialogs/alarm-options.[ch]: New files with the alarm options
dialog; this configures the repeat/duration properties and the
options specific to each alarm action type.
* gui/dialogs/alarm-page.c (AlarmPagePrivate): Added the alarm
options button. Also, keep an alarm structure which we are
editing and an alarm options dialog.
(init_widgets): Connect to the options button.
(add_clicked_cb): Clone the component we are editing instead of
creating a new one so that we preserve the data from the alarm
options dialog.
(button_options_clicked_cb): Pop up the alarm options dialog.
* cal-util/cal-component.c (cal_component_alarm_new): Doh,
initialize the other fields in the new alarm.
svn path=/trunk/; revision=10731
Diffstat (limited to 'calendar/gui/dialogs/alarm-options.h')
-rw-r--r-- | calendar/gui/dialogs/alarm-options.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/alarm-options.h b/calendar/gui/dialogs/alarm-options.h new file mode 100644 index 0000000000..36f945f684 --- /dev/null +++ b/calendar/gui/dialogs/alarm-options.h @@ -0,0 +1,29 @@ +/* Evolution calendar - Alarm options dialog + * + * Copyright (C) 2001 Ximian, Inc. + * + * Authors: Federico Mena-Quintero <federico@ximian.com> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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 ALARM_OPTIONS_H +#define ALARM_OPTIONS_H + +#include <cal-util/cal-component.h> + +gboolean alarm_options_dialog_run (CalComponentAlarm *alarm); + +#endif |