summaryrefslogtreecommitdiffstats
path: root/lib/efl/native/elm/elm_panel.rb
blob: 7d4db0f8d36ba91527d15772dd45a434ced8d86d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#! /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'
        #
        # 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 ],
        ]
        #
        attach_fcts fcts
        #
    end
end
#
# EOF