blob: e19c3fcad418a7ee40f4cb5a45329edb11aa1e93 (
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
|