diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 15:48:45 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 15:48:45 +0100 |
commit | ef44077310b4ebf8d3cb31ccb57d15b96a94c9d3 (patch) | |
tree | c2bb690ccc1be37c03f6dcdcf892fbf3e17f5067 /lib/efl/elm/elm_list.rb | |
parent | dbb2c5713e11489dfaeb318a82785017f1794dde (diff) | |
parent | b030c490265bb13ee98a650da419a033495042ed (diff) | |
download | ffi-efl-ef44077310b4ebf8d3cb31ccb57d15b96a94c9d3.zip ffi-efl-ef44077310b4ebf8d3cb31ccb57d15b96a94c9d3.tar.gz |
Merge branch 'wip'
Conflicts:
tools/genruby.rb
Diffstat (limited to 'lib/efl/elm/elm_list.rb')
-rw-r--r-- | lib/efl/elm/elm_list.rb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_list.rb b/lib/efl/elm/elm_list.rb new file mode 100644 index 0000000..dfdf7f9 --- /dev/null +++ b/lib/efl/elm/elm_list.rb @@ -0,0 +1,54 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/elm/elm_object_item' +require 'efl/native/elm/elm_list' +# +module Efl + # + module Elm + # + class ElmList < ElmObject + # + include Helper + constructor :elm_list_add + search_prefixes 'elm_list_' + # + def item_append label, left_icon=nil, right_icon=nil, cb=nil, data=nil + ElmObjectItem.new Native::elm_list_item_append @ptr, label, left_icon, right_icon, cb, data + end + # + def item_prepend label, left_icon=nil, right_icon=nil, cb=nil, data=nil + ElmObjectItem.new Native::elm_list_item_prepend @ptr, label, left_icon, right_icon, cb, data + end + # + def item_insert_before before, label, left_icon=nil, right_icon=nil, cb=nil, data=nil + ElmObjectItem.new Native::elm_list_item_insert_before @ptr, before, label, left_icon, right_icon, cb, data + end + # + def item_insert_after after, label, left_icon=nil, right_icon=nil, cb=nil, data=nil + ElmObjectItem.new Native::elm_list_item_insert_after @ptr, after, label, left_icon, right_icon, cb, data + end + # + def item_sorted_insert label, left_icon, right_icon, cb, data, cmp_fct + ElmObjectItem.new Native::elm_list_item_sorted_insert @ptr, label, left_icon, right_icon, cb, data, cmp_fct + end + # + def selected_item_get + ElmObjectItem.new Native::elm_list_selected_item_get @ptr + end + # + def item_prev + ElmObjectItem.new Native::elm_list_item_prev @ptr + end + # + def item_next + ElmObjectItem.new Native::elm_list_item_next @ptr + end + end + # + end +end +# +# EOF |