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
61
62
63
64
65
66
67
68
69
70
71
72
|
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/eina'
require 'efl/evas'
require 'efl/ecore'
#
def realize_evas
width = 300
height = 200
@pixels = FFI::MemoryPointer.new :int, width*height
@e = Efl::Evas::REvas.new
@e.output_method_set Efl::Evas::render_method_lookup("buffer")
@e.output_viewport_set 0, 0, width, height
@e.output_size_set width, height
einfo = Efl::Native::EngineInfoBufferStruct.new @e.engine_info
einfo[:info][:depth_type] = Efl::Evas::EVAS_ENGINE_BUFFER_DEPTH_ARGB32
einfo[:info][:dest_buffer] = @pixels
einfo[:info][:dest_buffer_row_bytes] = width * FFI::type_size(:int);
einfo[:info][:use_color_key] = 0;
einfo[:info][:alpha_threshold] = 0;
einfo[:info][:func][:new_update_region] = nil #FFI::Pointer::NULL;
einfo[:info][:func][:free_update_region] = nil #FFI::Pointer::NULL;
@e.engine_info_set einfo
end
#
def ecore_loop n
n.downto(0) do
sleep 0.1
Efl::Ecore.main_loop_iterate
end
end
#
def bool_check t, fct, delay=nil
t.send fct+'_set', true
ecore_loop delay if delay
t.send(fct).should be_true
t.send(fct+'?').should be_true
t.send(fct+'_get').should be_true
t.send fct+'=', false
ecore_loop delay if delay
t.send(fct).should be_false
t.send(fct+'?').should be_false
t.send(fct+'_get').should be_false
end
#
def char_check t, fct, delay=nil
t.send fct+'_set', "char1"
ecore_loop delay if delay
t.send(fct).should == "char1"
t.send(fct+'?').should == "char1"
t.send(fct+'_get').should == "char1"
t.send fct+'=', "char2"
ecore_loop delay if delay
t.send(fct).should == "char2"
t.send(fct+'?').should == "char2"
t.send(fct+'_get').should == "char2"
end
#
def realize_win
@win = Elm::ElmWin.new(nil, 'TEST') do |w|
w.title= 'spec win'
w.move 100, 100
w.resize 100, 100
end
@bg = Elm::ElmBg.new(@win) do |bg|
bg.size_hint_weight_set 1.0, 1.0
bg.evas_object_color_set 200,255,100,150
bg.show
end
@win.show
end
|