]> git.sur5r.net Git - glabels/blob - src/media-select.h
Imported Upstream version 3.0.0
[glabels] / src / media-select.h
1 /*
2  *  media-select.h
3  *  Copyright (C) 2001-2009  Jim Evins <evins@snaught.com>.
4  *
5  *  This file is part of gLabels.
6  *
7  *  gLabels is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  gLabels is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with gLabels.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #ifndef __MEDIA_SELECT_H__
22 #define __MEDIA_SELECT_H__
23
24 #include <gtk/gtk.h>
25
26
27 G_BEGIN_DECLS
28
29 #define GL_TYPE_MEDIA_SELECT (gl_media_select_get_type ())
30 #define GL_MEDIA_SELECT(obj) \
31         (G_TYPE_CHECK_INSTANCE_CAST((obj), GL_TYPE_MEDIA_SELECT, glMediaSelect ))
32 #define GL_MEDIA_SELECT_CLASS(klass) \
33         (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_MEDIA_SELECT, glMediaSelectClass))
34 #define GL_IS_MEDIA_SELECT(obj) \
35         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_MEDIA_SELECT))
36 #define GL_IS_MEDIA_SELECT_CLASS(klass) \
37         (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_MEDIA_SELECT))
38
39 typedef struct _glMediaSelect         glMediaSelect;
40 typedef struct _glMediaSelectClass    glMediaSelectClass;
41
42 typedef struct _glMediaSelectPrivate  glMediaSelectPrivate;
43
44 struct _glMediaSelect {
45         GtkVBox                    parent_widget;
46
47         glMediaSelectPrivate  *priv;
48 };
49
50 struct _glMediaSelectClass {
51         GtkVBoxClass               parent_class;
52
53         void (*changed) (glMediaSelect *media_select, gpointer user_data);
54 };
55
56
57 GType      gl_media_select_get_type      (void) G_GNUC_CONST;
58
59 GtkWidget *gl_media_select_new           (void);
60
61 gchar     *gl_media_select_get_name      (glMediaSelect *this);
62
63 void       gl_media_select_set_name      (glMediaSelect *this,
64                                           gchar         *name);
65
66 void       gl_media_select_get_filter_parameters (glMediaSelect *this,
67                                                   gchar        **page_size_id,
68                                                   gchar        **category_id);
69
70 void       gl_media_select_set_filter_parameters (glMediaSelect *this,
71                                                   const gchar   *page_size_id,
72                                                   const gchar   *category_id);
73
74 G_END_DECLS
75
76 #endif
77
78
79
80 /*
81  * Local Variables:       -- emacs
82  * mode: C                -- emacs
83  * c-basic-offset: 8      -- emacs
84  * tab-width: 8           -- emacs
85  * indent-tabs-mode: nil  -- emacs
86  * End:                   -- emacs
87  */