diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 12:29:44 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 12:29:44 +0100 |
commit | b79cc483a8a09f9589cf7b9ef31bc78d947f24ff (patch) | |
tree | d54670205cf43d12d8ecd7dd1d91597731525a9a | |
parent | e2fa9dcf9bf6b3ef5428f1cc13feacb2cfd0e6a9 (diff) | |
download | ffi-efl-b79cc483a8a09f9589cf7b9ef31bc78d947f24ff.zip ffi-efl-b79cc483a8a09f9589cf7b9ef31bc78d947f24ff.tar.gz |
parse elm_password.h, generate elm_password.rb
-rw-r--r-- | lib/efl/elementary_all.rb | 1 | ||||
-rw-r--r-- | lib/efl/native/elm/elm_password.rb | 41 | ||||
-rwxr-xr-x | tools/genruby.rb | 2 |
3 files changed, 42 insertions, 2 deletions
diff --git a/lib/efl/elementary_all.rb b/lib/efl/elementary_all.rb index c38ff79..28297e0 100644 --- a/lib/efl/elementary_all.rb +++ b/lib/efl/elementary_all.rb @@ -63,7 +63,6 @@ require 'efl/elm/elm_notify' require 'efl/elm/elm_pager' require 'efl/elm/elm_panel' require 'efl/elm/elm_panes' -#require 'efl/elm/elm_password' #require 'efl/elm/elm_photocam' #require 'efl/elm/elm_photo' #require 'efl/elm/elm_plug' diff --git a/lib/efl/native/elm/elm_password.rb b/lib/efl/native/elm/elm_password.rb new file mode 100644 index 0000000..0dc8207 --- /dev/null +++ b/lib/efl/native/elm/elm_password.rb @@ -0,0 +1,41 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl + # + module ElmPassword + # + FCT_PREFIX = 'elm_password_' 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 Eina_Bool elm_password_show_last_get(void); + [ :elm_password_show_last_get, [ ], :bool ], + # EAPI void elm_password_show_last_set(Eina_Bool password_show_last); + [ :elm_password_show_last_set, [ :bool ], :void ], + # EAPI double elm_password_show_last_timeout_get(void); + [ :elm_password_show_last_timeout_get, [ ], :double ], + # EAPI void elm_password_show_last_timeout_set(double password_show_last_timeout); + [ :elm_password_show_last_timeout_set, [ :double ], :void ], + ] + # + attach_fcts fcts + # + end +end +# +# EOF diff --git a/tools/genruby.rb b/tools/genruby.rb index 87a41c4..4a03459 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -419,7 +419,7 @@ libs << elm_h('elm_notify.h', 'ElmNotify') libs << elm_h('elm_pager.h', 'ElmPager') libs << elm_h('elm_panel.h', 'ElmPanel') libs << elm_h('elm_panes.h', 'ElmPanes') -#libs << elm_h('elm_password.h', 'ElmX') +libs << elm_h('elm_password.h', 'ElmPassword') #libs << elm_h('elm_photocam.h', 'ElmX') #libs << elm_h('elm_photo.h', 'ElmX') #libs << elm_h('elm_plug.h', 'ElmX') |