summaryrefslogtreecommitdiffstats
path: root/lib/efl/native/elm/elm_thumb.rb
blob: ee5483ae50770d10e98071d28b9ad1bc86841b26 (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
50
51
52
53
54
55
56
57
58
59
60
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/native'
require 'efl/native/elementary'
#
module Efl
    #
    module ElmThumb
        #
        FCT_PREFIX = 'elm_thumb_' 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.so.1'
        #
        # ENUMS
        # typedef enum {...} Elm_Thumb_Animation_Setting;
        enum :elm_thumb_animation_setting, [ :elm_thumb_animation_start, 0, :elm_thumb_animation_loop, 1, :elm_thumb_animation_stop, 2,
            :elm_thumb_animation_last, 3 ]
        #
        # FUNCTIONS
        fcts = [
        # EAPI Evas_Object *elm_thumb_add(Evas_Object *parent);
        [ :elm_thumb_add, [ :evas_object ], :evas_object ],
        # EAPI void elm_thumb_reload(Evas_Object *obj);
        [ :elm_thumb_reload, [ :evas_object ], :void ],
        # EAPI void elm_thumb_file_set(Evas_Object *obj, const char *file, const char *key);
        [ :elm_thumb_file_set, [ :evas_object, :string, :string ], :void ],
        # EAPI void elm_thumb_file_get(const Evas_Object *obj, const char **file, const char **key);
        [ :elm_thumb_file_get, [ :evas_object, :pointer, :pointer ], :void ],
        # EAPI void elm_thumb_path_get(const Evas_Object *obj, const char **file, const char **key);
        [ :elm_thumb_path_get, [ :evas_object, :pointer, :pointer ], :void ],
        # EAPI void elm_thumb_animate_set(Evas_Object *obj, Elm_Thumb_Animation_Setting s);
        [ :elm_thumb_animate_set, [ :evas_object, :elm_thumb_animation_setting ], :void ],
        # EAPI Elm_Thumb_Animation_Setting elm_thumb_animate_get(const Evas_Object *obj);
        [ :elm_thumb_animate_get, [ :evas_object ], :elm_thumb_animation_setting ],
        # EAPI void *elm_thumb_ethumb_client_get(void);
        [ :elm_thumb_ethumb_client_get, [  ], :pointer ],
        # EAPI Eina_Bool elm_thumb_ethumb_client_connected_get(void);
        [ :elm_thumb_ethumb_client_connected_get, [  ], :bool ],
        # EAPI Eina_Bool elm_thumb_editable_set(Evas_Object *obj, Eina_Bool edit);
        [ :elm_thumb_editable_set, [ :evas_object, :bool ], :bool ],
        # EAPI Eina_Bool elm_thumb_editable_get(const Evas_Object *obj);
        [ :elm_thumb_editable_get, [ :evas_object ], :bool ],
        ]
        #
        attach_fcts fcts
        #
    end
end
#
# EOF