diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 12:33:16 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-28 12:33:16 +0100 |
commit | 9a924c6c52e33721b37905a8761348792b70a34b (patch) | |
tree | 8787fae49a26fe4afba89cc59ac5b3cf2443b108 /lib/efl/native/elm/elm_photo.rb | |
parent | b79cc483a8a09f9589cf7b9ef31bc78d947f24ff (diff) | |
download | ffi-efl-9a924c6c52e33721b37905a8761348792b70a34b.zip ffi-efl-9a924c6c52e33721b37905a8761348792b70a34b.tar.gz |
parse elm_photo.h, generate elm_photo.rb
Diffstat (limited to 'lib/efl/native/elm/elm_photo.rb')
-rw-r--r-- | lib/efl/native/elm/elm_photo.rb | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/lib/efl/native/elm/elm_photo.rb b/lib/efl/native/elm/elm_photo.rb new file mode 100644 index 0000000..7eb7546 --- /dev/null +++ b/lib/efl/native/elm/elm_photo.rb @@ -0,0 +1,49 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl + # + module ElmPhoto + # + FCT_PREFIX = 'elm_photo_' 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_photo_add(Evas_Object *parent); + [ :elm_photo_add, [ :evas_object ], :evas_object ], + # EAPI Eina_Bool elm_photo_file_set(Evas_Object *obj, const char *file); + [ :elm_photo_file_set, [ :evas_object, :string ], :bool ], + # EAPI void elm_photo_thumb_set(const Evas_Object *obj, const char *file, const char *group); + [ :elm_photo_thumb_set, [ :evas_object, :string, :string ], :void ], + # EAPI void elm_photo_size_set(Evas_Object *obj, int size); + [ :elm_photo_size_set, [ :evas_object, :int ], :void ], + # EAPI void elm_photo_fill_inside_set(Evas_Object *obj, Eina_Bool fill); + [ :elm_photo_fill_inside_set, [ :evas_object, :bool ], :void ], + # EAPI void elm_photo_editable_set(Evas_Object *obj, Eina_Bool set); + [ :elm_photo_editable_set, [ :evas_object, :bool ], :void ], + # EAPI void elm_photo_aspect_fixed_set(Evas_Object *obj, Eina_Bool fixed); + [ :elm_photo_aspect_fixed_set, [ :evas_object, :bool ], :void ], + # EAPI Eina_Bool elm_photo_aspect_fixed_get(const Evas_Object *obj); + [ :elm_photo_aspect_fixed_get, [ :evas_object ], :bool ], + ] + # + attach_fcts fcts + # + end +end +# +# EOF |