fix the name of "Helix Code, Inc." in all the copyrights
[platform/upstream/evolution-data-server.git] / camel / camel-service.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* camel-service.h : Abstract class for an email service */
3
4 /* 
5  *
6  * Author : 
7  *  Bertrand Guiheneuf <bertrand@helixcode.com>
8  *
9  * Copyright 1999, 2000 Helix Code, Inc. (http://www.helixcode.com)
10  *
11  * This program is free software; you can redistribute it and/or 
12  * modify it under the terms of the GNU General Public License as 
13  * published by the Free Software Foundation; either version 2 of the
14  * License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24  * USA
25  */
26
27
28 #ifndef CAMEL_SERVICE_H
29 #define CAMEL_SERVICE_H 1
30
31
32 #ifdef __cplusplus
33 extern "C" {
34 #pragma }
35 #endif /* __cplusplus }*/
36
37 #include <gtk/gtk.h>
38 #include "camel-types.h"
39 #include "url-util.h"
40
41 #define CAMEL_SERVICE_TYPE     (camel_service_get_type ())
42 #define CAMEL_SERVICE(obj)     (GTK_CHECK_CAST((obj), CAMEL_SERVICE_TYPE, CamelService))
43 #define CAMEL_SERVICE_CLASS(k) (GTK_CHECK_CLASS_CAST ((k), CAMEL_SERVICE_TYPE, CamelServiceClass))
44 #define CAMEL_IS_SERVICE(o)    (GTK_CHECK_TYPE((o), CAMEL_SERVICE_TYPE))
45
46
47
48 struct _CamelService {
49         GtkObject parent_object;
50
51         CamelSession *session;
52         gboolean connected;
53         Gurl *url;
54         int url_flags;
55
56 };
57
58
59
60 typedef struct {
61         GtkObjectClass parent_class;
62
63         gboolean  (*connect) (CamelService *service, CamelException *ex);
64         gboolean  (*connect_with_url) (CamelService *service, Gurl *url,
65                                        CamelException *ex);
66         gboolean  (*disconnect) (CamelService *service, CamelException *ex);
67
68         gboolean  (*is_connected) (CamelService *service);
69
70 } CamelServiceClass;
71
72
73
74 /* flags for url_flags. (others can be added if needed) */
75 #define CAMEL_SERVICE_URL_NEED_USER     (1 << 1)
76 #define CAMEL_SERVICE_URL_NEED_HOST     (1 << 4)
77 #define CAMEL_SERVICE_URL_NEED_PATH     (1 << 6)
78
79
80
81 /* public methods */
82 CamelService *camel_service_new (GtkType type, CamelSession *session,
83                                  Gurl *url, CamelException *ex);
84
85 gboolean camel_service_connect (CamelService *service, CamelException *ex);
86 gboolean camel_service_connect_with_url (CamelService *service, char *url,
87                                          CamelException *ex);
88 gboolean camel_service_disconnect (CamelService *service, CamelException *ex);
89 gboolean camel_service_is_connected (CamelService *service);
90 char *camel_service_get_url (CamelService *service);
91 CamelSession *camel_service_get_session (CamelService *service);
92
93 /* Standard Gtk function */
94 GtkType camel_service_get_type (void);
95
96 #ifdef __cplusplus
97 }
98 #endif /* __cplusplus */
99
100 #endif /* CAMEL_SERVICE_H */
101