diff options
-rw-r--r-- | lib/efl/elementary_all.rb | 2 | ||||
-rw-r--r-- | lib/efl/elm/elm_plug.rb | 22 | ||||
-rw-r--r-- | lib/efl/native/elm/elm_plug.rb | 39 | ||||
-rwxr-xr-x | tools/genruby.rb | 2 |
4 files changed, 63 insertions, 2 deletions
diff --git a/lib/efl/elementary_all.rb b/lib/efl/elementary_all.rb index 7dae092..deadf6d 100644 --- a/lib/efl/elementary_all.rb +++ b/lib/efl/elementary_all.rb @@ -65,7 +65,7 @@ require 'efl/elm/elm_panel' require 'efl/elm/elm_panes' require 'efl/elm/elm_photocam' require 'efl/elm/elm_photo' -#require 'efl/elm/elm_plug' +require 'efl/elm/elm_plug' require 'efl/elm/elm_progressbar' require 'efl/elm/elm_radio' require 'efl/elm/elm_route' diff --git a/lib/efl/elm/elm_plug.rb b/lib/efl/elm/elm_plug.rb new file mode 100644 index 0000000..4f43530 --- /dev/null +++ b/lib/efl/elm/elm_plug.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_plug' +# +module Efl + # + module Elm + # + class ElmPlug < ElmObject + # + include Helper + constructor :elm_plug_add + search_prefixes 'elm_plug_' + # + end + # + end +end +# +# EOF 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 diff --git a/tools/genruby.rb b/tools/genruby.rb index faa2e42..3bfa094 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -421,7 +421,7 @@ libs << elm_h('elm_panes.h', 'ElmPanes') libs << elm_h('elm_password.h', 'ElmPassword') libs << elm_h('elm_photocam.h', 'ElmPhotoCam') libs << elm_h('elm_photo.h', 'ElmPhoto') -#libs << elm_h('elm_plug.h', 'ElmPlug') +libs << elm_h('elm_plug.h', 'ElmPlug') libs << elm_h('elm_progressbar.h', 'ElmProgressBar') libs << elm_h('elm_radio.h', 'ElmRadio') libs << elm_h('elm_route.h', 'ElmRoute') |