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

« back to all changes in this revision

Viewing changes to src/query-editor.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
/* query-editor.h
 
2
 *
 
3
 * Copyright (C) 2004 - 2007 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 __QUERY_EDITOR__
 
22
#define __QUERY_EDITOR__
 
23
 
 
24
#include <glib/gi18n-lib.h>
 
25
#include <gtk/gtk.h>
 
26
#include <libgnomedb/libgnomedb.h>
 
27
 
 
28
G_BEGIN_DECLS
 
29
 
 
30
#define QUERY_EDITOR_TYPE          (query_editor_get_type())
 
31
#define QUERY_EDITOR(obj)          G_TYPE_CHECK_INSTANCE_CAST (obj, query_editor_get_type(), QueryEditor)
 
32
#define QUERY_EDITOR_CLASS(klass)  G_TYPE_CHECK_CLASS_CAST (klass, query_editor_get_type (), QueryEditorClass)
 
33
#define IS_QUERY_EDITOR(obj)       G_TYPE_CHECK_INSTANCE_TYPE (obj, query_editor_get_type ())
 
34
 
 
35
 
 
36
typedef struct _QueryEditor      QueryEditor;
 
37
typedef struct _QueryEditorClass QueryEditorClass;
 
38
typedef struct _QueryEditorPriv  QueryEditorPriv;
 
39
 
 
40
 
 
41
/* struct for the object's data */
 
42
struct _QueryEditor
 
43
{
 
44
        GtkVBox          object;
 
45
 
 
46
        QueryEditorPriv *priv;
 
47
};
 
48
 
 
49
/* struct for the object's class */
 
50
struct _QueryEditorClass
 
51
{
 
52
        GtkVBoxClass     parent_class;
 
53
};
 
54
 
 
55
/* 
 
56
 * Generic widget's methods 
 
57
*/
 
58
GType      query_editor_get_type            (void);
 
59
GtkWidget *query_editor_new                 (GdaQuery *query);
 
60
 
 
61
G_END_DECLS
 
62
 
 
63
#endif
 
64
 
 
65
 
 
66