diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 10:36:41 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 10:36:41 +0100 |
commit | 3d5001fdb4cc8a9032f044a781fe20e840e8906e (patch) | |
tree | 03c7077cfdbf2e31e088d110c775aded3924c362 | |
parent | 4711c7bdf973189389a44c7815fa9ca56b18c7c8 (diff) | |
download | ffi-efl-3d5001fdb4cc8a9032f044a781fe20e840e8906e.zip ffi-efl-3d5001fdb4cc8a9032f044a781fe20e840e8906e.tar.gz |
parse elm_anchorblock.h, generate elm_anchorblock.rb
-rw-r--r-- | lib/efl/elementary_all.rb | 2 | ||||
-rw-r--r-- | lib/efl/elm/elm_anchorblock.rb | 22 | ||||
-rw-r--r-- | lib/efl/native/elm/elm_anchorblock.rb | 55 | ||||
-rwxr-xr-x | tools/genruby.rb | 2 |
4 files changed, 79 insertions, 2 deletions
diff --git a/lib/efl/elementary_all.rb b/lib/efl/elementary_all.rb index 298f821..8e04f84 100644 --- a/lib/efl/elementary_all.rb +++ b/lib/efl/elementary_all.rb @@ -8,7 +8,7 @@ require 'efl/elm/elm_object' require 'efl/elm/elm_object_item' # #require 'efl/elm/elm_actionslider' -#require 'efl/elm/elm_anchorblock' +require 'efl/elm/elm_anchorblock' #require 'efl/elm/elm_anchorview' #require 'efl/elm/elm_app' #require 'efl/elm/elm_authors' diff --git a/lib/efl/elm/elm_anchorblock.rb b/lib/efl/elm/elm_anchorblock.rb new file mode 100644 index 0000000..bd50a7b --- /dev/null +++ b/lib/efl/elm/elm_anchorblock.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_anchorblock' +# +module Efl + # + module Elm + # + class ElmAnchorBlock < ElmObject + # + include Helper + constructor :elm_anchorblock_add + search_prefixes 'elm_anchorblock_' + # + end + # + end +end +# +# EOF diff --git a/lib/efl/native/elm/elm_anchorblock.rb b/lib/efl/native/elm/elm_anchorblock.rb new file mode 100644 index 0000000..640a306 --- /dev/null +++ b/lib/efl/native/elm/elm_anchorblock.rb @@ -0,0 +1,55 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl + # + module ElmAnchorBlock + # + FCT_PREFIX = 'elm_anchorblock_' 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_Anchorblock_Info Elm_Entry_Anchorblock_Info; + typedef :pointer, :elm_entry_anchorblock_info + # + # FUNCTIONS + fcts = [ + # EAPI Evas_Object *elm_anchorblock_add(Evas_Object *parent); + [ :elm_anchorblock_add, [ :evas_object ], :evas_object ], + # EAPI void elm_anchorblock_hover_parent_set(Evas_Object *obj, Evas_Object *parent); + [ :elm_anchorblock_hover_parent_set, [ :evas_object, :evas_object ], :void ], + # EAPI Evas_Object *elm_anchorblock_hover_parent_get(const Evas_Object *obj); + [ :elm_anchorblock_hover_parent_get, [ :evas_object ], :evas_object ], + # EAPI void elm_anchorblock_hover_style_set(Evas_Object *obj, const char *style); + [ :elm_anchorblock_hover_style_set, [ :evas_object, :string ], :void ], + # EAPI const char *elm_anchorblock_hover_style_get(const Evas_Object *obj); + [ :elm_anchorblock_hover_style_get, [ :evas_object ], :string ], + # EAPI void elm_anchorblock_hover_end(Evas_Object *obj); + [ :elm_anchorblock_hover_end, [ :evas_object ], :void ], + # EAPI void elm_anchorblock_item_provider_append(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * anchorblock, const char *item), void *data); + # FIXME + # EAPI void elm_anchorblock_item_provider_prepend(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * anchorblock, const char *item), void *data); + # FIXME + # EAPI void elm_anchorblock_item_provider_remove(Evas_Object *obj, Evas_Object * (*func)(void *data, Evas_Object * anchorblock, const char *item), void *data); + # FIXME + ] + # + attach_fcts fcts + # + end +end +# +# EOF diff --git a/tools/genruby.rb b/tools/genruby.rb index f482327..e385986 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -365,7 +365,7 @@ libs << elm_h('elm_icon.h', 'ElmIcon') 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', 'ElmX') +libs << elm_h('elc_anchorblock.h', 'ElmAnchorBlock') #libs << elm_h('elc_anchorview.h', 'ElmX') #libs << elm_h('elc_ctxpopup.h', 'ElmX') libs << elm_h('elc_fileselector_button.h', 'ElmFileSelectorButton') |