4 * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
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.
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.
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
23 #include <Esmart/Esmart_Draggies.h>
25 #include <rb_evas_object.h>
26 #include <rb_ecore_evas.h>
28 #include "../rb_esmart.h"
30 static VALUE c_new (VALUE klass, VALUE ecore_evas)
34 Evas_Object **draggies;
36 CHECK_CLASS (ecore_evas, cEcoreEvas);
37 GET_OBJ (ecore_evas, Ecore_Evas *, ee);
39 self = Data_Make_Struct (klass, Evas_Object *, c_evas_object_mark,
40 c_evas_object_free, draggies);
41 *draggies = esmart_draggies_new (*ee);
44 evas = rb_intern ("evas");
46 argv[0] = rb_funcall (ecore_evas, evas, 0);
47 rb_obj_call_init (self, 1, argv);
52 static VALUE c_button_set (VALUE self, VALUE val)
54 GET_OBJ (self, Evas_Object *, e);
56 Check_Type (val, T_FIXNUM);
58 esmart_draggies_button_set (*e, FIX2INT (val));
63 void Init_esmart_draggies (void)
67 rb_require ("esmart");
68 rb_require ("ecore_evas");
70 c = rb_define_class_under (mEsmart, "Draggies", cEvasObject);
72 rb_define_singleton_method (c, "new", c_new, 1);
73 rb_define_method (c, "button=", c_button_set, 1);