summaryrefslogtreecommitdiffstats
path: root/test/test_elm_win.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-05-05 07:17:57 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-05-05 07:17:57 +0200
commite07b6f598ad470399dcd967a9171a8d3c1fa2cfe (patch)
treeb11c6c67aa7976a1e6c779a36910ddd59a9bd0f1 /test/test_elm_win.rb
parent01e968f8f6b3c070db0336b5997c03c36a283e11 (diff)
downloadffi-efl-e07b6f598ad470399dcd967a9171a8d3c1fa2cfe.zip
ffi-efl-e07b6f598ad470399dcd967a9171a8d3c1fa2cfe.tar.gz
rewrite test_elm_win into test_elm_win-native using 'require efl/native' and 'include Efl::Native'
Diffstat (limited to 'test/test_elm_win.rb')
-rw-r--r--test/test_elm_win.rb36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/test_elm_win.rb b/test/test_elm_win.rb
deleted file mode 100644
index 2467ffc..0000000
--- a/test/test_elm_win.rb
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /usr/bin/env ruby
-# -*- coding: UTF-8 -*-
-#
-require 'efl/native'
-require 'efl/elementary' # for Efl::Elm.init
-#
-Efl::Elm.init
-#
-win_del = Proc.new { |data,evas_object,event_info|
- Efl::Native.elm_exit();
-}
-#
-win = Efl::Native.elm_win_add FFI::MemoryPointer::NULL, "App name", :elm_win_basic
-Efl::Elm.win_title_set win, "Window title"
-Efl::Native.evas_object_smart_callback_add win, "delete,request", win_del, FFI::MemoryPointer::NULL
-#
-bg = Efl::Native.elm_bg_add win
-Efl::Native.evas_object_size_hint_weight_set bg, 1.0, 1.0
-Efl::Native.elm_win_resize_object_add win, bg
-Efl::Native.evas_object_show bg
-#
-lb = Efl::Native.elm_label_add win
-Efl::Native.elm_label_label_set lb, "Hello World!"
-Efl::Native.evas_object_size_hint_weight_set lb, 1.0, 1.0
-Efl::Native.elm_win_resize_object_add win, lb
-Efl::Native.evas_object_show lb
-#
-Efl::Native.evas_object_move win, 300, 300
-Efl::Native.evas_object_resize win, 200, 100
-#
-Efl::Native.evas_object_show win
-#
-Efl::Elm.run
-Efl::Native.elm_shutdown
-#
-# EOF