summaryrefslogtreecommitdiffstats
path: root/lib/efl/elm/elm_mirroring.rb
blob: 0f0538924029d1511522ba9ddf46859d43d79a35 (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
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'efl/elm/elm_object'
require 'efl/native/elm/elm_mirroring'
#
module Efl
    #
    module Elm
        #
        class ElmMirroring
            #
            def mirrored_get
                Native.elm_object_mirrored_get @ptr
            end
            alias :mirrored :mirrored_get
            #
            def mirrored_set mirrored
                Native.elm_object_mirrored_set @ptr, mirrored
            end
            #
            def mirrored_automatic_get
                Native.elm_object_mirrored_automatic_get @ptr
            end
            alias :mirrored_automatic :mirrored_automatic_get
            #
            def mirrored_automatic_set auto
                Native.elm_object_mirrored_automatic_set @ptr, auto
            end
            #
        end
        #
    end
end
#
# EOF