~ubuntu-branches/ubuntu/karmic/mergeant/karmic

« back to all changes in this revision

Viewing changes to libmergeant/graph/mg-canvas-db-relations.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo R. Montesino
  • Date: 2007-11-29 08:44:48 UTC
  • mfrom: (2.1.4 hardy)
  • Revision ID: james.westby@ubuntu.com-20071129084448-6aon73d22bv6hzfw
Tags: 0.67-3
* Re-enable installation of the mime files in mergeant.install
* mergeant.dirs: create usr/share/mime/packages to make dh_installmime add
  the update-mime-database code snippets

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* mg-canvas-db-relations.h
2
 
 *
3
 
 * Copyright (C) 2004 Vivien Malerba
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU General Public License as
7
 
 * published by the Free Software Foundation; either version 2 of the
8
 
 * License, or (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, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18
 
 * USA
19
 
 */
20
 
 
21
 
#ifndef __MG_CANVAS_DB_RELATIONS__
22
 
#define __MG_CANVAS_DB_RELATIONS__
23
 
 
24
 
#include "mg-canvas.h"
25
 
 
26
 
G_BEGIN_DECLS
27
 
 
28
 
#define MG_CANVAS_DB_RELATIONS_TYPE          (mg_canvas_db_relations_get_type())
29
 
#define MG_CANVAS_DB_RELATIONS(obj)          G_TYPE_CHECK_INSTANCE_CAST (obj, mg_canvas_db_relations_get_type(), MgCanvasDbRelations)
30
 
#define MG_CANVAS_DB_RELATIONS_CLASS(klass)  G_TYPE_CHECK_CLASS_CAST (klass, mg_canvas_db_relations_get_type (), MgCanvasDbRelationsClass)
31
 
#define IS_MG_CANVAS_DB_RELATIONS(obj)       G_TYPE_CHECK_INSTANCE_TYPE (obj, mg_canvas_db_relations_get_type ())
32
 
 
33
 
 
34
 
typedef struct _MgCanvasDbRelations        MgCanvasDbRelations;
35
 
typedef struct _MgCanvasDbRelationsClass   MgCanvasDbRelationsClass;
36
 
typedef struct _MgCanvasDbRelationsPrivate MgCanvasDbRelationsPrivate;
37
 
 
38
 
 
39
 
/* struct for the object's data */
40
 
struct _MgCanvasDbRelations
41
 
{
42
 
        MgCanvas                       widget;
43
 
 
44
 
        MgCanvasDbRelationsPrivate    *priv;
45
 
};
46
 
 
47
 
/* struct for the object's class */
48
 
struct _MgCanvasDbRelationsClass
49
 
{
50
 
        MgCanvasClass                  parent_class;
51
 
};
52
 
 
53
 
/* generic widget's functions */
54
 
guint            mg_canvas_db_relations_get_type        (void);
55
 
 
56
 
GtkWidget       *mg_canvas_db_relations_new             (MgConf *conf, MgGraph *graph);
57
 
 
58
 
G_END_DECLS
59
 
 
60
 
#endif