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
|
[comment {-*- tcl -*- doctools manpage}]
[vset VERSION 1.0.1]
[manpage_begin notifywindow n [vset VERSION]]
[copyright {2015 Kevin Walzer/WordTech Communications LLC <kw@codebykevin.com>}]
[keywords tk]
[keywords alert]
[keywords notification]
[moddesc {notifywindow}]
[titledesc {Provides unobtrusive window for alerts/notifications from Tk applications}]
[require tk]
[require notifywindow [opt [vset VERSION]]]
[description]
This package provides a low-key, unobtrusive window for alerts and notifications from Tk
applications that briefly appears in the upper-right hand corner of the screen. Modeled after the
"Growl" framework on Mac OS X, the window fades in and out on platforms that support such effects,
and appears and disappears on other platforms.
[list_begin definitions]
[call [cmd ::notifywindow::notifywindow] [arg msg] [arg img]]
Posts the toplevel notification window with the [arg msg] string,
which should not exceed 40 characters, and an optional image,
which should be 16x16 pixels.
[call [cmd ::notifywindow::demo]]
Simple demo that illustrates how the package works.
[list_end]
[section ACKNOWLEDGMENTS]
While [package notifywindow] was inspired by the Growl notification
package for Mac OS X, it shares no code with that project whatsoever.
[vset CATEGORY notifywindow]
[include ../../support/devel/doc/feedback.inc]
[manpage_end]
|