blob: a769ef6b801799311ffa159633ad56d3e1919182 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/* -*- 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* 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 "widgets/misc/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 *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_ */
|