summaryrefslogtreecommitdiff
path: root/src/gl-categorylist.h
blob: a1808619727aad50236c57beb7772210a51214ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 *  GNOME Logs - View and search logs
 *  Copyright (C) 2013  Red Hat, Inc.
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef GL_CATEGORY_LIST_H_
#define GL_CATEGORY_LIST_H_

#include <gtk/gtk.h>

G_BEGIN_DECLS

typedef struct
{
    /*< private >*/
    GtkWidget parent_instance;
} GlCategoryList;

typedef struct
{
    /*< private >*/
    GtkWidgetClass parent_class;
} GlCategoryListClass;

/*
 * GlCategoryListFilter:
 * @GL_CATEGORY_LIST_FILTER_IMPORTANT:
 * @GL_CATEGORY_LIST_FILTER_ALERTS:
 * @GL_CATEGORY_LIST_FILTER_STARRED:
 * @GL_CATEGORY_LIST_FILTER_ALL:
 * @GL_CATEGORY_LIST_FILTER_APPLICATIONS:
 * @GL_CATEGORY_LIST_FILTER_SYSTEM:
 * @GL_CATEGORY_LIST_FILTER_SECURITY:
 * @GL_CATEGORY_LIST_FILTER_HARDWARE:
 * @GL_CATEGORY_LIST_FILTER_UPDATES:
 * @GL_CATEGORY_LIST_FILTER_USAGE:
 *
 * The category, selected in #GlCategoryList, to filter the events by.
 */
typedef enum
{
    GL_CATEGORY_LIST_FILTER_IMPORTANT,
    GL_CATEGORY_LIST_FILTER_ALERTS,
    GL_CATEGORY_LIST_FILTER_STARRED,
    GL_CATEGORY_LIST_FILTER_ALL,
    GL_CATEGORY_LIST_FILTER_APPLICATIONS,
    GL_CATEGORY_LIST_FILTER_SYSTEM,
    GL_CATEGORY_LIST_FILTER_SECURITY,
    GL_CATEGORY_LIST_FILTER_HARDWARE,
    GL_CATEGORY_LIST_FILTER_UPDATES,
    GL_CATEGORY_LIST_FILTER_USAGE
} GlCategoryListFilter;

#define GL_TYPE_CATEGORY_LIST (gl_category_list_get_type ())
#define GL_CATEGORY_LIST(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GL_TYPE_CATEGORY_LIST, GlCategoryList))

GType gl_category_list_get_type (void);
GtkWidget * gl_category_list_new (void);
GlCategoryListFilter gl_category_list_get_category (GlCategoryList *list);

G_END_DECLS

#endif /* GL_CATEGORY_LIST_H_ */