diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 16:47:35 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 16:47:35 +0100 |
commit | 0567a18b2297a05e937374375ed751310551995c (patch) | |
tree | f615682193f2a3194b0520d1dd1594a2a6ddd827 /tools | |
parent | 6c9e09c5e7d57353e079462d3d072a2594d04b81 (diff) | |
download | ffi-efl-0567a18b2297a05e937374375ed751310551995c.zip ffi-efl-0567a18b2297a05e937374375ed751310551995c.tar.gz |
parse elm_hoversel.h, generate elm_hoversel.rb
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/extract-api.sh | 1 | ||||
-rwxr-xr-x | tools/genruby.rb | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tools/extract-api.sh b/tools/extract-api.sh index 03bddb1..01799d2 100755 --- a/tools/extract-api.sh +++ b/tools/extract-api.sh @@ -72,6 +72,7 @@ for header in \ "${INCLUDE}/elementary-0/elm_flipselector.h" \ "${INCLUDE}/elementary-0/elm_diskselector.h" \ "${INCLUDE}/elementary-0/elm_hover.h" \ + "${INCLUDE}/elementary-0/elc_hoversel.h" \ "${INCLUDE}/elementary-0/elm_colorselector.h" \ ; do # diff --git a/tools/genruby.rb b/tools/genruby.rb index bdcb271..8ff114c 100755 --- a/tools/genruby.rb +++ b/tools/genruby.rb @@ -481,6 +481,11 @@ libs << { :requires=>["#{NATIVE}/elementary","#{NATIVE}/elm/elm_scroller"], :constants=>[] } libs << { + :lib=>ELM_LIB,:header=>'elc_hoversel.h', + :modname=>'ElmHoverSel', :prefix=>'elm_hoversel', :outfile=>'elm/elm_hoversel.rb', + :requires=>["#{NATIVE}/elementary","#{NATIVE}/elm/elm_icon"], :constants=>[] +} +libs << { :lib=>ELM_LIB,:header=>'elm_colorselector.h', :modname=>'ElmColorSelector', :prefix=>'elm_colorselector', :outfile=>'elm/elm_colorselector.rb', :requires=>["#{NATIVE}/elementary","#{NATIVE}/elm/elm_scroller"], :constants=>[] |