summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-05-11 01:28:02 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2011-05-11 01:28:02 +0200
commitb59692859cefc8600cafbcf2275b6921e6784428 (patch)
treeedc8fae6e4b970bffe2f8371092d9a990053e587 /lib
parent4af72a324ef396b5288c47dd533c1edfc626015c (diff)
downloadffi-efl-b59692859cefc8600cafbcf2275b6921e6784428.zip
ffi-efl-b59692859cefc8600cafbcf2275b6921e6784428.tar.gz
fix ElmInWIn search_prefixes, quick add ElmDiskSelector, ElmNotify classes
Diffstat (limited to 'lib')
-rw-r--r--lib/efl/elementary.rb20
1 files changed, 19 insertions, 1 deletions
diff --git a/lib/efl/elementary.rb b/lib/efl/elementary.rb
index 246bbc3..7d90632 100644
--- a/lib/efl/elementary.rb
+++ b/lib/efl/elementary.rb
@@ -43,7 +43,7 @@ module Efl
#
class ElmInWin < Efl::Evas::REvasObject
#
- search_prefixes 'elm_win_inwin_', 'elm_win', 'elm_object_'
+ search_prefixes 'elm_win_inwin_', 'elm_win_', 'elm_object_'
#
def initialize parent, &block
super Native.method(:elm_win_inwin_add), parent, &block
@@ -149,6 +149,24 @@ module Efl
end
end
#
+ class ElmDiskSelector < Efl::Evas::REvasObject
+ #
+ search_prefixes 'elm_diskselector_', 'elm_object'
+ #
+ def initialize parent, &block
+ super Native.method(:elm_diskselector_add), parent, &block
+ end
+ end
+ #
+ class ElmNotify < Efl::Evas::REvasObject
+ #
+ search_prefixes 'elm_notify_', 'elm_object'
+ #
+ def initialize parent, &block
+ super Native.method(:elm_notify_add), parent, &block
+ end
+ end
+ #
end
end
#