diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2004-01-10 04:50:22 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2004-01-10 04:50:22 +0800 |
commit | 1dd41f136412d432612d2fa8fea332eefe963ffd (patch) | |
tree | dd6ad00a47d098e3ef50d549105e490b159cb679 /calendar/gui/dialogs/calendar-setup.h | |
parent | 1a2190aef718d7a5909f9bfd4898e80823b10876 (diff) | |
download | gsoc2013-evolution-1dd41f136412d432612d2fa8fea332eefe963ffd.tar gsoc2013-evolution-1dd41f136412d432612d2fa8fea332eefe963ffd.tar.gz gsoc2013-evolution-1dd41f136412d432612d2fa8fea332eefe963ffd.tar.bz2 gsoc2013-evolution-1dd41f136412d432612d2fa8fea332eefe963ffd.tar.lz gsoc2013-evolution-1dd41f136412d432612d2fa8fea332eefe963ffd.tar.xz gsoc2013-evolution-1dd41f136412d432612d2fa8fea332eefe963ffd.tar.zst gsoc2013-evolution-1dd41f136412d432612d2fa8fea332eefe963ffd.zip |
calendar_config -> calendar_setup. (edit_calendar_cb): Ditto.
2004-01-09 Hans Petter Jansson <hpj@ximian.com>
* gui/calendar-component.c (new_calendar_cb): calendar_config ->
calendar_setup.
(edit_calendar_cb): Ditto.
(impl_requestCreateItem): Ditto.
* gui/tasks-component.c (new_task_list_cb): Use calendar_setup.
(edit_task_list_cb): Implement properties callback.
(rename_task_list_cb): Remove.
(fill_popup_menu_cb): Remove "rename" and add "properties".
(impl_requestCreateItem): Use calendar_setup.
* gui/dialogs/Makefile.am (libcal_dialogs_la_SOURCES): calendar_config
-> calendar_setup. Remove new-task-list.[ch].
(glade_DATA): calendar_config -> calendar_setup. Remove
new-task-list.glade.
* gui/dialogs/new-task-list.[ch]: Remove.
* gui/dialogs/calendar-config.[ch]: Rename to calendar-setup.[ch].
* gui/dialogs/calendar-config.glade: Rename to calendar-setup.glade.
svn path=/trunk/; revision=24139
Diffstat (limited to 'calendar/gui/dialogs/calendar-setup.h')
-rw-r--r-- | calendar/gui/dialogs/calendar-setup.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/calendar-setup.h b/calendar/gui/dialogs/calendar-setup.h new file mode 100644 index 0000000000..c60afdf0e5 --- /dev/null +++ b/calendar/gui/dialogs/calendar-setup.h @@ -0,0 +1,32 @@ +/* Evolution calendar - Calendar properties dialogs. + * + * Copyright (C) 2004 Novell, Inc. + * + * Author: Hans Petter Jansson <hpj@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 CALENDAR_CONFIG_H +#define CALENDAR_CONFIG_H + +#include <gtk/gtkwindow.h> + +gboolean calendar_setup_new_calendar (GtkWindow *parent); +gboolean calendar_setup_edit_calendar (GtkWindow *parent, ESource *source); + +gboolean calendar_setup_new_task_list (GtkWindow *parent); +gboolean calendar_setup_edit_task_list (GtkWindow *parent, ESource *source); + +#endif |