summaryrefslogtreecommitdiffstats
path: root/test/test_panes.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-02-23 21:55:31 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2013-02-23 21:55:31 +0100
commite417bd57d7c213f2a50a94ec8690ae76c7f0ebba (patch)
treea58cf76c782c7c3a13457347fa362b60a66184b6 /test/test_panes.rb
parent90ae47e71fb3d7179a703bcc344c284e468f59da (diff)
parent08de292b856e0e182db831ee7a6348695a19c103 (diff)
downloadffi-efl-e417bd57d7c213f2a50a94ec8690ae76c7f0ebba.zip
ffi-efl-e417bd57d7c213f2a50a94ec8690ae76c7f0ebba.tar.gz
Merge pull request #6 from mhanne/examples
Some more examples
Diffstat (limited to 'test/test_panes.rb')
-rw-r--r--test/test_panes.rb73
1 files changed, 73 insertions, 0 deletions
diff --git a/test/test_panes.rb b/test/test_panes.rb
new file mode 100644
index 0000000..db2de03
--- /dev/null
+++ b/test/test_panes.rb
@@ -0,0 +1,73 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_win'
+require 'efl/elm/elm_bg'
+require 'efl/elm/elm_panes'
+require 'efl/elm/elm_button'
+#
+include Efl
+#
+class MyWin < Elm::ElmWin
+ #
+ def initialize
+ super(nil, "Greetings") do
+ title_set "Hello, World!"
+ resize 320, 400
+ show
+ end
+ @bg = Elm::ElmBg.new(self) do
+ size_hint_weight_expand
+ show
+ end
+ resize_object_add @bg
+ #
+ @panes = Elm::ElmPanes.new(self) do
+ size_hint_weight_expand
+ size_hint_align_fill
+ show
+ end
+ resize_object_add @panes
+ #
+ @bt1 = Elm::ElmButton.new(self) do
+ part_text_set(nil, "Left")
+ size_hint_weight_expand
+ size_hint_align_fill
+ show
+ end
+ @panes.part_content_set("left", @bt1)
+ #
+ @panes_h = Elm::ElmPanes.new(self) do
+ horizontal_set true
+ size_hint_weight_expand
+ size_hint_align_fill
+ show
+ end
+ @panes.part_content_set("right", @panes_h)
+ #
+ @bt2 = Elm::ElmButton.new(self) do
+ part_text_set(nil, "Up")
+ size_hint_weight_expand
+ size_hint_align_fill
+ show
+ end
+ @panes_h.part_content_set("left", @bt2)
+ #
+ @bt3 = Elm::ElmButton.new(self) do
+ part_text_set(nil, "Down")
+ size_hint_weight_expand
+ size_hint_align_fill
+ show
+ end
+ @panes_h.part_content_set("right", @bt3)
+ end
+end
+#
+Elm.init
+#
+MyWin.new
+#
+Elm.run
+Elm.shutdown
+#
+# EOF