diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efl/elm/elm_panel.rb | 22 | ||||
-rw-r--r-- | lib/efl/native/elm/elm_panel.rb | 55 |
2 files changed, 77 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_panel.rb b/lib/efl/elm/elm_panel.rb new file mode 100644 index 0000000..41dbcc5 --- /dev/null +++ b/lib/efl/elm/elm_panel.rb @@ -0,0 +1,22 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_panel' +# +module Efl + # + module Elm + # + class ElmPanel < ElmObject + # + include Helper + constructor :elm_panel_add + search_prefixes 'elm_panel_' + # + end + # + end +end +# +# EOF diff --git a/lib/efl/native/elm/elm_panel.rb b/lib/efl/native/elm/elm_panel.rb new file mode 100644 index 0000000..4fe40a4 --- /dev/null +++ b/lib/efl/native/elm/elm_panel.rb @@ -0,0 +1,55 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/native' +require 'efl/native/elementary' +# +module Efl + # + module ElmPanel + # + FCT_PREFIX = 'elm_panel_' 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' + # + # ENUMS + # typedef enum {...} Elm_Panel_Orient; + enum :elm_panel_orient, [ :elm_panel_orient_top, :elm_panel_orient_bottom, :elm_panel_orient_left, :elm_panel_orient_right ] + # + # FUNCTIONS + fcts = [ + # EAPI Evas_Object *elm_panel_add(Evas_Object *parent); + [ :elm_panel_add, [ :evas_object ], :evas_object ], + # EAPI void elm_panel_orient_set(Evas_Object *obj, Elm_Panel_Orient orient); + [ :elm_panel_orient_set, [ :evas_object, :elm_panel_orient ], :void ], + # EAPI Elm_Panel_Orient elm_panel_orient_get(const Evas_Object *obj); + [ :elm_panel_orient_get, [ :evas_object ], :elm_panel_orient ], + # EAPI void elm_panel_hidden_set(Evas_Object *obj, Eina_Bool hidden); + [ :elm_panel_hidden_set, [ :evas_object, :bool ], :void ], + # EAPI Eina_Bool elm_panel_hidden_get(const Evas_Object *obj); + [ :elm_panel_hidden_get, [ :evas_object ], :bool ], + # EAPI void elm_panel_toggle(Evas_Object *obj); + [ :elm_panel_toggle, [ :evas_object ], :void ], + # EAPI void elm_panel_content_set(Evas_Object *obj, Evas_Object *content); + [ :elm_panel_content_set, [ :evas_object, :evas_object ], :void ], + # EAPI Evas_Object * elm_panel_content_get(const Evas_Object *obj); + [ :elm_panel_content_get, [ :evas_object ], :evas_object ], + # EAPI Evas_Object * elm_panel_content_unset(Evas_Object *obj); + [ :elm_panel_content_unset, [ :evas_object ], :evas_object ], + ] + # + attach_fcts fcts + # + end +end +# +# EOF |