~ml-launchpad/ubuntu/natty/gcompris/fix-for-777349

« back to all changes in this revision

Viewing changes to src/libgnomecanvas/gnome-canvas-bpath.h

  • Committer: Bazaar Package Importer
  • Author(s): Marc Gariepy, Marc Gariepy, Stephane Graber
  • Date: 2010-01-04 17:42:49 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20100104174249-7bupatd9dtxyhvs4
Tags: 9.0-0ubuntu1
[Marc Gariepy]
* New upstream release (9.0).
* Remove cache.c from POTFILES to avoid FTBFS
* Remove unneeded rm in debian/rules (file no longer exists upstream)

[Stephane Graber]
* Bump Debian standards to 3.8.3
* Add patch system (dpatch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Bpath item type for GnomeCanvas widget
2
 
 *
3
 
 * GnomeCanvas is basically a port of the Tk toolkit's most excellent canvas widget.  Tk is
4
 
 * copyrighted by the Regents of the University of California, Sun Microsystems, and other parties.
5
 
 *
6
 
 * Copyright (C) 1998,1999 The Free Software Foundation
7
 
 *
8
 
 * Authors: Federico Mena <federico@nuclecu.unam.mx>
9
 
 *          Raph Levien <raph@acm.org>
10
 
 *          Lauris Kaplinski <lauris@ximian.com>
11
 
 *          Rusty Conover <rconover@bangtail.net>
12
 
 */
13
 
 
14
 
#ifndef GNOME_CANVAS_BPATH_H
15
 
#define GNOME_CANVAS_BPATH_H
16
 
 
17
 
#include <libgnomecanvas/gnome-canvas.h>
18
 
#include <libgnomecanvas/gnome-canvas-shape.h>
19
 
#include <libgnomecanvas/gnome-canvas-path-def.h>
20
 
 
21
 
G_BEGIN_DECLS
22
 
 
23
 
 
24
 
/* Bpath item for the canvas.
25
 
 *
26
 
 * The following object arguments are available:
27
 
 *
28
 
 * name                 type                    read/write      description
29
 
 * ------------------------------------------------------------------------------------------
30
 
 * bpath                GnomeCanvasPathDef *            RW              Pointer to an GnomeCanvasPathDef structure.
31
 
 *                                                              This can be created by a call to
32
 
 *                                                              gp_path_new() in (gp-path.h).
33
 
 */
34
 
 
35
 
#define GNOME_TYPE_CANVAS_BPATH            (gnome_canvas_bpath_get_type ())
36
 
#define GNOME_CANVAS_BPATH(obj)            (GTK_CHECK_CAST ((obj), GNOME_TYPE_CANVAS_BPATH, GnomeCanvasBpath))
37
 
#define GNOME_CANVAS_BPATH_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GNOME_TYPE_CANVAS_BPATH, GnomeCanvasBpathClass))
38
 
#define GNOME_IS_CANVAS_BPATH(obj)         (GTK_CHECK_TYPE ((obj), GNOME_TYPE_CANVAS_BPATH))
39
 
#define GNOME_IS_CANVAS_BPATH_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GNOME_TYPE_CANVAS_BPATH))
40
 
 
41
 
 
42
 
typedef struct _GnomeCanvasBpath GnomeCanvasBpath;
43
 
typedef struct _GnomeCanvasBpathPriv GnomeCanvasBpathPriv;
44
 
typedef struct _GnomeCanvasBpathClass GnomeCanvasBpathClass;
45
 
 
46
 
struct _GnomeCanvasBpath {
47
 
        GnomeCanvasShape item;
48
 
        
49
 
};
50
 
 
51
 
struct _GnomeCanvasBpathClass {
52
 
        GnomeCanvasShapeClass parent_class;
53
 
};
54
 
 
55
 
 
56
 
/* Standard Gtk function */
57
 
GType gnome_canvas_bpath_get_type (void) G_GNUC_CONST;
58
 
 
59
 
G_END_DECLS
60
 
 
61
 
#endif