2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2003-2007 Match Grun and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * Functions to define an address query (a request).
24 #ifndef __ADDRQUERY_H__
25 #define __ADDRQUERY_H__
33 #define ADDRQUERY_NONE 0
34 #define ADDRQUERY_LDAP 1
47 AddrSearchType searchType
;
50 void ( *callBackEnd
) ( void * );
51 void ( *callBackEntry
) ( void * );
57 #define ADDRQUERY_OBJECT(obj) ((AddrQueryObject *)obj)
58 #define ADDRQUERY_TYPE(obj) (ADDRQUERY_OBJECT(obj)->queryType)
59 #define ADDRQUERY_ID(obj) (ADDRQUERY_OBJECT(obj)->queryID)
60 #define ADDRQUERY_SEARCHTYPE(obj) (ADDRQUERY_OBJECT(obj)->searchType)
61 #define ADDRQUERY_NAME(obj) (ADDRQUERY_OBJECT(obj)->queryName)
62 #define ADDRQUERY_RETVAL(obj) (ADDRQUERY_OBJECT(obj)->retVal)
63 #define ADDRQUERY_FOLDER(obj) (ADDRQUERY_OBJECT(obj)->folder)
64 #define ADDRQUERY_SEARCHVALUE(obj) (ADDRQUERY_OBJECT(obj)->searchValue)
66 /* Generic address query (base class) */
67 typedef struct _AddrQueryObject AddrQueryObject
;
68 struct _AddrQueryObject
{
71 AddrSearchType searchType
;
74 ItemFolder
*folder
; /* Reference to folder in cache */
78 /* Address search call back functions */
79 typedef gint ( AddrSearchCallbackEntry
) ( gpointer sender
,
84 typedef void ( AddrSearchCallbackEnd
) ( gpointer sender
,
89 /* Function prototypes */
90 QueryRequest
*qryreq_create ( void );
91 void qryreq_clear ( QueryRequest
*req
);
92 void qryreq_free ( QueryRequest
*req
);
93 void qryreq_set_search_type ( QueryRequest
*req
, const AddrSearchType value
);
94 void qryreq_set_search_term ( QueryRequest
*req
, const gchar
*value
);
95 void qryreq_add_query ( QueryRequest
*req
, AddrQueryObject
*aqo
);
96 void qryreq_print ( const QueryRequest
*req
, FILE *stream
);
98 void qrymgr_initialize ( void );
99 void qrymgr_teardown ( void );
100 QueryRequest
*qrymgr_add_request( const gchar
*searchTerm
,
102 void *callBackEntry
);
104 QueryRequest
*qrymgr_find_request( const gint queryID
);
105 void qrymgr_delete_request ( const gint queryID
);
106 void qrymgr_print ( FILE *stream
);
108 #endif /* __ADDRQUERY_H__ */