1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* camel-service.h : Abstract class for an email service */
7 * Bertrand Guiheneuf <bertrand@helixcode.com>
9 * Copyright 1999, 2000 Helix Code, Inc. (http://www.helixcode.com)
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.
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.
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
28 #ifndef CAMEL_SERVICE_H
29 #define CAMEL_SERVICE_H 1
35 #endif /* __cplusplus }*/
37 #include <camel/camel-object.h>
38 #include <camel/camel-url.h>
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))
47 struct _CamelService {
48 CamelObject parent_object;
50 CamelSession *session;
58 CamelObjectClass parent_class;
60 gboolean (*connect) (CamelService *service,
62 gboolean (*connect_with_url) (CamelService *service,
65 gboolean (*disconnect) (CamelService *service,
68 gboolean (*is_connected) (CamelService *service);
70 GList * (*query_auth_types) (CamelService *service,
72 void (*free_auth_types) (CamelService *service,
79 /* flags for url_flags. (others can be added if needed) */
80 #define CAMEL_SERVICE_URL_NEED_USER (1 << 1)
81 #define CAMEL_SERVICE_URL_NEED_AUTH (1 << 2)
82 #define CAMEL_SERVICE_URL_NEED_HOST (1 << 4)
83 #define CAMEL_SERVICE_URL_NEED_PATH (1 << 6)
86 /* query_auth_types returns a GList of these */
88 char *name, *description, *authproto;
89 gboolean need_password;
90 } CamelServiceAuthType;
94 CamelService * camel_service_new (GtkType type,
95 CamelSession *session,
99 gboolean camel_service_connect (CamelService *service,
101 gboolean camel_service_connect_with_url (CamelService *service,
104 gboolean camel_service_disconnect (CamelService *service,
106 gboolean camel_service_is_connected (CamelService *service);
108 char * camel_service_get_url (CamelService *service);
109 CamelSession * camel_service_get_session (CamelService *service);
111 GList * camel_service_query_auth_types (CamelService *service,
113 void camel_service_free_auth_types (CamelService *service,
116 /* convenience functions */
117 struct hostent * camel_service_gethost (CamelService *service,
121 /* Standard Gtk function */
122 GtkType camel_service_get_type (void);
126 #endif /* __cplusplus */
128 #endif /* CAMEL_SERVICE_H */