diff options
Diffstat (limited to 'calendar/gui/dialogs/url-editor-dialog.h')
-rw-r--r-- | calendar/gui/dialogs/url-editor-dialog.h | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/calendar/gui/dialogs/url-editor-dialog.h b/calendar/gui/dialogs/url-editor-dialog.h deleted file mode 100644 index 2ec3c61fd1..0000000000 --- a/calendar/gui/dialogs/url-editor-dialog.h +++ /dev/null @@ -1,69 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ - -/* - * Author : - * Gary Ekker <gekker@novell.com> - * - * Copyright 2004, Ximian, Inc. - * - * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 - * USA - */ - -/* - * UrlEditorDialog - a GtkObject which handles a libglade-loaded dialog - * to edit the calendar preference settings. - */ - -#ifndef _URL_EDITOR_DIALOG_H_ -#define _URL_EDITOR_DIALOG_H_ - -G_BEGIN_DECLS - -#include <gtk/gtk.h> -#include <glade/glade.h> - -#include "cal-prefs-dialog.h" -#include <libedataserverui/e-source-selector.h> - -struct _UrlDialogData { - /* Glade XML data */ - GladeXML *xml; - GtkWidget *url_editor; - GtkWidget *url_dialog; - - GtkEntry *url_entry; - GtkWidget *daily; - GtkWidget *weekly; - GtkWidget *user_publish; - - GtkWidget *calendar_list_label; - GtkWidget *scrolled_window; - - GtkEntry *username_entry; - GtkEntry *password_entry; - GtkWidget *remember_pw; - - GtkWidget *cancel; - GtkWidget *ok; - EPublishUri *url_data; -}; -typedef struct _UrlDialogData UrlDialogData; - -gboolean -url_editor_dialog_new (DialogData *dialog_data, EPublishUri *pub_uri); - -G_END_DECLS - -#endif /* _URL_EDITOR_DIALOG_H_ */ |