• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H31-Dec-2017-213128

t/H31-Dec-2017-503404

ChangesH A D31-Dec-20171.8 KiB8359

HistEntry.pmH A D31-Dec-201716.8 KiB695360

MANIFESTH A D31-Dec-2017296 1413

META.jsonH A D31-Dec-20171 KiB4847

META.ymlH A D31-Dec-2017573 2625

Makefile.PLH A D23-Nov-20161.1 KiB4232

READMEH A D23-Nov-2016856 3221

README

1Tk::HistEntry Module
2
3Tk::HistEntry implements an entry widget with history. You may use the up
4and down keys to select older entries (or use the associated listbox).
5
6Usage: $top->HistEntry(-textvariable => \$foo,
7                       -command => sub {
8                         # automatically adds $foo to history
9                         print STDERR "Do something with $foo\n";
10                       })->pack;
11
12The widget comes in two flavors: the "HistEntry" widget is an
13inherited BrowseEntry widget where you see history in the associated
14listbox, too. The "SimpleHistEntry" widget is a plain Entry widget.
15
16To install, type
17
18	$ perl Makefile.PL
19	$ make
20	$ make install
21
22Testing is done with
23
24	$ make test
25
26There's also a demo which can be started with
27
28	$ make demo
29
30Send bug reports, comments and suggestions to Slaven Rezic
31<slaven@rezic.de>.
32