1tcl::chan::textwindow(n)Reflected/virtual channel supporttcl::chan::textwindow(n)
2
3
4
5______________________________________________________________________________
6
8 tcl::chan::textwindow - Textwindow channel
9
11 package require Tcl 8.5
12
13 package require TclOO
14
15 package require tcl::chan::events ?1?
16
17 package require tcl::chan::textwindow ?1?
18
19 ::tcl::chan::textwindow widget
20
21______________________________________________________________________________
22
24 The tcl::chan::textwindow package provides a command creating write-
25 only channels connected to text widgets. Anything written to the chan‐
26 nel is printed into the associated widget.
27
28 The internal TclOO class implementing the channel handler is a sub-
29 class of the tcl::chan::events framework.
30
32 ::tcl::chan::textwindow widget
33 This command creates a new textwindow channel and returns its
34 handle. Data written to this channel will appear in the associ‐
35 ated widget.
36
38 This document, and the package it describes, will undoubtedly contain
39 bugs and other problems. Please report such in the category virtchan‐
40 nel of the Tcllib Trackers [http://core.tcl.tk/tcllib/reportlist].
41 Please also report any ideas for enhancements you may have for either
42 package and/or documentation.
43
44 When proposing code changes, please provide unified diffs, i.e the out‐
45 put of diff -u.
46
47 Note further that attachments are strongly preferred over inlined
48 patches. Attachments can be made by going to the Edit form of the
49 ticket immediately after its creation, and then using the left-most
50 button in the secondary navigation bar.
51
53 Tk, reflected channel, text widget, tip 219, virtual channel
54
56 Channels
57
59 Copyright (c) 2009 Andreas Kupries <andreas_kupries@users.sourceforge.net>
60
61
62
63
64tcllib 1 tcl::chan::textwindow(n)