~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

Viewing changes to libedataserver/e-categories.h

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.1.79 upstream) (1.6.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20100517170206-4ufr52vwrhh26yh0
Tags: 2.30.1-1ubuntu1
* Merge from debian experimental. Remaining change:
  (LP: #42199, #229669, #173703, #360344, #508494)
  + debian/control:
    - add Vcs-Bzr tag
    - don't use libgnome
    - Use Breaks instead of Conflicts against evolution 2.25 and earlier.
  + debian/evolution-data-server.install,
    debian/patches/45_libcamel_providers_version.patch:
    - use the upstream versioning, not a Debian-specific one 
  + debian/libedata-book1.2-dev.install, debian/libebackend-1.2-dev.install,
    debian/libcamel1.2-dev.install, debian/libedataserverui1.2-dev.install:
    - install html documentation
  + debian/rules:
    - don't build documentation it's shipped with the tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
G_BEGIN_DECLS
26
26
 
27
 
GList      *e_categories_get_list (void);
 
27
GList *         e_categories_get_list           (void);
28
28
 
29
29
/* 'unused' parameter was 'color', but it is deprecated now (see bug #308815) */
30
 
void        e_categories_add (const gchar *category, const gchar *unused, const gchar *icon_file, gboolean searchable);
31
 
 
32
 
void        e_categories_remove (const gchar *category);
33
 
 
34
 
gboolean    e_categories_exist (const gchar *category);
 
30
void            e_categories_add                (const gchar *category,
 
31
                                                 const gchar *unused,
 
32
                                                 const gchar *icon_file,
 
33
                                                 gboolean searchable);
 
34
void            e_categories_remove             (const gchar *category);
 
35
gboolean        e_categories_exist              (const gchar *category);
 
36
const gchar *   e_categories_get_icon_file_for  (const gchar *category);
 
37
void            e_categories_set_icon_file_for  (const gchar *category,
 
38
                                                 const gchar *icon_file);
 
39
gboolean        e_categories_is_searchable      (const gchar *category);
 
40
 
 
41
void            e_categories_register_change_listener
 
42
                                                (GCallback listener,
 
43
                                                 gpointer user_data);
 
44
void            e_categories_unregister_change_listener
 
45
                                                (GCallback listener,
 
46
                                                 gpointer user_data);
 
47
 
35
48
#ifndef EDS_DISABLE_DEPRECATED
36
 
const gchar *e_categories_get_color_for (const gchar *category);
37
 
void        e_categories_set_color_for (const gchar *category, const gchar *color);
 
49
const gchar *   e_categories_get_color_for      (const gchar *category);
 
50
void            e_categories_set_color_for      (const gchar *category,
 
51
                                                 const gchar *color);
38
52
#endif
39
 
const gchar *e_categories_get_icon_file_for (const gchar *category);
40
 
void        e_categories_set_icon_file_for (const gchar *category, const gchar *icon_file);
41
 
gboolean    e_categories_is_searchable (const gchar *category);
42
 
 
43
 
void e_categories_register_change_listener   (GCallback listener, gpointer user_data);
44
 
void e_categories_unregister_change_listener (GCallback listener, gpointer user_data);
45
53
 
46
54
G_END_DECLS
47
55