summaryrefslogtreecommitdiffstats
path: root/lib/efl/elm
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-27 16:47:35 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-27 16:47:35 +0100
commit0567a18b2297a05e937374375ed751310551995c (patch)
treef615682193f2a3194b0520d1dd1594a2a6ddd827 /lib/efl/elm
parent6c9e09c5e7d57353e079462d3d072a2594d04b81 (diff)
downloadffi-efl-0567a18b2297a05e937374375ed751310551995c.zip
ffi-efl-0567a18b2297a05e937374375ed751310551995c.tar.gz
parse elm_hoversel.h, generate elm_hoversel.rb
Diffstat (limited to 'lib/efl/elm')
-rw-r--r--lib/efl/elm/elm_hoversel.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_hoversel.rb b/lib/efl/elm/elm_hoversel.rb
new file mode 100644
index 0000000..e70549c
--- /dev/null
+++ b/lib/efl/elm/elm_hoversel.rb
@@ -0,0 +1,26 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/native/elm/elm_hoversel'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmCheck < ElmObject
+ #
+ include Helper
+ constructor :elm_hoversel_add
+ search_prefixes 'elm_hoversel_'
+ #
+ def item_add label, icon_file=nil, icon_type=:elm_icon_none, cb=nil, data=nil
+ ElmHoverselItem.new Native::elm_hoversel_item_add @ptr, label, icon_file, icon_type, cb, data
+ end
+ #
+ end
+ #
+ end
+end
+#
+# EOF