blob: 253f449b8eb7d9537263d4ccfb1e7107a12fb4e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
class Elm.Notify (Elm.Widget, Efl.Container, Efl.Part)
{
legacy_prefix: elm_notify;
eo_prefix: elm_obj_notify;
event_prefix: elm_notify;
methods {
@property align {
set {
[[Set the alignment of the notify object
Sets the alignment in which the notify will appear in its parent.
Note: To fill the notify box in the parent area, please pass the
ELM_NOTIFY_ALIGN_FILL to horizontal and vertical.
@since 1.8
]]
}
get {
[[Get the alignment of the notify object
@since 1.8
]]
}
values {
horizontal: double; [[The horizontal alignment of the notification]]
vertical: double; [[The vertical alignment of the notification]]
}
}
@property allow_events {
set {
[[Sets whether events should be passed to by a click outside
its area.
When true if the user clicks outside the window the events will
be caught by the others widgets, else the events are blocked.
Note: The default value is true.
]]
}
get {
[[Return true if events are allowed below the notify object.]]
}
values {
allow: bool; [[true if events are allowed, otherwise false]]
}
}
@property timeout {
set {
[[Set the time interval after which the notify window is going to
be hidden.
This function sets a timeout and starts the timer controlling
when the notify is hidden. Since calling evas_object_show() on
a notify restarts the timer controlling when the notify is
hidden, setting this before the notify is shown will in effect
mean starting the timer when the notify is shown.
Note: Set a value <= 0.0 to disable a running timer.
Note: If the value > 0.0 and the notify is previously visible,
the timer will be started with this value, canceling any running
timer.
]]
}
get {
[[Return the timeout value (in seconds)]]
}
values {
timeout: double; [[The timeout in seconds]]
}
}
dismiss {
[[Dismiss a notify object.
@since 1.17
]]
}
}
implements {
class.constructor;
Efl.Object.constructor;
Efl.Canvas.Group.group_hide;
Efl.Canvas.Group.group_show;
Efl.Canvas.Group.group_move;
Efl.Canvas.Group.group_add;
Efl.Canvas.Group.group_del;
Efl.Canvas.Group.group_resize;
Elm.Widget.focus_direction;
Elm.Widget.widget_parent;
Elm.Widget.theme_apply;
Elm.Widget.focus_direction_manager_is;
Elm.Widget.focus_next_manager_is;
Elm.Widget.focus_next;
Elm.Widget.sub_object_del;
Elm.Widget.part_text.set;
Elm.Widget.part_text.get;
Efl.Container.content.get;
Efl.Container.content.set;
Efl.Container.content_unset;
Efl.Part.part;
}
events {
block,clicked;
timeout;
dismissed;
}
}
|