Split MMCategory into MMSoCategory and MMDBusCategory. The DBus one
[mmediamanager.git] / src / mm-category.h
blob0c9d117f9249c0138bed5b1afb572a18942e4368
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_CATEGORY_H__
22 #define __MM_CATEGORY_H__
24 #include <glib.h>
25 #include "mm-hit-collection.h"
26 #include "mm-filter.h"
27 #include "mm-application.h"
29 #define MM_TYPE_CATEGORY (mm_category_get_type())
30 #define MM_CATEGORY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj),\
31 MM_TYPE_CATEGORY, MMCategory))
32 #define MM_CATEGORY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass),\
33 MM_TYPE_CATEGORY, MMCategoryClass))
34 #define MM_IS_CATEGORY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj),\
35 MM_TYPE_CATEGORY))
36 #define MM_IS_CATEGORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj),\
37 MM_TYPE_CATEGORY))
38 #define MM_CATEGORY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj),\
39 MM_TYPE_CATEGORY, MMCategoryClass))
41 typedef struct _MMCategory MMCategory;
42 typedef struct _MMCategoryDetails MMCategoryDetails;
43 typedef struct _MMCategoryClass MMCategoryClass;
45 struct _MMCategory {
46 GObject parent_object;
47 MMCategoryDetails *details;
50 struct _MMCategoryClass {
51 GObjectClass parent_class;
53 MMHitCollection * (* get_hits) (MMCategory *category,
54 MMFilter *filter);
57 GType mm_category_get_type (void);
59 void mm_category_set_attributes (MMCategory *category,
60 MMApplication *app,
61 const char *name,
62 GIcon *icon);
63 /* return the icon of the category */
64 GIcon* mm_category_get_icon (MMCategory *category);
65 /* return the name of the category */
66 const char* mm_category_get_name (MMCategory *category);
67 MMApplication * mm_category_get_application (MMCategory *c);
68 /* return a collection of hits inside the category for the given filter */
69 MMHitCollection* mm_category_get_hits (MMCategory *category,
70 MMFilter *filter);
72 #endif /* __MM_CATEGORY_H__ */