diff options
author | Kai Huuhko <kai.huuhko@gmail.com> | 2014-05-29 02:24:56 +0300 |
---|---|---|
committer | Kai Huuhko <kai.huuhko@gmail.com> | 2014-05-29 02:24:56 +0300 |
commit | be6bd076b24c4fd67d5e06c50be0bd4a5fddd234 (patch) | |
tree | 8b98a8f8ff838fa190cd5ee56bb70c7acab1219e | |
parent | 9ba009c46ad797eee1a78e698bbcb41ab5528296 (diff) |
Elementary.general: Fix docs
-rw-r--r-- | efl/elementary/general.pyx | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/efl/elementary/general.pyx b/efl/elementary/general.pyx index 8f2e2aa..13d50e4 100644 --- a/efl/elementary/general.pyx +++ b/efl/elementary/general.pyx | |||
@@ -124,45 +124,58 @@ Notify close reasons | |||
124 | 124 | ||
125 | The reason the notification was closed | 125 | The reason the notification was closed |
126 | 126 | ||
127 | .. versionadded:: 1.10 | ||
128 | |||
129 | .. data:: ELM_SYS_NOTIFY_CLOSED_EXPIRED | 127 | .. data:: ELM_SYS_NOTIFY_CLOSED_EXPIRED |
130 | 128 | ||
131 | The notification expired. | 129 | The notification expired. |
132 | 130 | ||
131 | .. versionadded:: 1.10 | ||
132 | |||
133 | .. data:: ELM_SYS_NOTIFY_CLOSED_DISMISSED | 133 | .. data:: ELM_SYS_NOTIFY_CLOSED_DISMISSED |
134 | 134 | ||
135 | The notification was dismissed by the user. | 135 | The notification was dismissed by the user. |
136 | 136 | ||
137 | .. versionadded:: 1.10 | ||
138 | |||
137 | .. data:: ELM_SYS_NOTIFY_CLOSED_REQUESTED | 139 | .. data:: ELM_SYS_NOTIFY_CLOSED_REQUESTED |
138 | 140 | ||
139 | The notification was closed by a call to CloseNotification method. | 141 | The notification was closed by a call to CloseNotification method. |
140 | 142 | ||
143 | .. versionadded:: 1.10 | ||
144 | |||
141 | .. data:: ELM_SYS_NOTIFY_CLOSED_UNDEFINED | 145 | .. data:: ELM_SYS_NOTIFY_CLOSED_UNDEFINED |
142 | 146 | ||
143 | Undefined/reserved reasons. | 147 | Undefined/reserved reasons. |
144 | 148 | ||
149 | .. versionadded:: 1.10 | ||
150 | |||
145 | 151 | ||
146 | .. _Elm_Sys_Notify_Urgency: | 152 | .. _Elm_Sys_Notify_Urgency: |
147 | 153 | ||
154 | Notify urgency levels | ||
155 | --------------------- | ||
156 | |||
148 | Urgency levels of a notification | 157 | Urgency levels of a notification |
149 | 158 | ||
150 | :see: :py:func:`sys_notify_send` | 159 | :see: :py:func:`sys_notify_send` |
151 | 160 | ||
152 | .. versionadded:: 1.10 | ||
153 | |||
154 | .. data:: ELM_SYS_NOTIFY_URGENCY_LOW | 161 | .. data:: ELM_SYS_NOTIFY_URGENCY_LOW |
155 | 162 | ||
156 | Low | 163 | Low |
157 | 164 | ||
165 | .. versionadded:: 1.10 | ||
166 | |||
158 | .. data:: ELM_SYS_NOTIFY_URGENCY_NORMAL | 167 | .. data:: ELM_SYS_NOTIFY_URGENCY_NORMAL |
159 | 168 | ||
160 | Normal | 169 | Normal |
161 | 170 | ||
171 | .. versionadded:: 1.10 | ||
172 | |||
162 | .. data:: ELM_SYS_NOTIFY_URGENCY_CRITICAL | 173 | .. data:: ELM_SYS_NOTIFY_URGENCY_CRITICAL |
163 | 174 | ||
164 | Critical | 175 | Critical |
165 | 176 | ||
177 | .. versionadded:: 1.10 | ||
178 | |||
166 | 179 | ||
167 | """ | 180 | """ |
168 | 181 | ||