diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 14:39:02 +0100 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-02-27 14:39:02 +0100 | 
| commit | a36de17212b556f43f0fdba1e604f0e096215998 (patch) | |
| tree | aae851d0ed40330aa30212af2446d8c00cb52349 /lib | |
| parent | 2825a689ad8fbbaaca8497e6575f0404b74c782f (diff) | |
| download | ffi-efl-a36de17212b556f43f0fdba1e604f0e096215998.zip ffi-efl-a36de17212b556f43f0fdba1e604f0e096215998.tar.gz | |
add lib/efl/elm/elm_icon.rb
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efl/elm/elm_icon.rb | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/lib/efl/elm/elm_icon.rb b/lib/efl/elm/elm_icon.rb new file mode 100644 index 0000000..89a00ec --- /dev/null +++ b/lib/efl/elm/elm_icon.rb @@ -0,0 +1,26 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_icon' +# +module Efl +    # +    module Elm +        # +        class ElmIcon < ElmObject +            # +            include Helper +            constructor :elm_icon_add +            search_prefixes 'elm_icon_' +            # +            def scale_set args +                Native.elm_icon_scale_set @ptr, *args +            end +            alias :scale= :scale_set +        end +        # +    end +end +# +# EOF | 
