]> Pileus Git - ~andy/gtk/blob - gtk/gtkbitmaskprivate.h
64ffaaeb44bde62782846f913eb1534a92f2d279
[~andy/gtk] / gtk / gtkbitmaskprivate.h
1 /*
2  * Copyright © 2011 Red Hat Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  *
17  * Authors: Benjamin Otte <otte@gnome.org>
18  */
19
20 #ifndef __GTK_BITMASK_PRIVATE_H__
21 #define __GTK_BITMASK_PRIVATE_H__
22
23 #include <glib.h>
24
25 G_BEGIN_DECLS
26
27 #ifdef GTK_INSIDE_BITMASK_C
28 typedef GArray GtkBitmask;
29 #else
30 typedef struct _GtkBitmask           GtkBitmask;
31 #endif
32
33
34 GtkBitmask *   _gtk_bitmask_new                  (void);
35 GtkBitmask *   _gtk_bitmask_copy                 (const GtkBitmask  *mask);
36 void           _gtk_bitmask_free                 (GtkBitmask        *mask);
37
38 char *         _gtk_bitmask_to_string            (const GtkBitmask  *mask);
39 void           _gtk_bitmask_print                (const GtkBitmask  *mask,
40                                                   GString           *string);
41
42 void           _gtk_bitmask_intersect            (GtkBitmask        *mask,
43                                                   const GtkBitmask  *other);
44 void           _gtk_bitmask_union                (GtkBitmask        *mask,
45                                                   const GtkBitmask  *other);
46 void           _gtk_bitmask_subtract             (GtkBitmask        *mask,
47                                                   const GtkBitmask  *other);
48
49 gboolean       _gtk_bitmask_get                  (const GtkBitmask  *mask,
50                                                   guint              index_);
51 void           _gtk_bitmask_set                  (GtkBitmask        *mask,
52                                                   guint              index_,
53                                                   gboolean           value);
54
55 void           _gtk_bitmask_invert_range         (GtkBitmask        *mask,
56                                                   guint              start,
57                                                   guint              end);
58
59 gboolean       _gtk_bitmask_is_empty             (const GtkBitmask  *mask);
60 gboolean       _gtk_bitmask_equals               (const GtkBitmask  *mask,
61                                                   const GtkBitmask  *other);
62 gboolean       _gtk_bitmask_intersects           (const GtkBitmask  *mask,
63                                                   const GtkBitmask  *other);
64
65 G_END_DECLS
66
67 #endif /* __GTK_BITMASK_PRIVATE_H__ */