diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-11-24 18:13:24 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-11-24 18:13:24 +0800 |
commit | f8bb752e44d08b9975931fa7edb6d49da95df96f (patch) | |
tree | d6f9b7c12bc5eb492cccc8b17d6ff4361517a93d /calendar/gui/dialogs/new-task-list.h | |
parent | 1496e35c9cd57e31eb58a1fa6792d60b842bf941 (diff) | |
download | gsoc2013-evolution-f8bb752e44d08b9975931fa7edb6d49da95df96f.tar gsoc2013-evolution-f8bb752e44d08b9975931fa7edb6d49da95df96f.tar.gz gsoc2013-evolution-f8bb752e44d08b9975931fa7edb6d49da95df96f.tar.bz2 gsoc2013-evolution-f8bb752e44d08b9975931fa7edb6d49da95df96f.tar.lz gsoc2013-evolution-f8bb752e44d08b9975931fa7edb6d49da95df96f.tar.xz gsoc2013-evolution-f8bb752e44d08b9975931fa7edb6d49da95df96f.tar.zst gsoc2013-evolution-f8bb752e44d08b9975931fa7edb6d49da95df96f.zip |
new files containing the implementation of the 'New Task List' dialog.
2003-11-24 Rodrigo Moya <rodrigo@ximian.com>
* gui/dialogs/new-task-list.glade:
* gui/dialogs/new-task-list.[ch]: new files containing the
implementation of the 'New Task List' dialog.
* gui/dialogs/Makefile.am: added new files.
* gui/dialogs/new-calendar.c (new_calendar_dialog): use G_STRLOC
for g_warning messages.
* gui/tasks-component.c (new_task_list_cb): implemented.
svn path=/trunk/; revision=23478
Diffstat (limited to 'calendar/gui/dialogs/new-task-list.h')
-rw-r--r-- | calendar/gui/dialogs/new-task-list.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/new-task-list.h b/calendar/gui/dialogs/new-task-list.h new file mode 100644 index 0000000000..3f529f39ad --- /dev/null +++ b/calendar/gui/dialogs/new-task-list.h @@ -0,0 +1,28 @@ +/* Evolution calendar - New task list dialog + * + * Copyright (C) 2003 Novell, Inc. + * + * Author: Rodrigo Moya <rodrigo@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 NEW_TASK_LIST_H +#define NEW_TASK_LIST_H + +#include <gtk/gtkwindow.h> + +gboolean new_task_list_dialog (GtkWindow *parent); + +#endif |