summaryrefslogtreecommitdiffstats
path: root/lib/efl/native/elm/elm_debug.rb
blob: 48cddc2d937959bf0a364537a4f4c56068706474 (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
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/native'
require 'efl/native/elementary'
#
module Efl
    #
    module ElmDebug
        #
        FCT_PREFIX = 'elm_debug_' 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'
        #
        # FUNCTIONS
        fcts = [
        # EAPI void elm_object_tree_dump(const Evas_Object *top);
        [ :elm_object_tree_dump, [ :evas_object ], :void ],
        # EAPI void elm_object_tree_dot_dump(const Evas_Object *top, const char *file);
        [ :elm_object_tree_dot_dump, [ :evas_object, :string ], :void ],
        ]
        #
        attach_fcts fcts
        #
    end
end
#
# EOF