summaryrefslogtreecommitdiffstats
path: root/lib/efl/elm
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-29 17:20:00 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-29 17:20:00 +0100
commit12f90a99542647e2c18c69702cc9c83fc2920059 (patch)
treee007354f4cd8f62a724c997745009e171883a908 /lib/efl/elm
parent3b43739a0fe76ee72ac9b8a7a612b8a997151f83 (diff)
downloadffi-efl-12f90a99542647e2c18c69702cc9c83fc2920059.zip
ffi-efl-12f90a99542647e2c18c69702cc9c83fc2920059.tar.gz
parse elm_conform.h, generate elm_conform.rb
Diffstat (limited to 'lib/efl/elm')
-rw-r--r--lib/efl/elm/elm_conform.rb26
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