allow setting timeouts
This commit is contained in:
parent
26b3c7d781
commit
7824d42be7
@ -8,7 +8,6 @@ server optimised for mobile form devices.
|
|||||||
|
|
||||||
- test with "replace"
|
- test with "replace"
|
||||||
- implement actions
|
- implement actions
|
||||||
- implement timeouts
|
|
||||||
- implement default timeout for urgency in (low, normal)
|
- implement default timeout for urgency in (low, normal)
|
||||||
- test multi-paragraph body and markup
|
- test multi-paragraph body and markup
|
||||||
- implement GetCapabilities properly
|
- implement GetCapabilities properly
|
||||||
|
@ -104,6 +104,7 @@
|
|||||||
(tset notifications id nil)
|
(tset notifications id nil)
|
||||||
(window.box:remove widget)
|
(window.box:remove widget)
|
||||||
(update-window)
|
(update-window)
|
||||||
|
false
|
||||||
))
|
))
|
||||||
|
|
||||||
(fn update-notification-widget [widget noti]
|
(fn update-notification-widget [widget noti]
|
||||||
@ -144,9 +145,22 @@
|
|||||||
:widget event-box
|
:widget event-box
|
||||||
}))
|
}))
|
||||||
|
|
||||||
|
(fn timeout-ms [noti]
|
||||||
|
(if (or (not noti.timeout) (= noti.timeout -1))
|
||||||
|
5000
|
||||||
|
(> noti.timeout 0)
|
||||||
|
noti.timeout
|
||||||
|
(= noti.timeout 0)
|
||||||
|
nil))
|
||||||
|
|
||||||
(fn add-notification [noti]
|
(fn add-notification [noti]
|
||||||
(let [id (if (= noti.id 0) (next-notification-id) noti.id)
|
(let [id (if (= noti.id 0) (next-notification-id) noti.id)
|
||||||
widget (or (. notifications id) (make-notification-widget id))]
|
widget (or (. notifications id) (make-notification-widget id))
|
||||||
|
timeout (timeout-ms noti)]
|
||||||
|
(when timeout
|
||||||
|
(lgi.GLib.timeout_add
|
||||||
|
lgi.GLib.PRIORITY_DEFAULT timeout #(delete-notification id)))
|
||||||
|
|
||||||
(update-notification-widget widget noti)
|
(update-notification-widget widget noti)
|
||||||
(tset notifications id widget.widget)
|
(tset notifications id widget.widget)
|
||||||
(update-window)
|
(update-window)
|
||||||
@ -159,6 +173,9 @@
|
|||||||
:app-icon (. params 3)
|
:app-icon (. params 3)
|
||||||
:summary (. params 4)
|
:summary (. params 4)
|
||||||
:body (. params 5)
|
:body (. params 5)
|
||||||
|
:actions (. params 6)
|
||||||
|
:hints (. params 7)
|
||||||
|
:timeout (. params 8)
|
||||||
})
|
})
|
||||||
|
|
||||||
(fn handle-dbus-method-call [conn sender path interface method params invocation]
|
(fn handle-dbus-method-call [conn sender path interface method params invocation]
|
||||||
|
Loading…
Reference in New Issue
Block a user