3 * Copyright (C) 2001-2009 Jim Evins <evins@snaught.com>.
5 * Copyright (C) 2005 Austin Henry <ahenry@users.sourceforge.net>
7 * This file is part of gLabels.
9 * gLabels is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * gLabels is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with gLabels. If not, see <http://www.gnu.org/licenses/>.
23 #ifndef __MERGE_EVOLUTION_H__
24 #define __MERGE_EVOLUTION_H__
30 /* The following object arguments are available:
32 * name type description
33 * ---------------------------------------------------------------------------
34 * query gchar* The query used to select records
38 #define GL_TYPE_MERGE_EVOLUTION (gl_merge_evolution_get_type ())
39 #define GL_MERGE_EVOLUTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_MERGE_EVOLUTION, glMergeEvolution))
40 #define GL_MERGE_EVOLUTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_MERGE_EVOLUTION, glMergeEvolutionClass))
41 #define GL_IS_MERGE_EVOLUTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_MERGE_EVOLUTION))
42 #define GL_IS_MERGE_EVOLUTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_MERGE_EVOLUTION))
43 #define GL_MERGE_EVOLUTION_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), GL_TYPE_MERGE_EVOLUTION, glMergeEvolutionClass))
46 typedef struct _glMergeEvolution glMergeEvolution;
47 typedef struct _glMergeEvolutionClass glMergeEvolutionClass;
49 typedef struct _glMergeEvolutionPrivate glMergeEvolutionPrivate;
52 struct _glMergeEvolution {
55 glMergeEvolutionPrivate *priv;
58 struct _glMergeEvolutionClass {
59 glMergeClass parent_class;
63 GType gl_merge_evolution_get_type (void) G_GNUC_CONST;
67 #endif /* __MERGE_EVOLUTION_H__ */
72 * Local Variables: -- emacs
74 * c-basic-offset: 8 -- emacs
75 * tab-width: 8 -- emacs
76 * indent-tabs-mode: nil -- emacs