summaryrefslogtreecommitdiffstats
path: root/lib/efl/elm
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-28 15:47:14 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-28 15:47:14 +0100
commite1bcbdf778f9981a05f9c808d49477e8a4500e91 (patch)
tree05dd29ee8773d4bbe072d8d56571fe436a1936c6 /lib/efl/elm
parentca224d5771ab4ac5f902d5b5a6bbf4bb78e11f91 (diff)
downloadffi-efl-e1bcbdf778f9981a05f9c808d49477e8a4500e91.zip
ffi-efl-e1bcbdf778f9981a05f9c808d49477e8a4500e91.tar.gz
parse elm_genlist.h, generate elm_genlist.rb
Diffstat (limited to 'lib/efl/elm')
-rw-r--r--lib/efl/elm/elm_genlist.rb79
1 files changed, 79 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_genlist.rb b/lib/efl/elm/elm_genlist.rb
new file mode 100644
index 0000000..f83cc4c
--- /dev/null
+++ b/lib/efl/elm/elm_genlist.rb
@@ -0,0 +1,79 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/elm/elm_object_item'
+require 'efl/native/elm/elm_genlist'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmList < ElmObject
+ #
+ include Helper
+ constructor :elm_genlist_add
+ search_prefixes 'elm_genlist_'
+ #
+ def item_append itc, data, parent, flags, cb, cbdata
+ ElmObjectItem.new Native::elm_genlist_item_append @ptr, itc, data, parent, flags, cb, cbdata
+ end
+ #
+ def item_prepend itc, data, parent, flags, cb, cbdata
+ ElmObjectItem.new Native::elm_genlist_item_append @ptr, itc, data, parent, flags, cb, cbdata
+ end
+ #
+ def item_insert_before itc, data, parent, before, flags, cb, cbdata
+ ElmObjectItem.new Native::elm_genlist_item_insert_before @ptr, itc, data, parent, before, flags, cb, cbdata
+ end
+ #
+ def item_insert_after itc, data, parent, before, flags, cb, cbdata
+ ElmObjectItem.new Native::elm_genlist_item_insert_after @ptr, itc, data, parent, before, flags, cb, cbdata
+ end
+ #
+ def item_sorted_insert itc, data, parent, flags, cmp, cb, cbdata
+ ElmObjectItem.new Native::elm_genlist_item_sorted_insert @ptr, itc, data, parent, flags, cmp, cb, cbdata
+ end
+ #
+ def selected_item_get
+ ElmObjectItem.new Native::elm_genlist_selected_item_get @ptr
+ end
+ alias :selected_item :selected_item_get
+ #
+ def at_xy_item_get x, y
+ @ri0 ||= FFI::MemoryPointer.new :int
+ i = ElmObjectItem.new ElmObjectItem.new Native::elm_genlist_first_item_get @ptr, x, y, @ri0
+ [ @ri0.read_int, i ]
+ end
+ #
+ def first_item_get
+ ElmObjectItem.new Native::elm_genlist_first_item_get @ptr
+ end
+ alias :first_item :first_item_get
+ #
+ def last_item_get
+ ElmObjectItem.new Native::elm_genlist_last_item_get @ptr
+ end
+ alias :last_item :last_item_get
+ #
+ def item_next_get it
+ ElmObjectItem.new Native::elm_genlist_item_next_get it
+ end
+ alias :item_next :item_next_get
+ #
+ def item_prev_get it
+ ElmObjectItem.new Native::elm_genlist_item_prev_get it
+ end
+ alias :item_prev :item_prev_get
+ #
+ def item_parent_get it
+ ElmObjectItem.new Native::elm_genlist_item_parent_get it
+ end
+ alias :item_parent :item_parent_get
+ #
+ end
+ #
+ end
+end
+#
+# EOF