]> git.sur5r.net Git - glabels/blob - src/merge-evolution.h
Imported Upstream version 2.2.8
[glabels] / src / merge-evolution.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
2
3 /*
4  *  (GLABELS) Label and Business Card Creation program for GNOME
5  *
6  *  merge_evolution.h:  evolution merge backend module header file
7  *
8  *  Copyright (C) 2002  Jim Evins <evins@snaught.com>.
9  *  and
10  *  Copyright (C) 2005  Austin Henry <ahenry@users.sourceforge.net>
11  *
12  *  This program is free software; you can redistribute it and/or modify
13  *  it under the terms of the GNU General Public License as published by
14  *  the Free Software Foundation; either version 2 of the License, or
15  *  (at your option) any later version.
16  *
17  *  This program is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *  GNU General Public License for more details.
21  *
22  *  You should have received a copy of the GNU General Public License
23  *  along with this program; if not, write to the Free Software
24  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
25  */
26 #ifndef __MERGE_EVOLUTION_H__
27 #define __MERGE_EVOLUTION_H__
28
29 #include "merge.h"
30
31 G_BEGIN_DECLS
32
33 /* The following object arguments are available:
34  *
35  * name               type             description
36  * ---------------------------------------------------------------------------
37  * query              gchar*           The query used to select records
38  *
39  */
40
41 #define GL_TYPE_MERGE_EVOLUTION              (gl_merge_evolution_get_type ())
42 #define GL_MERGE_EVOLUTION(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_MERGE_EVOLUTION, glMergeEvolution))
43 #define GL_MERGE_EVOLUTION_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_MERGE_EVOLUTION, glMergeEvolutionClass))
44 #define GL_IS_MERGE_EVOLUTION(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_MERGE_EVOLUTION))
45 #define GL_IS_MERGE_EVOLUTION_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_MERGE_EVOLUTION))
46 #define GL_MERGE_EVOLUTION_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), GL_TYPE_MERGE_EVOLUTION, glMergeEvolutionClass))
47
48
49 typedef struct _glMergeEvolution          glMergeEvolution;
50 typedef struct _glMergeEvolutionClass     glMergeEvolutionClass;
51
52 typedef struct _glMergeEvolutionPrivate   glMergeEvolutionPrivate;
53
54
55 struct _glMergeEvolution {
56         glMerge                   object;
57
58         glMergeEvolutionPrivate  *priv;
59 };
60
61 struct _glMergeEvolutionClass {
62         glMergeClass              parent_class;
63 };
64
65
66 GType             gl_merge_evolution_get_type            (void) G_GNUC_CONST;
67
68 G_END_DECLS
69
70 #endif /* __MERGE_EVOLUTION_H__ */