Fix a typo and add prototypes for future methods to access hit value fields.
[mmediamanager.git] / src / mm-hit.h
blob4c8ec24f465b130f1630b4810fbdf7e3597f82d2
1 /* MManager - a Desktop wide manager for multimedia applications.
3 * Copyright (C) 2008 Cosimo Cecchi <cosimoc@gnome.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library 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 GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef __MM_HIT_H__
22 #define __MM_HIT_H__
24 #include <glib.h>
26 #define MM_TYPE_HIT (mm_hit_get_type())
27 #define MM_HIT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj),\
28 MM_TYPE_HIT, MMHit))
29 #define MM_HIT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass),\
30 MM_TYPE_HIT, MMHitClass))
31 #define MM_IS_HIT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj),\
32 MM_TYPE_HIT))
33 #define MM_IS_HIT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj),\
34 MM_TYPE_HIT))
35 #define MM_HIT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj),\
36 MM_TYPE_HIT, MMHitClass))
38 typedef struct _MMHit MMHit;
39 typedef struct _MMHitDetails MMHitDetails;
40 typedef struct _MMHitClass MMHitClass;
42 struct _MMHit {
43 GObject parent_object;
44 MMHitDetails *details;
47 struct _MMHitClass {
48 GObjectClass parent_class;
50 GHashTable * (*get_values) (MMHit *hit,
51 const char *attributes);
52 void (*set_values) (MMHit *hit,
53 GHashTable *attributes_and_values);
56 /* FIXME: temporary properties, will check back later
58 * uri, name.
61 /* Use g_object_new (MM_TYPE_HIT, ...) to create one */
63 GType mm_hit_get_type (void);
65 GHashTable * mm_hit_get_values (MMHit *hit,
66 const char *attributes);
68 /* this should be private to module implementations */
69 void mm_hit_set_values (MMHit *hit,
70 GHashTable *attributes_and_values);
72 #endif /* __MM_HIT_H__ */