summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Hanne <marius.hanne@sourceagency.org>2013-02-23 20:00:46 +0100
committerMarius Hanne <marius.hanne@sourceagency.org>2013-02-23 20:49:44 +0100
commit4b06d63bab26a79223133b753a13d25347a67022 (patch)
treef9bdee1bc1c592c6519b482775d312c940f3bbeb
parent02efb6d22f1f1f916d2b5ba514d1d7d66dce7514 (diff)
downloadffi-efl-4b06d63bab26a79223133b753a13d25347a67022.zip
ffi-efl-4b06d63bab26a79223133b753a13d25347a67022.tar.gz
example for ElmPanel
-rw-r--r--test/test_panel.rb87
1 files changed, 87 insertions, 0 deletions
diff --git a/test/test_panel.rb b/test/test_panel.rb
new file mode 100644
index 0000000..ac04894
--- /dev/null
+++ b/test/test_panel.rb
@@ -0,0 +1,87 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_win'
+require 'efl/elm/elm_bg'
+require 'efl/elm/elm_box'
+require 'efl/elm/elm_panel'
+require 'efl/elm/elm_label'
+#
+include Efl
+#
+class MyWin < Elm::ElmWin
+ #
+ def initialize
+ super(nil, "Greetings") do
+ title_set "Hello, World!"
+ resize 240, 400
+ show
+ end
+ @bg = Elm::ElmBg.new(self) do
+ size_hint_weight_expand
+ show
+ end
+ resize_object_add @bg
+ #
+ @bx = Elm::ElmBox.new(self) do
+ horizontal_set false
+ size_hint_weight_expand
+ size_hint_align_fill
+ show
+ end
+ resize_object_add @bx
+ #
+ @panel1 = Elm::ElmPanel.new(self) do
+ orient_set :elm_panel_orient_top
+ toggle
+ size_hint_weight_expand
+ size_hint_align_fill
+ show
+ end
+ @bx.pack_end @panel1
+ #
+ @content = Elm::ElmLabel.new(self) do
+ text_set "content 1"
+ show
+ end
+ @panel1.content_set @content
+ #
+ @panel2 = Elm::ElmPanel.new(self) do
+ orient_set :elm_panel_orient_right
+ hidden_set true
+ size_hint_weight_expand
+ size_hint_align_fill
+ show
+ end
+ @bx.pack_end @panel2
+ #
+ @content = Elm::ElmLabel.new(self) do
+ text_set "content 2"
+ show
+ end
+ @panel2.content_set @content
+ #
+ @panel3 = Elm::ElmPanel.new(self) do
+ orient_set :elm_panel_orient_bottom
+ size_hint_weight_expand
+ size_hint_align_fill
+ show
+ end
+ @bx.pack_end @panel3
+ #
+ @content = Elm::ElmLabel.new(self) do
+ text_set "content 3"
+ show
+ end
+ @panel3.content_set @content
+ end
+end
+#
+Elm.init
+#
+MyWin.new
+#
+Elm.run
+Elm.shutdown
+#
+# EOF