Class instantiation fixes.
[ruby-esmart.git] / src / esmart_draggies / rb_esmart_draggies.c
1 /*
2  * $Id: rb_esmart_draggies.c 356 2006-02-10 18:27:31Z tilman $
3  *
4  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <ruby.h>
22
23 #include <Esmart/Esmart_Draggies.h>
24 #include <evas/rb_evas.h>
25 #include <evas/rb_evas_object.h>
26 #include <ecore/rb_ecore_evas.h>
27
28 #include "../rb_esmart.h"
29
30 static void on_mouse_up (void *data, Evas *e, Evas_Object *o, void *ev)
31 {
32         ecore_evas_raise (data);
33 }
34
35 static VALUE c_init (VALUE self, VALUE ecore_evas)
36 {
37         static ID evas;
38         VALUE tmp;
39
40         CHECK_CLASS (ecore_evas, cEcoreEvas);
41         GET_OBJ (ecore_evas, RbEcoreEvas, ee);
42         GET_OBJ (self, RbEvasObject, draggies);
43
44         draggies->real = esmart_draggies_new (ee->real);
45
46         if (!evas)
47                 evas = rb_intern ("evas");
48
49         tmp = rb_funcall (ecore_evas, evas, 0);
50         rb_call_super (1, &tmp);
51
52         esmart_draggies_event_callback_add (draggies->real,
53                                             EVAS_CALLBACK_MOUSE_UP,
54                                             on_mouse_up, ee->real);
55
56         return self;
57 }
58
59 static VALUE c_button_set (VALUE self, VALUE val)
60 {
61         GET_OBJ (self, RbEvasObject, e);
62
63         Check_Type (val, T_FIXNUM);
64
65         esmart_draggies_button_set (e->real, FIX2INT (val));
66
67         return Qnil;
68 }
69
70 void Init_esmart_draggies (void)
71 {
72         VALUE c;
73
74         rb_require ("esmart");
75         rb_require ("ecore_evas");
76
77         c = rb_define_class_under (mEsmart, "Draggies", cEvasObject);
78
79         rb_define_method (c, "initialize", c_init, 1);
80         rb_define_method (c, "button=", c_button_set, 1);
81 }