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
|
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/evas'
require 'efl/elementary/elementary-ffi'
#
module Efl
module Elm
#
class << self
def init *args
a = args.select { |e| e.is_a? String }
return Efl::API.elm_init 0, FFI::MemoryPointer::NULL if a.length==0
ptr = FFI::MemoryPointer.new :pointer, a.length
a.each_with_index do |s,i|
ptr[i].write_pointer FFI::MemoryPointer.from_string(s)
end
Efl::API.elm_init a.length, ptr
end
end
#
class ElmWin < Efl::Evas::EvasObject
attr_reader :ptr
def initialize parent, title, type=:elm_win_basic
@ptr = Efl::API.elm_win_add parent, title, type
yield self if block_given?
end
def add e
Efl::API.send "elm_#{e}_add", @ptr
end
def method_missing m, *args, &block
[ 'elm_win_', 'elm_' ].each do |s|
sym = s+m.to_s
puts sym
return Efl::API.send( sym, @ptr, *args, &block ) if Efl::API.respond_to? sym
end
end
end
#
end
end
#
# EOF
|