diff options
Diffstat (limited to 'lib/efl/elm/elm_conform.rb')
-rw-r--r-- | lib/efl/elm/elm_conform.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_conform.rb b/lib/efl/elm/elm_conform.rb new file mode 100644 index 0000000..564ba3f --- /dev/null +++ b/lib/efl/elm/elm_conform.rb @@ -0,0 +1,26 @@ +#! /usr/bin/env ruby +# -*- coding: UTF-8 -*- +# +require 'efl/elm/elm_object' +require 'efl/native/elm/elm_conform' +# +module Efl + # + module Elm + # + class ElmConform < ElmObject + # + include Helper + constructor :elm_conformant_add + search_prefixes 'elm_conformant_' + # + def content_area_get + Evas::REvasObject.new Native.elm_conformant_content_area_get @ptr + end + # + end + # + end +end +# +# EOF |