diff options
author | dinoex <dinoex@FreeBSD.org> | 2008-11-29 20:22:00 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2008-11-29 20:22:00 +0800 |
commit | ed0063ec9d4da71b9de7c689fc3c0eb9da57f870 (patch) | |
tree | cb7f73ebd3502eec7cf86660dea04bd58bcaef66 /deskutils/Makefile | |
parent | db146db8b2b49fb8496aa7e0f3ce9deb5c869e1b (diff) | |
download | freebsd-ports-gnome-ed0063ec9d4da71b9de7c689fc3c0eb9da57f870.tar.gz freebsd-ports-gnome-ed0063ec9d4da71b9de7c689fc3c0eb9da57f870.tar.zst freebsd-ports-gnome-ed0063ec9d4da71b9de7c689fc3c0eb9da57f870.zip |
Corner is a simple 'hot-corners' implementation. It instantiates a
CornerDelegate object and sends it messages of the form -enterTopLeft and
-exitTopLeftAfter: for each corner, where the exit message takes the number of
seconds the mouse spent in that corner as an argument.
The delegate simply ignores these messages by default. A category on this
object, however, can be provided. If you store a Smalltalk script in the
"CornerScript" default as a string object then this will be loaded
automatically and compiled. If this contains a category on CornerDelegate then
the Smalltalk implementation will be called instead. A trivial example might
log a message when the corner was entered was called:
$ defaults write Corner CornerScript \
"CornerDelegate extend [ enterTopLeft [ 'Script called' log. ] ]"
WWW: http://www.etoile-project.org/
Diffstat (limited to 'deskutils/Makefile')
-rw-r--r-- | deskutils/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/deskutils/Makefile b/deskutils/Makefile index 22606aff2fb3..42ebd4964809 100644 --- a/deskutils/Makefile +++ b/deskutils/Makefile @@ -40,6 +40,7 @@ SUBDIR += egroupware SUBDIR += estickies SUBDIR += etask + SUBDIR += etoile-corner SUBDIR += etoile-dictionaryreader SUBDIR += etoile-distributedview SUBDIR += etoile-extendedworkspacekit |