summaryrefslogtreecommitdiffstats
path: root/test/elm_win_class.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-04-21 21:42:31 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-04-21 21:42:31 +0200
commit906946c9bd88d258480fc0da2daff33b44c96075 (patch)
tree8f8ccc19542de4feef0240d7669b39e709561e29 /test/elm_win_class.rb
parent4139d95eb3fef9bc8178a5182920703a1052ec35 (diff)
downloadffi-efl-906946c9bd88d258480fc0da2daff33b44c96075.zip
ffi-efl-906946c9bd88d258480fc0da2daff33b44c96075.tar.gz
remove unused test files
Diffstat (limited to 'test/elm_win_class.rb')
-rw-r--r--test/elm_win_class.rb49
1 files changed, 0 insertions, 49 deletions
diff --git a/test/elm_win_class.rb b/test/elm_win_class.rb
deleted file mode 100644
index 7934551..0000000
--- a/test/elm_win_class.rb
+++ /dev/null
@@ -1,49 +0,0 @@
-#! /usr/bin/env ruby
-# -*- coding: UTF-8 -*-
-#
-require 'efl/elementary'
-#
-include Efl
-#
-DATA = FFI::MemoryPointer.from_string("my data")
-#
-class MyWin < Elm::ElmWin
- def initialize name, title
- super FFI::MemoryPointer::NULL, name
- title_set title
- feed
- smart_callback_add "delete,request", method(:exit), DATA
- end
- def feed
- # using block
- @bg = add 'bg' do |bg|
- bg.size_hint_weight_set 1.0, 1.0
- bg.show
- end
- resize_object_add @bg.ptr
- @lb = add 'label'do |lb|
- lb.elm_label_label_set "Hello World!" # complete function name
- lb.size_hint_weight_set 1.0, 1.0 # implicit evas_object function name prefix
- end
- @lb.show
- resize_object_add @lb.ptr
- end
- def exit 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,eo|
- eo.move 300, 300
- eo.resize 200, 100
- eo.show
-end
-#
-Elm.run
-Elm.shutdown
-#
-# EOF
-