addrcindex.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
  3. * Copyright (C) 2002-2009 Match Grun and the Claws Mail team
  4. *
  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 3 of the License, or
  8. * (at your option) any later version.
  9. *
  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.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. /*
  20. * Functions to maintain address completion index.
  21. */
  22. #ifndef __ADDRCINDEX_H__
  23. #define __ADDRCINDEX_H__
  24. #include <glib.h>
  25. #include <stdio.h>
  26. #include "addritem.h"
  27. /*
  28. * Constants.
  29. */
  30. /* Data structures */
  31. typedef struct {
  32. GCompletion *completion;
  33. GList *addressList;
  34. gboolean invalid;
  35. }
  36. AddrCacheIndex;
  37. /* Function prototypes */
  38. AddrCacheIndex *addrcindex_create ( void );
  39. void addrcindex_clear ( AddrCacheIndex *index );
  40. void addrcindex_free ( AddrCacheIndex *index );
  41. void addrcindex_invalidate ( AddrCacheIndex *index );
  42. void addrcindex_validate ( AddrCacheIndex *index );
  43. void addrcindex_add_entry ( AddrCacheIndex *index,
  44. gchar *name,
  45. ItemEMail *email );
  46. void addrcindex_add_email ( AddrCacheIndex *index, ItemEMail *email );
  47. void addrcindex_add_person ( AddrCacheIndex *index, ItemPerson *person );
  48. void addrcindex_print ( AddrCacheIndex *index, FILE *stream );
  49. GList *addrcindex_search ( AddrCacheIndex *index, const gchar *search );
  50. #endif /* __ADDRCINDEX_H__ */
  51. /*
  52. * End of Source.
  53. */