#!/usr/bin/perl
use
5.008;
use
lib Tk->findINC(
'demos/widget_lib'
);
use
Tk::widgets
qw/ DialogBox ErrorDialog LabEntry ROText /
;
build_about_dialog demos invoke lsearch
see_code see_vars show_stat view_widget
/
;
use
vars
qw/ $MW $FONT $BOLD_FONT $LARGE_FONT $MONOSPACE_FONT $WIDTRIB /
;
use
vars
qw/ $CODE $CODE_RERUN $CODE_TEXT $VARS $VIEW $VIEW_TEXT /
;
use
vars
qw/ $ALIGN $BRAKES $LIGHTS $OIL $SOBER $TRANS $WIPERS /
;
use
vars
qw/ $COLOR $FONT_STYLE $POINT_SIZE $DEMO_FILE %DEMO_DESCRIPTION $XFT /
;
$XFT
=
$Tk::Config::xlib
=~ /-lXft\b/;
$MW
= Tk::MainWindow->new;
$MW
->configure(
-menu
=>
my
$menubar
=
$MW
->Menu);
{
@WidgetWrap::ISA
=
qw/Tk::MainWindow/
;
sub
new {
my
(
$name
) = $::DEMO_FILE =~ m
$::MW->WidgetDemo(
-name
=>
$name
,
-text
=> $::DEMO_DESCRIPTION{
$name
});
}
}
@MainWindow::ISA
=
'WidgetWrap'
;
$MW
->title(
'Perl/Tk Widget Demonstration'
);
$MW
->iconname(
'widget'
);
my
$DEFAULT_FONT_FAMILY
=
$XFT
?
"sans-serif"
:
"Helvetica"
;
{
$FONT
=
"$DEFAULT_FONT_FAMILY 12"
;
$BOLD_FONT
=
"$DEFAULT_FONT_FAMILY 12 bold"
;
$LARGE_FONT
=
"$DEFAULT_FONT_FAMILY 18"
;
$MONOSPACE_FONT
=
"Courier 12"
;
my
$l
=
$MW
->Label;
my
$default_font
=
$l
->cget(-font);
if
(
$default_font
) {
my
%default_font
=
$MW
->fontActual(
$default_font
);
$FONT
=
$MW
->fontCreate(
%default_font
,
-family
=>
$DEFAULT_FONT_FAMILY
);
$BOLD_FONT
=
$MW
->fontCreate(
%default_font
,
-family
=>
$DEFAULT_FONT_FAMILY
,
-weight
=>
"bold"
);
$LARGE_FONT
=
$MW
->fontCreate(
%default_font
,
-family
=>
$DEFAULT_FONT_FAMILY
,
-weight
=>
"bold"
,
-size
=> -18);
$MONOSPACE_FONT
=
$MW
->fontCreate(
%default_font
,
-family
=>
$XFT
?
"monospace"
:
"Courier"
);
$MW
->optionAdd(
"*font"
,
$FONT
);
}
$l
->destroy;
}
my
$widget_lib
= Tk->findINC(
'demos/widget_lib'
);
my
$wd
=
"$widget_lib/WidgetDemo.pm"
;
$WIDTRIB
= Tk->findINC(
'demos/widtrib'
);
unless
(Tk::tainting) {
$WIDTRIB
=
$ENV
{WIDTRIB}
if
defined
$ENV
{WIDTRIB};
$WIDTRIB
=
$ARGV
[0]
if
defined
$ARGV
[0];
}
my
$file
=
$menubar
->cascade(
qw/-label File -underline 0 -menuitems/
=>
[
[
cascade
=>
'~View'
,
-menuitems
=>
[
[
command
=>
'~widget'
,
-command
=> [\
&view_widget
, __FILE__]],
[
command
=>
'~WidgetDemo'
,
-command
=> [\
&view_widget
,
$wd
]],
],
],
''
,
[
command
=>
'~Quit'
,
-command
=> [\
&exit
],
-accelerator
=>
'Ctrl-Q'
],
]);
my
$help
=
$menubar
->cascade(
qw/-label Help -underline 0 -menuitems/
=>
[
[
command
=>
'~About'
],
]);
my
$T
=
$MW
->Scrolled(
'ROText'
,
-scrollbars
=>
'e'
,
-wrap
=>
'word'
,
-width
=> 70,
-height
=> 30,
-font
=>
$FONT
,
-setgrid
=> 1,
-highlightthickness
=> 0,
-padx
=> 4,
-pady
=> 2,
-takefocus
=> 0,
)->grid(
qw/-sticky nsew/
);
$MW
->gridRowconfigure( 0,
-weight
=> 1);
$MW
->gridColumnconfigure(0,
-weight
=> 1);
$MW
->
bind
(
'<Control-q>'
=> \
&exit
);
my
$STATUS_VAR
;
my
$status
=
$MW
->Label(
-textvariable
=> \
$STATUS_VAR
,
qw/-anchor w/
);
$status
->grid(
qw/-sticky ew/
);
$T
->tagConfigure(
qw/title -font/
,
$LARGE_FONT
);
$T
->tagConfigure(
qw/demo -lmargin1 1c -lmargin2 1c -foreground blue/
);
if
(
$MW
->depth == 1) {
$T
->tagConfigure(
qw/hot -background black -foreground white/
);
$T
->tagConfigure(
qw/visited -lmargin1 1c -lmargin2 1c -underline 1/
);
}
else
{
$T
->tagConfigure(
qw/hot -relief raised -borderwidth 1 -foreground red/
);
$T
->tagConfigure(
qw/visited -lmargin1 1c -lmargin2 1c -foreground/
=>
'#303080'
);
}
$T
->tagConfigure(
'bold'
,
-font
=>
$BOLD_FONT
);
$T
->tagBind(
qw/demo <ButtonRelease-1>/
=> \
&invoke
);
my
$last_line
=
''
;
$T
->tagBind(
qw/demo <Enter>/
=> [
sub
{
my
(
$text
,
$sv
) =
@_
;
my
$e
=
$text
->XEvent;
my
(
$x
,
$y
) = (
$e
->x,
$e
->y);
$last_line
=
$text
->
index
(
"\@$x,$y linestart"
);
$text
->tagAdd(
'hot'
,
$last_line
,
"$last_line lineend"
);
$text
->configure(
qw/-cursor hand2/
);
show_stat
$sv
,
$text
,
$text
->
index
(
'current'
);
}, \
$STATUS_VAR
]
);
$T
->tagBind(
qw/demo <Leave>/
=> [
sub
{
my
(
$text
,
$sv
) =
@_
;
$text
->tagRemove(
qw/hot 1.0 end/
);
$text
->configure(
qw/-cursor xterm/
);
$$sv
=
''
;
}, \
$STATUS_VAR
]
);
$T
->tagBind(
qw/demo <Motion>/
=> [
sub
{
my
(
$text
,
$sv
) =
@_
;
my
$e
=
$text
->XEvent;
my
(
$x
,
$y
) = (
$e
->x,
$e
->y);
my
$new_line
=
$text
->
index
(
"\@$x,$y linestart"
);
if
(
$new_line
ne
$last_line
) {
$text
->tagRemove(
qw/hot 1.0 end/
);
$last_line
=
$new_line
;
$text
->tagAdd(
'hot'
,
$last_line
,
"$last_line lineend"
);
}
show_stat
$sv
,
$text
,
$text
->
index
(
'current'
);
}, \
$STATUS_VAR
]
);
$T
->insert(
'end'
,
"Perl/Tk Widget Demonstrations\n"
,
'title'
);
$T
->insert(
'end'
,
"\nThis application provides a front end for several short scripts that demonstrate what you can do with Tk widgets. Each of the numbered lines below describes a demonstration; you can click on it to invoke the demonstration. Once the demonstration window appears, you can click the "
,
''
,
'See Code'
,
'bold'
,
" button to see the Perl/Tk code that created the demonstration. If you wish, you can edit the code and click the "
,
''
,
"Rerun Demo"
,
'bold'
,
" button in the code window to reinvoke the demonstration with the modified code.\n"
);
demos
'Getting Started'
, (
'hello'
=>
'An introduction to Perl/Tk'
,
);
demos
'Labels, buttons, checkbuttons, and radiobuttons'
, (
'labels'
=>
'Labels (text and images)'
,
'unicodeout'
=>
'Labels and Unicode text'
,
'button'
=>
'Buttons'
,
'check'
=>
'Checkbuttons (select any of a group)'
,
'radio'
=>
'Radiobuttons (select one of a group)'
,
'puzzle'
=>
'A 15-puzzle game made out of buttons'
,
'icon'
=>
'Iconic buttons that use bitmaps'
,
'image1'
=>
'Two labels displaying images'
,
'image2'
=>
'A simple user interface for viewing images'
,
'labelframe'
=>
'Labelled frames'
,
);
demos
'Listboxes'
, (
'states'
=>
'The 50 states'
,
'colors'
=>
'Change widget\'s color scheme'
,
'sayings'
=>
'A collection of famous and infamous sayings'
,
);
demos
'Entries and Spin-boxes'
, (
'entry1'
=>
'Entries without scrollbars'
,
'entry2'
=>
'Entries with scrollbars'
,
'entry3'
=>
'Validated entries and password fields'
,
'spin'
=>
'Spin-boxes'
,
'form'
=>
'Simple Rolodex-like form'
,
);
demos
'Text'
, (
'texts'
=>
'Basic editable text'
,
'style'
=>
'Text display styles'
,
'bind'
=>
'Hypertext (tag bindings)'
,
'twind'
=>
'A text widget with embedded windows'
,
'search'
=>
'A search tool built with a text widget'
,
);
demos
'Canvases'
, (
'items'
=>
'The canvas item types'
,
'plot'
=>
'A simple 2-D plot'
,
'ctext'
=>
'Text items in canvases'
,
'arrows'
=>
'An editor for arrowheads on canvas lines'
,
'ruler'
=>
'A ruler with adjustable tab stops'
,
'floor'
=>
'A building floor plan'
,
'cscroll'
=>
'A simple scrollable canvas'
,
'transtile'
=>
'Tiles and transparent images'
,
);
demos
'Scales'
, (
'hscale'
=>
'Horizontal scale'
,
'vscale'
=>
'Vertical scale'
,
);
demos
'Paned Windows'
, (
'paned1'
=>
'Horizontal paned window'
,
'paned2'
=>
'Vertical paned window'
,
);
demos
'Photos and Images'
, (
'photo1'
=>
'Transparent pixels'
,
'photo2'
=>
'Alpha channel compositing'
,
);
demos
'Menus'
, (
'menus'
=>
'Menus and cascades (sub-menus)'
,
'menus2'
=>
'As above, but using Perl/Tk -menuitems'
,
'menbut'
=>
'Menubuttons'
,
);
demos
'Common Dialogs'
, (
'msgBox'
=>
'Message boxes'
,
'filebox'
=>
'File selection dialog'
,
'choosedir'
=>
'Directory selection dialog'
,
'clrpick'
=>
'Color picker'
,
);
demos
'Tix Widgets'
, (
'balloon'
=>
'Popup help window when mouse lingers over widget'
,
'browseentry'
=>
'Entry with Listbox to select list values'
,
'browseentry2'
=>
'Another BrowseEntry example'
,
'dirtree'
=>
'Display a directory tree'
,
'form_mgr'
=>
'The form geometry manager'
,
'HList'
=>
'A hierarchical listbox widget'
,
'HList2'
=>
'Multicolumn listbox with individual cell styles'
,
'labframe'
=>
'A Frame with embedded label'
,
);
demos
'Simulations'
, (
'bounce'
=>
'Balls bouncing in a cavity'
,
);
demos
'Sample Perl Mega-Widgets'
, (
'mega'
=>
'Introduction to writing pure Perl mega-widgets'
,
'slide'
=>
'Composite Tk::SlideSwitch - binary on/off switch'
,
'trace2'
=>
'Derived Tk::TraceText - Text contents defined by a traced variable'
,
);
demos
'Miscellaneous'
, (
'bitmaps'
=>
'The built-in bitmaps'
,
'dialog1'
=>
'A dialog box with a local grab'
,
'dialog2'
=>
'A dialog box with a global grab'
,
'trace1'
=>
'Trace a variable\'s value'
,
'progress'
=>
'Various ProgressBar widgets'
,
'keysyms'
=>
'Show keyboard symbols'
,
'virtevents1'
=>
'Synthesizing events'
,
);
$T
->insert(
'end'
,
"\n"
,
''
,
"User Contributed Demonstrations\n"
,
'title'
);
opendir
(C,
$WIDTRIB
) or
warn
"Cannot open $WIDTRIB: $!"
;
my
(
@dirent
) =
grep
/^.+\.pl$/,
sort
(
readdir
C);
closedir
C;
unshift
@dirent
,
'TEMPLATE.pl'
;
my
$i
= 0;
while
(
$_
=
shift
@dirent
) {
next
if
/TEMPLATE\.pl/ and
$i
!= 0;
unless
(
open
(C,
"$WIDTRIB/$_"
)) {
warn
"Cannot open $_: $!"
unless
/TEMPLATE\.pl/;
next
;
}
my
(
$name
) = /^(.*)\.pl$/;
$_
= <C>;
my
(
$title
) = /^
$title
=~ s{\r}{}g;
$DEMO_DESCRIPTION
{
$name
} =
$title
;
close
C;
$T
->insert(
'end'
, ++
$i
.
". $title\n"
, [
'demo'
,
"demo-$name"
]);
}
build_about_dialog
$help
;
$T
->focus;
MainLoop;
sub
AUTOLOAD {
my
(
$demo
) =
@_
;
$T
->Busy;
{
$DEMO_FILE
=
"$WIDTRIB/${demo}.pl"
if
-f
"$WIDTRIB/${demo}.pl"
;
$DEMO_FILE
=
"$widget_lib/${demo}.pl"
if
-f
"$widget_lib/${demo}.pl"
;
do
$DEMO_FILE
;
warn
$@
if
$@;
}
$T
->Unbusy;
goto
&$::AUTOLOAD
if
defined
&$::AUTOLOAD;
}
sub
build_about_dialog {
my
$help
=
shift
;
my
$dialog
=
$MW
->DialogBox(
-title
=>
"Perl/Tk, based on Tcl/Tk ${Tk::version}.x"
,
-default_button
=>
'OK'
,
-buttons
=> [
'OK'
],
);
my
$df
=
$dialog
->add(
'Labelframe'
,
-text
=>
' 2006 - Oct - 31 '
);
$df
->
pack
(
qw/ -fill both -expand 1 /
);
my
(
$change
) =
$Tk::CHANGE
=~ /Change:\s+(.*)/;
my
(
$tk_date
) =
scalar
localtime
( (
stat
$Tk::library
)[9] );
my
(
$tk
) =
"$Tk::VERSION ($change), $tk_date"
;
foreach
my
$item
(
[
'Perl'
,
"$], $Config{cf_time}"
],
[
'Tk'
,
$tk
],
[
'Platform'
,
$Tk::platform
],
[
'Library'
,
$Tk::library
],
) {
my
$l
=
$item
->[0] .
':'
;
my
$le
=
$df
->LabEntry(
-font
=>
$FONT
,
-label
=>
' '
x (13 -
length
$l
) .
$l
,
-labelPack
=> [
qw/-side left -anchor w/
],
-labelFont
=>
'Courier 12 bold'
,
-relief
=>
'flat'
,
-takefocus
=> 0,
-textvariable
=>
$item
->[1],
-width
=> 45,
);
$le
->
pack
(
qw/ -fill x -expand 1/
);
$le
->Subwidget(
'entry'
)->bindtags( [ ] );
}
$help
->cget(-menu)->entryconfigure(
'About'
,
-command
=> [
$dialog
=>
'Show'
],
);
}
sub
demos {
my
(
$title
,
@demos
) =
@_
;
$T
->insert(
'end'
,
"\n"
,
''
,
"$title\n"
,
'title'
);
for
(
my
$n
= 0;
$n
<=
$#demos
;
$n
+= 2) {
$T
->insert(
'end'
,
$n
/ 2 + 1 .
'. '
.
$demos
[
$n
+ 1] .
".\n"
,
[
'demo'
,
'demo-'
.
$demos
[
$n
]]);
}
}
sub
invoke {
my
(
$text
) =
@_
;
my
$index
=
$text
->
index
(
'current'
);
my
@tags
=
$T
->tagNames(
$index
);
my
$i
= lsearch(
'demo\-.*'
,
@tags
);
return
if
$i
< 0;
my
(
$demo
) =
$tags
[
$i
] =~ /demo-(.*)/;
$T
->tagAdd(
'visited'
,
"$index linestart"
,
"$index lineend"
);
{
no
strict
'refs'
;
$SIG
{__WARN__} =
sub
{
print
@_
unless
$_
[0] =~ /Subroutine \S+ redefined at/;
};
&$demo
(
$demo
);
}
}
sub
lsearch {
my
(
$regexp
,
@list
) =
@_
;
my
(
$i
);
for
(
$i
=0;
$i
<=
$#list
;
$i
++) {
return
$i
if
$list
[
$i
] =~ /
$regexp
/;
}
return
-1;
}
sub
see_code {
my
(
$demo
) =
@_
;
my
$file
;
$file
= (
$demo
=~ /\.pl$/ ) ?
$demo
:
"${demo}.pl"
;
if
(not Exists
$CODE
) {
$CODE
=
$MW
->Toplevel;
my
$code_buttons
=
$CODE
->Frame;
$code_buttons
->
pack
(
qw/-side bottom -fill x/
);
my
$code_buttons_dismiss
=
$code_buttons
->Button(
-text
=>
'Dismiss'
,
-command
=> [
$CODE
=>
'withdraw'
],
);
$CODE_RERUN
=
$code_buttons
->Button(
-text
=>
'Rerun Demo'
);
$CODE_TEXT
=
$CODE
->Scrolled(
'Text'
,
qw/ -height 40 -scrollbars oe -font /
,
$MONOSPACE_FONT
);
$code_buttons_dismiss
->
pack
(
qw/-side left -expand 1/
);
$CODE_RERUN
->
pack
(
qw/-side left -expand 1/
);
$CODE_TEXT
->
pack
(
qw/-side left -expand 1 -fill both/
);
}
else
{
$CODE
->deiconify;
$CODE
->raise;
}
$CODE_RERUN
->configure(
-command
=>
sub
{
eval
$CODE_TEXT
->get(
qw/1.0 end/
);
{
no
strict
'refs'
;
&$demo
(
$demo
);
}
});
$CODE
->iconname(
$file
);
$file
=
"$WIDTRIB/$file"
if
-f
"$WIDTRIB/$file"
;
$file
=
"$widget_lib/$file"
if
-f
"$widget_lib/$file"
;
$CODE
->title(
"Demo code: $file"
);
$CODE_TEXT
->
delete
(
qw/1.0 end/
);
open
(CODE,
"<$file"
) or
warn
"Cannot open demo file $file: $!"
;
{
local
$/ =
undef
;
$CODE_TEXT
->insert(
'1.0'
, <CODE>);
}
close
CODE;
$CODE_TEXT
->markSet(
qw/insert 1.0/
);
$CODE_TEXT
->focus;
}
sub
see_vars {
my
(
$parent
,
$args
) =
@_
;
$VARS
->destroy
if
Exists(
$VARS
);
$VARS
=
$parent
->Toplevel;
$VARS
->geometry(
'+300+300'
);
$VARS
->title(
'Variable Values'
);
$VARS
->iconname(
'Variables'
);
my
$title
=
$VARS
->Label(
-text
=>
'Variable Values:'
,
-width
=> 20,
-anchor
=>
'center'
,
-font
=>
$LARGE_FONT
,
);
$title
->
pack
(
qw/-side top -fill x/
);
my
(
$label
,
$var
);
foreach
my
$i
(
@$args
) {
(
$label
,
$var
) =
@$i
;
my
$wf
=
$VARS
->Frame->
pack
(
qw/-anchor w/
);
$wf
->Label(
-text
=>
"$label: "
)->
pack
(
qw/-side left/
);
$wf
->Label(
-textvariable
=>
$var
)->
pack
(
qw/-side left/
);
}
$VARS
->Button(
-text
=>
'OK'
,
-command
=> [
$VARS
=>
'destroy'
])->
pack
(
qw/-side bottom -pady 2/
);
}
sub
show_stat {
my
(
$sv
,
$text
,
$index
) =
@_
;
my
@tags
=
$text
->tagNames(
$index
);
my
$i
= lsearch(
'demo\-.*'
,
@tags
);
return
if
$i
< 0;
my
(
$demo
) =
$tags
[
$i
] =~ /demo-(.*)/;
$$sv
=
"Click Button-1 to run the \"$demo\" demonstration."
;
}
sub
view_widget {
my
(
$widget
) =
@_
;
if
(not Exists
$VIEW
) {
$VIEW
=
$MW
->Toplevel;
$VIEW
->iconname(
'widget'
);
my
$view_buttons
=
$VIEW
->Frame;
$view_buttons
->
pack
(
qw/-side bottom -fill x/
);
my
$view_buttons_dismiss
=
$view_buttons
->Button(
-text
=>
'Dismiss'
,
-command
=> [
$VIEW
=>
'withdraw'
],
);
$view_buttons_dismiss
->
pack
(
qw/-side left -expand 1/
);
$VIEW_TEXT
=
$VIEW
->Scrolled(
'Text'
,
qw/ -height 40 -scrollbars oe /
);
$VIEW_TEXT
->
pack
(
qw/-side left -expand 1 -fill both/
);
}
else
{
$VIEW
->deiconify;
$VIEW
->raise;
}
$VIEW
->title(
"Demo code: $widget"
);
$VIEW_TEXT
->configure(
qw/-state normal/
);
$VIEW_TEXT
->
delete
(
qw/1.0 end/
);
open
(VIEW,
"<$widget"
) or
warn
"Cannot open demo file $widget: $!"
;
{
local
$/ =
undef
;
$VIEW_TEXT
->insert(
'1.0'
, <VIEW>);
}
close
VIEW;
$VIEW_TEXT
->markSet(
qw/insert 1.0/
);
$VIEW_TEXT
->configure(
qw/-state disabled/
);
}
Hide Show 52 lines of Pod