~ubuntu-branches/debian/squeeze/glib2.0/squeeze

« back to all changes in this revision

Viewing changes to gio/gthemedicon.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-02-15 13:00:43 UTC
  • mfrom: (1.3.1 upstream) (69.1.10 intrepid)
  • Revision ID: james.westby@ubuntu.com-20090215130043-q47fbt3owmt42m2f
Tags: 2.18.4-2
* Release to unstable
* debian/rules:
- bump SHVER, since we are already forcing a 2.18.0 dependecy on the
  symbols introduced in the development versions
* debian/control.in:
- added Homepage and Vcs-* control fields

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* GIO - GLib Input, Output and Streaming Library
2
 
 * 
 
2
 *
3
3
 * Copyright (C) 2006-2007 Red Hat, Inc.
4
4
 *
5
5
 * This library is free software; you can redistribute it and/or
27
27
#ifndef __G_THEMED_ICON_H__
28
28
#define __G_THEMED_ICON_H__
29
29
 
30
 
#include <gio/gicon.h>
 
30
#include <gio/giotypes.h>
31
31
 
32
32
G_BEGIN_DECLS
33
33
 
40
40
 
41
41
/**
42
42
 * GThemedIcon:
43
 
 * 
 
43
 *
44
44
 * An implementation of #GIcon for themed icons.
45
45
 **/
46
 
typedef struct _GThemedIcon        GThemedIcon;
47
46
typedef struct _GThemedIconClass   GThemedIconClass;
48
47
 
49
 
GType g_themed_icon_get_type (void) G_GNUC_CONST;
50
 
  
51
 
GIcon *g_themed_icon_new (const char *iconname);
52
 
GIcon *g_themed_icon_new_with_default_fallbacks (const char *iconname);
53
 
GIcon *g_themed_icon_new_from_names (char **iconnames, int len);
54
 
void   g_themed_icon_append_name (GThemedIcon *icon, const char *iconname);
55
 
 
56
 
const char * const *g_themed_icon_get_names (GThemedIcon *icon);
 
48
GType  g_themed_icon_get_type                   (void) G_GNUC_CONST;
 
49
 
 
50
GIcon *g_themed_icon_new                        (const char  *iconname);
 
51
GIcon *g_themed_icon_new_with_default_fallbacks (const char  *iconname);
 
52
GIcon *g_themed_icon_new_from_names             (char       **iconnames,
 
53
                                                 int          len);
 
54
void   g_themed_icon_prepend_name               (GThemedIcon *icon,
 
55
                                                 const char  *iconname);
 
56
void   g_themed_icon_append_name                (GThemedIcon *icon,
 
57
                                                 const char  *iconname);
 
58
 
 
59
const char * const *g_themed_icon_get_names     (GThemedIcon *icon);
57
60
 
58
61
G_END_DECLS
59
62