summaryrefslogtreecommitdiffstats
path: root/lib/efl/native/elm/elm_cursor.rb
blob: 1a0b6fea02c3db9076cc9bf237abd1b70a703946 (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
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/native'
require 'efl/native/elementary'
#
module Efl
    #
    module ElmCursor
        #
        FCT_PREFIX = 'elm_cursor_' 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 void elm_object_cursor_set(Evas_Object *obj, const char *cursor);
        [ :elm_object_cursor_set, [ :evas_object, :string ], :void ],
        # EAPI const char *elm_object_cursor_get(const Evas_Object *obj);
        [ :elm_object_cursor_get, [ :evas_object ], :string ],
        # EAPI void elm_object_cursor_unset(Evas_Object *obj);
        [ :elm_object_cursor_unset, [ :evas_object ], :void ],
        # EAPI void elm_object_cursor_style_set(Evas_Object *obj, const char *style);
        [ :elm_object_cursor_style_set, [ :evas_object, :string ], :void ],
        # EAPI const char *elm_object_cursor_style_get(const Evas_Object *obj);
        [ :elm_object_cursor_style_get, [ :evas_object ], :string ],
        # EAPI void elm_object_cursor_engine_only_set(Evas_Object *obj, Eina_Bool engine_only);
        [ :elm_object_cursor_engine_only_set, [ :evas_object, :bool ], :void ],
        # EAPI Eina_Bool elm_object_cursor_engine_only_get(const Evas_Object *obj);
        [ :elm_object_cursor_engine_only_get, [ :evas_object ], :bool ],
        # EAPI int elm_cursor_engine_only_get(void);
        [ :elm_cursor_engine_only_get, [  ], :int ],
        # EAPI Eina_Bool elm_cursor_engine_only_set(int engine_only);
        [ :elm_cursor_engine_only_set, [ :int ], :bool ],
        ]
        #
        attach_fcts fcts
        #
    end
end
#
# EOF