~ubuntu-branches/ubuntu/intrepid/glib2.0/intrepid

« back to all changes in this revision

Viewing changes to gio/gemblem.h

  • Committer: Bazaar Package Importer
  • Author(s): Loic Minier
  • Date: 2008-09-03 00:51:29 UTC
  • mfrom: (1.2.47 upstream)
  • Revision ID: james.westby@ubuntu.com-20080903005129-cuvzg72uin744gd6
Tags: 2.18.0-1
* New upstream stable release, with API addition.
  - Update symbols file for new g_object_get_type() symbol and drop
    g_slice_debug_tree_statistics() which shouldn't have been exported in
    the first place.
  - Refresh patches 01_gettext-desktopfiles,
    02_usr_share_gnome_applications, and 03_blacklist-directories to apply
    cleanly.

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) 2008 Clemens N. Buss <cebuzz@gmail.com>
4
4
 *
5
5
 * This library is free software; you can redistribute it and/or
18
18
 * Boston, MA 02111-1307, USA.
19
19
 *
20
20
 */
21
 
     
 
21
 
22
22
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
23
23
#error "Only <gio/gio.h> can be included directly."
24
24
#endif
26
26
#ifndef __G_EMBLEM_H__
27
27
#define __G_EMBLEM_H__
28
28
 
29
 
#include <gio/gicon.h>
30
29
#include <gio/gioenums.h>
31
30
 
32
 
 
33
31
G_BEGIN_DECLS
34
32
 
35
33
#define G_TYPE_EMBLEM         (g_emblem_get_type ())
41
39
 
42
40
/**
43
41
 * GEmblem:
44
 
 * 
 
42
 *
45
43
 * An object for Emblems
46
44
 */
47
45
typedef struct _GEmblem        GEmblem;
48
46
typedef struct _GEmblemClass   GEmblemClass;
49
47
 
50
48
GType          g_emblem_get_type        (void) G_GNUC_CONST;
51
 
  
 
49
 
52
50
GEmblem       *g_emblem_new             (GIcon         *icon);
53
51
GEmblem       *g_emblem_new_with_origin (GIcon         *icon,
54
52
                                         GEmblemOrigin  origin);