Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b978141d
Commit
b978141d
authored
Jun 09, 2010
by
Juanma Barranquero
Browse files
* net/notifications.el (dbus-register-signal): Declare function.
(notifications-notify): Fix typos and reflow docstring.
parent
5f4f2ae4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
7 deletions
+14
-7
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/net/notifications.el
lisp/net/notifications.el
+9
-7
No files found.
lisp/ChangeLog
View file @
b978141d
2010-06-09 Juanma Barranquero <lekktu@gmail.com>
* net/notifications.el (dbus-register-signal): Declare function.
(notifications-notify): Fix typos and reflow docstring.
2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
Improve VC create/retrieve tag/branch.
...
...
lisp/net/notifications.el
View file @
b978141d
...
...
@@ -38,6 +38,7 @@
;; disabled with configuration option "--without-dbus". Declare used
;; subroutines and variables of `dbus' therefore.
(
declare-function
dbus-call-method
"dbusbind.c"
)
(
declare-function
dbus-register-signal
"dbusbind.c"
)
(
require
'dbus
)
...
...
@@ -127,9 +128,10 @@ Various PARAMS can be set:
:actions A list of actions in the form:
(KEY TITLE KEY TITLE ...)
where KEY and TITLE are both strings.
The default action (usually invoked by clicking the notification)
should have a key named \"default\". The name can be anything,
though implementations are free not to display it.
The default action (usually invoked by clicking the
notification) should have a key named \"default\".
The name can be anything, though implementations are free
not to display it.
:timeout The timeout time in milliseconds since the display
of the notification at which the notification should
automatically close.
...
...
@@ -150,14 +152,14 @@ Various PARAMS can be set:
:suppress-sound Causes the server to suppress playing any sounds, if it has
that ability.
:x Specifies the X location on the screen that the notification
should point to. The \"y\" hint must also be specified.
should point to.
The \"y\" hint must also be specified.
:y Specifies the Y location on the screen that the notification
should point to. The \"x\" hint must also be specified.
:on-action Function to call when an action is invoked. The key of the
should point to.
The \"x\" hint must also be specified.
:on-action Function to call when an action is invoked.
The key of the
action is passed as argument to the function.
:on-close Function to call when the notification has been closed
by timeout or by the user.
The function receive the closing reason as argument:
The function receive
s
the closing reason as argument:
- `expired' if the notification has expired
- `dismissed' if the notification was dismissed by the user
- `close-notification' if the notification was closed
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment