diff options
Diffstat (limited to 'lib/efl/native/elm/elm_plug.rb')
-rw-r--r-- | lib/efl/native/elm/elm_plug.rb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/lib/efl/native/elm/elm_plug.rb b/lib/efl/native/elm/elm_plug.rb new file mode 100644 index 0000000..97cb4f2 --- /dev/null +++ b/lib/efl/native/elm/elm_plug.rb @@ -0,0 +1,39 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl + # + module ElmPlug + # + FCT_PREFIX = 'elm_plug_' unless const_defined? :FCT_PREFIX + # + def self.method_missing meth, *args, &block + sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX + self.send sym, *args, &block + end + # + end + # + module Native + # + ffi_lib 'elementary-ver-pre-svn-09.so.0' + # + # FUNCTIONS + fcts = [ + # EAPI Evas_Object *elm_plug_add(Evas_Object *parent); + [ :elm_plug_add, [ :evas_object ], :evas_object ], + # EAPI Eina_Bool elm_plug_connect(Evas_Object *obj, const char *svcname, int svcnum, Eina_Bool svcsys); + [ :elm_plug_connect, [ :evas_object, :string, :int, :bool ], :bool ], + # EAPI Evas_Object *elm_plug_image_object_get(const Evas_Object *obj); + [ :elm_plug_image_object_get, [ :evas_object ], :evas_object ], + ] + # + attach_fcts fcts + # + end +end +# +# EOF |