summaryrefslogtreecommitdiffstats
path: root/lib/efl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/efl')
-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
#