summaryrefslogtreecommitdiffstats
path: root/lib/efl/elm/elm_multibuttonentry.rb
blob: e72e57e85782cca7ab80dc19ec8a424c6640b224 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/elm/elm_object'
require 'efl/elm/elm_object_item'
require 'efl/native/elm/elm_multibuttonentry'
#
module Efl
    #
    module Elm
        #
        class ElmMultiButtonEntry < ElmObject
            #
            include Helper
            constructor :elm_multibuttonentry_add
            search_prefixes 'elm_multibuttonentry_'
            #
            def item_prepend label, data=nil
                ElmObjectItem.new Native.elm_multibuttonentry_item_prepend @ptr, label, data
            end
            #
            def item_append label, data=nil
                ElmObjectItem.new Native.elm_multibuttonentry_item_append @ptr, label, data
            end
            #
            def item_insert_before before, label, data=nil
                ElmObjectItem.new Native.elm_multibuttonentry_item_insert_before @ptr, before, label, data
            end
            #
            def item_insert_after after, label, data=nil
                ElmObjectItem.new Native.elm_multibuttonentry_item_insert_after @ptr, after, label, data
            end
            #
            def first_item_get
                ElmObjectItem.new Native.elm_multibuttonentry_first_item_get @ptr
            end
            #
            def last_item_get
                ElmObjectItem.new Native.elm_multibuttonentry_last_item_get @ptr
            end
            #
            def selected_item_get
                ElmObjectItem.new Native.elm_multibuttonentry_selected_item_get @ptr
            end
            #
            def item_prev it
                ElmObjectItem.new Native.elm_multibuttonentry_item_prev it
            end
            #
            def item_next it
                ElmObjectItem.new Native.elm_multibuttonentry_item_next it
            end
        end
        #
    end
end
#
# EOF