summaryrefslogtreecommitdiffstats
path: root/test/test_elm_win.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-04-21 22:46:39 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-04-21 22:46:39 +0200
commit8877205350bb7c70232c90e61ae30f83af05f5b1 (patch)
treea7b172f3cb92a75b7b011d5c2d169e5c14d0397a /test/test_elm_win.rb
parent906946c9bd88d258480fc0da2daff33b44c96075 (diff)
downloadffi-efl-8877205350bb7c70232c90e61ae30f83af05f5b1.zip
ffi-efl-8877205350bb7c70232c90e61ae30f83af05f5b1.tar.gz
add the new tests
Diffstat (limited to 'test/test_elm_win.rb')
-rw-r--r--test/test_elm_win.rb38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/test_elm_win.rb b/test/test_elm_win.rb
new file mode 100644
index 0000000..58c9462
--- /dev/null
+++ b/test/test_elm_win.rb
@@ -0,0 +1,38 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elementary'
+#
+include Efl
+#
+puts Elm.init
+
+win_del = Proc.new { |data,evas_object,event_info|
+ Efl::API.elm_exit();
+}
+
+win = Efl::API.elm_win_add FFI::MemoryPointer::NULL, "App name", :elm_win_basic
+Efl::API.elm_win_title_set win, "Window title"
+Efl::API.evas_object_smart_callback_add win, "delete,request", win_del, FFI::MemoryPointer::NULL
+
+bg = Efl::API.elm_bg_add win
+Efl::API.evas_object_size_hint_weight_set bg, 1.0, 1.0
+Efl::API.elm_win_resize_object_add win, bg
+Efl::API.evas_object_show bg
+
+lb = Efl::API.elm_label_add win
+Efl::API.elm_label_label_set lb, "Hello World!"
+Efl::API.evas_object_size_hint_weight_set lb, 1.0, 1.0
+Efl::API.elm_win_resize_object_add win, lb
+Efl::API.evas_object_show lb
+
+Efl::API.evas_object_move win, 300, 300
+Efl::API.evas_object_resize win, 200, 100
+
+Efl::API.evas_object_show win
+
+Elm.run
+puts Elm.shutdown
+#
+# EOF
+