diff options
Diffstat (limited to 'lib/efl/elm')
| -rw-r--r-- | lib/efl/elm/elm_ctxpopup.rb | 27 | 
1 files changed, 27 insertions, 0 deletions
| diff --git a/lib/efl/elm/elm_ctxpopup.rb b/lib/efl/elm/elm_ctxpopup.rb new file mode 100644 index 0000000..4a874a1 --- /dev/null +++ b/lib/efl/elm/elm_ctxpopup.rb @@ -0,0 +1,27 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/elm/elm_object_item' +require 'efl/native/elm/elm_ctxpopup' +# +module Efl +    # +    module Elm +        # +        class ElmCtxPopup < ElmObject +            # +            include Helper +            constructor :elm_ctxpopup_add +            search_prefixes 'elm_ctxpopup_' +            # +            def item_append label, icon=nil, cb=nil, data=nil +                ElmObjectItem.new Native::elm_ctxpopup_item_append @ptr, label, icon, cb, data +            end +            # +        end +        # +    end +end +# +# EOF | 
