Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / site_perl / 5.8.0 / sun4-solaris / Tk / demos / widget_lib / ctext.pl
# ctext.pl
use subs qw/ctext_bs ctext_configure ctext_enter ctext_move ctext_press/;
use vars qw/$TOP/;
sub ctext {
# Create a window containing a canvas displaying a text string and
# allowing the string to be edited and re-anchored.
my($demo) = @_;
$TOP = $MW->WidgetDemo(
-name => $demo,
-text => ['This window displays a string of text to demonstrate the text facilities of canvas widgets. You can click in the boxes to adijust the position of the text relative to its positioning point or change its justification. The text also supports the following simple bindings for editing:
1. You can point, click, and type.
2. You can also select with button 1.
3. You can copy the selection to the mouse position with button 2.
4. Backspace and Control+h delete the selection if there is one;
otherwise they delete the character just before the insertion cursor.
5. Delete deletes the selection if there is one; otherwise it deletes
the character just after the insertion cursor.', qw/-wraplength 5i/],
-title => 'Canvas Text Demonstration',
-iconname => 'ctext',
);
my $c = $TOP->Canvas(qw/-relief flat -bd 0 -width 500 -height 350/);
$c->pack(qw/-side top -expand yes -fill both/);
$c->create(qw/rectangle 245 195 255 205 -outline black -fill red/);
# First, create the text item and give it bindings so it can be edited.
$c->addtag(qw/text withtag/,
$c->create('text', 250, 200,
-text => 'This is just a string of text to demonstrate the text facilities of canvas widgets. Bindings have been been defined to support editing (see above)."',
qw/-width 440 -anchor n -justify left
-font -*-Helvetica-Medium-R-Normal--*-240-*-*-*-*-*-*/
),
);
$c->bind(qw/text <1>/ => \&ctext_press);
$c->bind(qw/text <B1-Motion>/ => \&ctext_move);
$c->bind(qw/text <Shift-1>/ => sub {
my($c) = @_;
my $e = $c->XEvent;
my($x, $y) = ($e->x, $e->y);
$c->select(qw/adjust current/, "\@$x,$y");
});
$c->bind(qw/text <Shift-B1-Motion>/ => \&ctext_move);
$c->bind(qw/text <KeyPress>/ => sub {
my($c) = @_;
my $e = $c->XEvent;
my $A = $e->A;
$c->insert(qw/text insert/, "$A");
});
$c->bind(qw/text <Return>/ => sub {
my($c) = @_;
$c->insert(qw/text insert/, "\\n");
});
$c->bind(qw/text <Control-h>/ => \&ctext_bs);
$c->bind(qw/text <BackSpace>/ => \&ctext_bs);
$c->bind(qw/text <Delete>/ => sub {
my($c) = @_;
eval {local $SIG{__DIE__}; $c->dchars(qw/text sel.first sel.last/)};
$c->dchars('text', 'insert');
});
$c->bind(qw/text <2>/ => sub {
my($c) = @_;
my $e = $c->XEvent;
$c->insert('text', $e->xy, $MW->SelectionGet);
});
# Next, create some items that allow the text's anchor position to
# be edited.
my($x, $y, $color) = (50, 50, 'LightSkyBlue1');
ctext_configure $c, $x, $y, -anchor => 'se', $color;
ctext_configure $c, $x+30, $y, -anchor => 's', $color;
ctext_configure $c, $x+60, $y, -anchor => 'sw', $color;
ctext_configure $c, $x, $y+30, -anchor => 'e', $color;
ctext_configure $c, $x+30, $y+30, -anchor => 'center', $color;
ctext_configure $c, $x+60, $y+30, -anchor => 'w', $color;
ctext_configure $c, $x, $y+60, -anchor => 'ne', $color;
ctext_configure $c, $x+30, $y+60, -anchor => 'n', $color;
ctext_configure $c, $x+60, $y+60, -anchor => 'nw', $color;
my $item = $c->create('rectangle', $x+40, $y+40, $x+50, $y+50,
qw/-outline black -fill red/);
$c->bind($item, '<1>' => sub {
shift->itemconfigure(qw/text -anchor center/);
});
$c->create('text', $x+45, $y-5, -text => 'Text Position', qw/-anchor s
-font -*-times-medium-r-normal--*-240-*-*-*-*-*-*
-fill brown/);
# Lastly, create some items that allow the text's justification
# to be changed.
$x = 350; $y = 50; $color = 'SeaGreen2';
ctext_configure $c, $x, $y, -justify => 'left', $color;
ctext_configure $c, $x+30, $y, -justify => 'center', $color;
ctext_configure $c, $x+60, $y, -justify => 'right', $color;
$c->create('text', $x+45, $y-5, qw/-text Justification -anchor s
-font -*-times-medium-r-normal--*-240-*-*-*-*-*-*
-fill brown/);
my $config_fill = '';
$c->bind(qw/config <Enter>/ => [\&ctext_enter, \$config_fill]);
$c->bind(qw/config <Leave>/ =>
sub {$c->itemconfigure('current', -fill => $config_fill)}
);
} # end ctext
sub ctext_bs {
my($c) = @_;
eval {local $SIG{__DIE__}; $c->dchars(qw/text sel.first sel.last/)};
my $char = $c->index(qw/text insert/) - 1;
$c->dchars('text', $char) if $char >= 0;
} # end ctext_bs
sub ctext_configure {
my($w, $x, $y, $option, $value, $color) = @_;
my $item = $w->create('rectangle', $x, $y, $x+30, $y+30,
-outline => 'black', -fill => $color, -width => 1);
$w->bind($item, '<1>',
sub {$w->itemconfigure('text', $option => $value)}
);
$w->addtag(qw/config withtag/, $item);
} # end ctext_configure
sub ctext_enter {
my($w, $config_fill) = @_;
$$config_fill = ($w->itemconfigure('current', -fill))[4];
$w->itemconfigure(qw/current -fill black/);
} # end ctext_enter
sub ctext_move {
my($w) = @_;
my $e = $w->XEvent;
my($x, $y) = ($e->x, $e->y);
$w->select(qw/to current/, "\@$x,$y");
} # end ctext_move
sub ctext_press {
my($w) = @_;
my $e = $w->XEvent;
my($x, $y) = ($e->x, $e->y);
$w->icursor('current', "\@$x,$y");
$w->focus('current');
$w->CanvasFocus;
$w->select(qw/from current/, "\@$x,$y");
} # end ctext_press
1;