diff options
Diffstat (limited to 'lib/efl/elm')
-rw-r--r-- | lib/efl/elm/elm_hoversel.rb | 26 |
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 |