udapted vi.po
[rhythmbox.git] / rhythmdb / rhythmdb-gda.h
blobe776aab46edc98ebe42194cb8b76d79017fb09f0
1 /*
2 * arch-tag: Header for RhythmDB libgda/SQLite database
4 * Copyright (C) 2004 Benjamin Otte <otte@gnome.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
22 #ifndef RHYTHMDB_GDA_H
23 #define RHYTHMDB_GDA_H
25 #include "rhythmdb.h"
26 #include <libgda/libgda.h>
28 G_BEGIN_DECLS
30 #define RHYTHMDB_TYPE_GDA (rhythmdb_gda_get_type ())
31 #define RHYTHMDB_GDA(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), RHYTHMDB_TYPE_GDA, RhythmDBGda))
32 #define RHYTHMDB_GDA_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), RHYTHMDB_GDA_TYPE, RhythmDBGdaClass))
33 #define RHYTHMDB_IS_GDA(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), RHYTHMDB_TYPE_GDA))
34 #define RHYTHMDB_IS_GDA_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), RHYTHMDB_TYPE_GDA))
35 #define RHYTHMDB_GDA_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), RHYTHMDB_TYPE_GDA, RhythmDBGdaClass))
37 typedef struct RhythmDBGdaPrivate RhythmDBGdaPrivate;
39 typedef struct
41 RhythmDB rhythmdb;
43 GdaClient *client;
44 GdaConnection *conn;
46 } RhythmDBGda;
48 typedef struct
50 RhythmDBClass rhythmdb_class;
52 } RhythmDBGdaClass;
54 GType rhythmdb_gda_get_type (void);
56 RhythmDB * rhythmdb_gda_new (const char *name);
58 void rhythmdb_gda_ref (RhythmDBGda *db, gint id, gint count);
59 #define rhythmdb_entry_ref(DB, ENTRY) rhythmdb_gda_ref (RHYTHMDB_GDA (DB), GPOINTER_TO_INT (ENTRY), 1)
60 #define rhythmdb_entry_unref(DB, ENTRY) rhythmdb_gda_ref (RHYTHMDB_GDA (DB), GPOINTER_TO_INT (ENTRY), -1)
62 G_END_DECLS
64 #endif /* __RHYTHMBDB_GDA_H */