diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 11:10:28 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 11:10:28 +0100 |
commit | 0523432c1cdd1285d4177eeb5e8731e9855dcb29 (patch) | |
tree | acaf162dc2c2086222dd27a54cab5d4e5c533eaa /test/test_elm_win.rb | |
parent | d2b99a7cdc961bb69f750743535fce49cf792186 (diff) | |
download | ffi-efl-0523432c1cdd1285d4177eeb5e8731e9855dcb29.zip ffi-efl-0523432c1cdd1285d4177eeb5e8731e9855dcb29.tar.gz |
remove old elementary elated files
Diffstat (limited to 'test/test_elm_win.rb')
-rw-r--r-- | test/test_elm_win.rb | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/test/test_elm_win.rb b/test/test_elm_win.rb deleted file mode 100644 index b9abcf2..0000000 --- a/test/test_elm_win.rb +++ /dev/null @@ -1,50 +0,0 @@ -#! /usr/bin/env ruby -# -*- coding: UTF-8 -*- -# -require 'efl/elementary' -# -include Efl -# -class MyWin < Elm::ElmWin - # - def initialize name, title - super FFI::MemoryPointer::NULL, name - title = title - feed - smart_callback_add "delete,request", method(:on_delete), FFI::MemoryPointer.from_string("my data") - end - def feed - @bg = Elm::ElmBg.new(self) do |bg| -# bg.color = 200,255,100 - bg.size_hint_weight_expand - bg.evas_object_color = 200,255,100,150 - bg.show - end - resize_object_add @bg - @lb = Elm::ElmLabel.new(self) do |lb| - lb.text = "Hello World!" - lb.size_hint_align_fill - lb.size_hint_weight_expand - end - @lb.show - resize_object_add @lb - end - def on_delete data, evas_object, event_info - puts "EXIT #{data.read_string}" - Elm.exit - end -end -# -Elm.init -# -win = MyWin.new "App name", "Window Title" do |w| - w.alpha = true - w.move 300, 300 - w.resize 200, 100 - w.show -end -# -Elm.run -Elm.shutdown -# -# EOF |