-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtbo-object-group.h
68 lines (54 loc) · 2.36 KB
/
tbo-object-group.h
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
/*
* This file is part of TBO, a gnome comic editor
* Copyright (C) 2010 Daniel Garcia Moreno <[email protected]>
*
* 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 __TBO_OBJECT_GROUP_H__
#define __TBO_OBJECT_GROUP_H__
#include <glib.h>
#include "tbo-object-base.h"
#include "tbo-object-group.h"
#define TBO_TYPE_OBJECT_GROUP (tbo_object_group_get_type ())
#define TBO_OBJECT_GROUP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TBO_TYPE_OBJECT_GROUP, TboObjectGroup))
#define TBO_IS_OBJECT_GROUP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TBO_TYPE_OBJECT_GROUP))
#define TBO_OBJECT_GROUP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TBO_TYPE_OBJECT_GROUP, TboObjectGroupClass))
#define TBO_IS_OBJECT_GROUP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TBO_TYPE_OBJECT_GROUP))
#define TBO_OBJECT_GROUP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TBO_TYPE_OBJECT_GROUP, TboObjectGroupClass))
typedef struct _TboObjectGroup TboObjectGroup;
typedef struct _TboObjectGroupClass TboObjectGroupClass;
struct _TboObjectGroup
{
TboObjectBase parent_instance;
/* instance members */
GList *objs;
void (*parent_move) (TboObjectBase *, enum MOVE_OPT type);
};
struct _TboObjectGroupClass
{
TboObjectBaseClass parent_class;
/* class members */
};
/* used by TBO_TYPE_OBJECT_GROUP */
GType tbo_object_group_get_type (void);
/*
* Method definitions.
*/
GObject * tbo_object_group_new ();
void tbo_object_group_add (TboObjectGroup *self, TboObjectBase *obj);
void tbo_object_group_del (TboObjectGroup *self, TboObjectBase *obj);
void tbo_object_group_set_vars (TboObjectBase *self);
void tbo_object_group_unset_vars (TboObjectBase *self);
void tbo_object_group_update_status (TboObjectGroup *self);
#endif /* __TBO_OBJECT_GROUP_H__ */