ae52292f4d3a7a3787cc99c08845f42726767e23
[mmediamanager.git] / libmmanager / mm-hit-collection-provider.h
blobae52292f4d3a7a3787cc99c08845f42726767e23
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_COLLECTION_PROVIDER_H__
22 #define __MM_HIT_COLLECTION_PROVIDER_H__
24 #include <glib-object.h>
25 #include "mm-category.h"
26 #include "mm-filter.h"
28 #define MM_TYPE_HIT_COLLECTION_PROVIDER (mm_hit_collection_provider_get_type ())
29 #define MM_HIT_COLLECTION_PROVIDER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj),\
30 MM_TYPE_HIT_COLLECTION_PROVIDER, MMHitCollectionProvider))
31 #define MM_IS_HIT_COLLECTION_PROVIDER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj),\
32 MM_TYPE_HIT_COLLECTION_PROVIDER))
33 #define MM_HIT_COLLECTION_PROVIDER_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj),\
34 MM_TYPE_HIT_COLLECTION_PROVIDER, MMHitCollectionProviderIface))
36 typedef struct _MMHitCollectionProvider MMHitCollectionProvider;
37 typedef struct _MMHitCollectionProviderIface MMHitCollectionProviderIface;
39 struct _MMHitCollectionProviderIface {
40 GTypeInterface interface;
42 MMHitCollection* (*get_hits) (MMHitCollectionProvider *provider,
43 MMCategory *category,
44 MMFilter *filter);
47 /* Interface functions */
48 GType mm_hit_collection_provider_get_type (void);
49 MMHitCollection* mm_hit_collection_provider_get_hits (MMHitCollectionProvider *provider,
50 MMCategory *category,
51 MMFilter *filter);
53 #endif /* __MM_HIT_COLLECTION_PROVIDER_H__ */