• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..14-Nov-201334

arrow.tclH A D14-Jun-20017.9 KiB

bind.tclH A D14-Sep-19983 KiB

bitmap.tclH A D14-Sep-19981.6 KiB

browseH A D05-Nov-20011.8 KiB

button.tclH A D30-May-20071.7 KiB

check.tclH A D14-Sep-19981.3 KiB

clrpick.tclH A D14-Jun-20011.6 KiB

colors.tclH A D14-Sep-19985.1 KiB

cscroll.tclH A D12-Dec-20053.5 KiB

ctext.tclH A D14-Jun-20014.9 KiB

dialog1.tclH A D14-Sep-1998731

dialog2.tclH A D05-Nov-2001680

entry1.tclH A D14-Sep-19981.5 KiB

entry2.tclH A D14-Sep-19982.3 KiB

entry3.tclH A D19-Nov-20016 KiB

filebox.tclH A D10-Sep-20042.2 KiB

floor.tclH A D14-Jun-200177.5 KiB

form.tclH A D14-Sep-19981.2 KiB

helloH A D29-Oct-2001547

hscale.tclH A D14-Jun-20011.7 KiB

icon.tclH A D14-Sep-19982.2 KiB

image1.tclH A D14-Sep-19981.1 KiB

image2.tclH A D12-Aug-20023.3 KiB

images/H14-Nov-201313

items.tclH A D14-Jun-20019.6 KiB

ixsetH A D05-Nov-20018 KiB

label.tclH A D14-Sep-19981.4 KiB

labelframe.tclH A D30-Oct-20012 KiB

license.termsH A D01-Apr-19982.2 KiB

menu.tclH A D28-Apr-20076.9 KiB

menubu.tclH A D28-Apr-20074.6 KiB

msgbox.tclH A D14-Sep-19982.1 KiB

paned1.tclH A D22-Feb-20021.3 KiB

paned2.tclH A D22-Feb-20022.4 KiB

plot.tclH A D14-Jun-20012.9 KiB

puzzle.tclH A D28-Apr-20072.7 KiB

radio.tclH A D12-Nov-20012.4 KiB

READMEH A D14-Sep-19982.1 KiB

rmtH A D29-Oct-20015.2 KiB

rolodexH A D05-Nov-20017.9 KiB

ruler.tclH A D14-Jun-20015.2 KiB

sayings.tclH A D14-Sep-19982.3 KiB

search.tclH A D14-Sep-19984.5 KiB

spin.tclH A D30-Oct-20012 KiB

squareH A D14-Sep-19981.2 KiB

states.tclH A D14-Sep-19981.8 KiB

style.tclH A D14-Sep-19986.8 KiB

tclIndexH A D01-Apr-19984.3 KiB

tcolorH A D29-Oct-200111.3 KiB

text.tclH A D15-Nov-20013.6 KiB

timerH A D29-Oct-20011.1 KiB

twind.tclH A D14-Jun-20016.6 KiB

unicodeout.tclH A D21-Feb-20032.7 KiB

vscale.tclH A D14-Jun-20011.6 KiB

widgetH A D08-Nov-200712.3 KiB

README

1This directory contains a collection of programs to demonstrate
2the features of the Tk toolkit.  The programs are all scripts for
3"wish", a windowing shell.  If wish has been installed in /usr/local
4then you can invoke any of the programs in this directory just
5by typing its file name to your command shell.  Otherwise invoke
6wish with the file as its first argument, e.g., "wish hello".
7The rest of this file contains a brief description of each program.
8Files with names ending in ".tcl" are procedure packages used by one
9or more of the demo programs;  they can't be used as programs by
10themselves so they aren't described below.
11
12hello -		Creates a single button;  if you click on it, a message
13		is typed and the application terminates.
14
15widget -	Contains a collection of demonstrations of the widgets
16		currently available in the Tk library.  Most of the .tcl
17		files are scripts for individual demos available through
18		the "widget" program.
19
20ixset -		A simple Tk-based wrapper for the "xset" program, which
21		allows you to interactively query and set various X options
22		such as mouse acceleration and bell volume.  Thanks to
23		Pierre David for contributing this example.
24
25rolodex -	A mock-up of a simple rolodex application.  It has much of
26		the user interface for such an application but no back-end
27		database.  This program was written in response to Tom
28		LaStrange's toolkit benchmark challenge.
29
30tcolor -	A color editor.  Allows you to edit colors in several
31		different ways, and will also perform automatic updates
32		using "send".
33
34rmt -		Allows you to "hook-up" remotely to any Tk application
35		on the display.  Select an application with the menu,
36		then just type commands:  they'll go to that application.
37
38timer -		Displays a seconds timer with start and stop buttons.
39		Control-c and control-q cause it to exit.
40
41browse -	A simple directory browser.  Invoke it with and argument
42		giving the name of the directory you'd like to browse.
43		Double-click on files or subdirectories to browse them.
44		Control-c and control-q cause the program to exit.
45
46RCS: @(#) $Id: README,v 1.2 1998/09/14 18:23:25 stanton Exp $
47