diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 10:39:40 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 10:39:40 +0100 |
commit | c6d48d99f3e91597602e39f79fd008f11894f869 (patch) | |
tree | e8448529941c7031559df9b22aad27fc0e5f8f6c | |
parent | 3d5001fdb4cc8a9032f044a781fe20e840e8906e (diff) | |
download | ffi-efl-c6d48d99f3e91597602e39f79fd008f11894f869.zip ffi-efl-c6d48d99f3e91597602e39f79fd008f11894f869.tar.gz |
parse elm_anchorview.h, generate elm_anchorview.rb
-rw-r--r-- | lib/efl/elementary_all.rb | 2 | ||||
-rw-r--r-- | lib/efl/elm/elm_anchorview.rb | 22 | ||||
-rw-r--r-- | lib/efl/native/elm/elm_anchorview.rb | 59 | ||||
-rwxr-xr-x | tools/genruby.rb | 2 |
4 files changed, 83 insertions, 2 deletions
diff --git a/lib/efl/elementary_all.rb b/lib/efl/elementary_all.rb index 8e04f84..47d800e 100644 --- a/lib/efl/elementary_all.rb +++ b/lib/efl/elementary_all.rb @@ -9,7 +9,7 @@ require 'efl/elm/elm_object_item' # #require 'efl/elm/elm_actionslider' require 'efl/elm/elm_anchorblock' -#require 'efl/elm/elm_anchorview' +require 'efl/elm/elm_anchorview' #require 'efl/elm/elm_app' #require 'efl/elm/elm_authors' #require 'efl/elm/elm_bg' diff --git a/lib/efl/elm/elm_anchorview.rb b/lib/efl/elm/elm_anchorview.rb new file mode 100644 index 0000000..93296a0 --- /dev/null +++ b/lib/efl/elm/elm_anchorview.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_anchorview' +# +module Efl + # + module Elm + # + class ElmAnchorView < ElmObject + # + include Helper + constructor :elm_anchorview_add + search_prefixes 'elm_anchorview_' + # + end + # + end +end +# +# EOF diff --git a/lib/efl/native/elm/elm_anchorview.rb b/lib/efl/native/elm/elm_anchorview.rb new file mode 100644 index 0000000..48e3de2 --- /dev/null +++ b/lib/efl/native/elm/elm_anchorview.rb @@ -0,0 +1,59 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl + # + module ElmAnchorView + # + FCT_PREFIX = 'elm_anchorview_' 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' + # + # TYPEDEFS + # typedef struct _Elm_Entry_Anchorview_Info Elm_Entry_Anchorview_Info; + typedef :pointer, :elm_entry_anchorview_info + # + # FUNCTIONS + fcts = [ + # EAPI Evas_Object *elm_anchorview_add(Evas_Object *parent); + [ :elm_anchorview_add, [ :evas_object ], :evas_object ], + # EAPI void elm_anchorview_hover_parent_set(Evas_Object *obj, Evas_Object *parent); + [ :elm_anchorview_hover_parent_set, [ :evas_object, :evas_object ], :void ], + # EAPI Evas_Object *elm_anchorview_hover_parent_get(const Evas_Object *obj); + [ :elm_anchorview_hover_parent_get, [ :evas_object ], :evas_object ], + # EAPI void elm_anchorview_hover_style_set(Evas_Object *obj, const char *style); + [ :elm_anchorview_hover_style_set, [ :evas_object, :string ], :void ], + # EAPI const char *elm_anchorview_hover_style_get(const Evas_Object *obj); + [ :elm_anchorview_hover_style_get, [ :evas_object ], :string ], + # EAPI void elm_anchorview_hover_end(Evas_Object *obj); + [ :elm_anchorview_hover_end, [ :evas_object ], :void ], + # EAPI void elm_anchorview_bounce_set(Evas_Object *obj, Eina_Bool h_bounce, Eina_Bool v_bounce); + [ :elm_anchorview_bounce_set, [ :evas_object, :bool, :bool ], :void ], + # EAPI void elm_anchorview_bounce_get(const Evas_Object *obj, Eina_Bool *h_bounce, Eina_Bool *v_bounce); + [ :elm_anchorview_bounce_get, [ :evas_object, :pointer, :pointer ], :void ], + # EAPI void elm_anchorview_item_provider_append(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * anchorview, const char *item), void *data); + # FIXME + # EAPI void elm_anchorview_item_provider_prepend(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * anchorview, const char *item), void *data); + # FIXME + # EAPI void elm_anchorview_item_provider_remove(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * anchorview, const char *item), void *data); + # FIXME + ] + # + attach_fcts fcts + # + end +end +# +# EOF diff --git a/tools/genruby.rb b/tools/genruby.rb index e385986..c0fa0c1 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -366,7 +366,7 @@ libs << elm_h('elm_scroller.h', 'ElmScroller') libs << elm_h('elm_entry.h', 'ElmEntry', ["#{NATIVE}/edje","#{NATIVE}/elementary","#{NATIVE}/elm/elm_icon","#{NATIVE}/elm/elm_scroller"]) libs << elm_h('elm_list.h', 'ElmList', ["#{NATIVE}/elementary","#{NATIVE}/elm/elm_scroller"]) libs << elm_h('elc_anchorblock.h', 'ElmAnchorBlock') -#libs << elm_h('elc_anchorview.h', 'ElmX') +libs << elm_h('elc_anchorview.h', 'ElmAnchorView') #libs << elm_h('elc_ctxpopup.h', 'ElmX') libs << elm_h('elc_fileselector_button.h', 'ElmFileSelectorButton') libs << elm_h('elc_fileselector_entry.h', 'ElmFileSelectorEntry') |