First skeleton of the project.
[mmediamanager.git] / src / mm-category.h
blobb04a380138555a75a4cb1e9a061c3d51b3a00bb0
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"
28 typedef struct _MMCategory MMCategory;
29 typedef struct _MMCategoryDetails MMCategoryDetails;
30 typedef struct _MMCategoryClass MMCategoryClass;
32 struct _MMCategory {
33 GObject parent_object;
34 MMCategoryDetails *details;
37 struct _MMCategoryClass {
38 GObjectClass parent_class;
41 /* return the icon of the category */
42 GIcon* mm_category_get_icon (MMCategory *category);
43 /* return the name of the category */
44 char * mm_category_get_name (MMCategory *category);
45 /* return a collection of hits inside the category for the given filter */
46 MMHitCollection* mm_category_get_hits (MMCategory *category,
47 MMFilter *filter);
49 #endif /* __MM_CATEGORY_H__ */