Tcl-pTk
view release on metacpan or search on metacpan
lib/Tcl/pTk/Text.pm view on Meta::CPAN
use strict;
package Tcl::pTk::Text;
use Text::Tabs;
our ($VERSION) = ('1.11');
# borrowed from Tk/Text.pm without any modifications
use base qw(Tcl::pTk::Clipboard Tcl::pTk::Widget);
use Tcl::pTk::Submethods
( 'mark' => [qw(gravity next previous set unset)], # names left out, because defined as a list function in Widget.pm
'scan' => [qw(mark dragto)],
'tag' => [qw(add cget delete lower
nextrange prevrange raise remove)],
'window' => [qw(cget create)],
'image' => [qw(cget create)],
'xview' => [qw(moveto scroll)],
'yview' => [qw(moveto scroll)],
'edit' => [qw(modified redo reset separator undo)],
);
sub ClassInit
{
my ($class,$mw) = @_;
$class->SUPER::ClassInit($mw, 'Text'); # Call with optional 'Text' Tag
# right-click menu
$mw->bind(
$class,
$mw->windowingsystem eq 'aqua' ? '<2>' : '<3>',
['PostPopupMenu', Tcl::pTk::Ev('X'), Tcl::pTk::Ev('Y')],
);
# We use the 'Text' tag for the bindings below, because we are adding to the tcl text-widget
# bindings, which are under the 'Text' bindtag.
$class = 'Text';
$mw->bind($class,'<KeyPress>',['InsertKeypress',Tcl::pTk::Ev('A')]);
$mw->bind($class,'<Insert>', \&ToggleInsertMode ) ;
$mw->bind($class,'<Delete>','Delete');
$mw->bind($class,'<F1>', 'clipboardColumnCopy');
$mw->bind($class,'<F2>', 'clipboardColumnCut');
$mw->bind($class,'<F3>', 'clipboardColumnPaste');
$mw->bind($class,'<BackSpace>','Backspace');
$mw->MouseWheelBind($class);
}
sub selectAll
{
my ($w) = @_;
$w->tagAdd('sel','1.0','end');
}
sub unselectAll
{
my ($w) = @_;
$w->tagRemove('sel','1.0','end');
}
sub adjustSelect
{
my ($w) = @_;
my $Ev = $w->XEvent;
$w->ResetAnchor($Ev->xy);
$w->SelectTo($Ev->xy,'char')
}
sub selectLine
{
my ($w) = @_;
my $Ev = $w->XEvent;
$w->SelectTo($Ev->xy,'line');
Tcl::pTk::catch { $w->markSet('insert','sel.first') };
}
sub selectWord
{
my ($w) = @_;
my $Ev = $w->XEvent;
$w->SelectTo($Ev->xy,'word');
Tcl::pTk::catch { $w->markSet('insert','sel.first') }
}
sub Backspace
{
my ($w) = @_;
my $sel = Tcl::pTk::catch { $w->tag('nextrange','sel','1.0','end') };
if (defined $sel)
{
$w->delete('sel.first','sel.last');
return;
}
$w->deleteBefore;
}
sub Delete
{
my ($w) = @_;
lib/Tcl/pTk/Text.pm view on Meta::CPAN
$pop->resizable('yes','no');
return $pop;
}
########################################################################
# Insert --
# Insert a string into a text at the point of the insertion cursor.
# If there is a selection in the text, and it covers the point of the
# insertion cursor, then delete the selection before inserting.
#
# Arguments:
# w - The text window in which to insert the string
# string - The string to insert (usually just a single character)
sub Insert
{
my ($w,$string) = @_;
return unless (defined $string && $string ne '');
#figure out if cursor is inside a selection
my @ranges = $w->tagRanges('sel');
if (@ranges)
{
while (@ranges)
{
my ($first,$last) = splice(@ranges,0,2);
if ($w->compare($first,'<=','insert') && $w->compare($last,'>=','insert'))
{
$w->ReplaceSelectionsWith($string);
return;
}
}
}
# paste it at the current cursor location
$w->insert('insert',$string);
$w->see('insert');
}
sub Contents
{
my $w = shift;
if (@_)
{
$w->delete('1.0','end');
$w->insert('end',shift) while (@_);
}
else
{
return $w->get('1.0','end -1c');
}
}
sub WhatLineNumberPopUp
{
my ($w)=@_;
my ($line,$col) = split(/\./,$w->index('insert'));
$w->messageBox(-type => 'Ok', -title => "What Line Number",
-message => "The cursor is on line $line (column is $col)");
}
########################################################################
sub clipboardColumnCopy
{
my ($w) = @_;
$w->Column_Copy_or_Cut(0);
}
sub clipboardColumnCut
{
my ($w) = @_;
$w->Column_Copy_or_Cut(1);
}
########################################################################
sub Column_Copy_or_Cut
{
my ($w, $cut) = @_;
my @ranges = $w->tagRanges('sel');
my $range_total = @ranges;
# this only makes sense if there is one selected block
unless ($range_total==2)
{
$w->bell;
return;
}
my $selection_start_index = shift(@ranges);
my $selection_end_index = shift(@ranges);
my ($start_line, $start_column) = split(/\./, $selection_start_index);
my ($end_line, $end_column) = split(/\./, $selection_end_index);
# correct indices for tabs
my $string;
$string = $w->get($start_line.'.0', $start_line.'.0 lineend');
$string = substr($string, 0, $start_column);
$string = expand($string);
my $tab_start_column = length($string);
$string = $w->get($end_line.'.0', $end_line.'.0 lineend');
$string = substr($string, 0, $end_column);
$string = expand($string);
my $tab_end_column = length($string);
my $length = $tab_end_column - $tab_start_column;
$selection_start_index = $start_line . '.' . $tab_start_column;
$selection_end_index = $end_line . '.' . $tab_end_column;
# clear the clipboard
$w->clipboardClear;
my ($clipstring, $startstring, $endstring);
my $padded_string = ' 'x$tab_end_column;
for(my $line = $start_line; $line <= $end_line; $line++)
{
$string = $w->get($line.'.0', $line.'.0 lineend');
$string = expand($string) . $padded_string;
$clipstring = substr($string, $tab_start_column, $length);
#$clipstring = unexpand($clipstring);
$w->clipboardAppend($clipstring."\n");
if ($cut)
{
$startstring = substr($string, 0, $tab_start_column);
$startstring = unexpand($startstring);
$start_column = length($startstring);
$endstring = substr($string, 0, $tab_end_column );
$endstring = unexpand($endstring);
$end_column = length($endstring);
$w->delete($line.'.'.$start_column, $line.'.'.$end_column);
}
}
}
########################################################################
sub clipboardColumnPaste
{
my ($w) = @_;
my @ranges = $w->tagRanges('sel');
my $range_total = @ranges;
if ($range_total)
{
warn " there cannot be any selections during clipboardColumnPaste. \n";
$w->bell;
return;
}
my $clipboard_text;
eval
{
$clipboard_text = $w->SelectionGet(-selection => "CLIPBOARD");
};
return unless (defined($clipboard_text));
return unless (length($clipboard_text));
my $string;
my $current_index = $w->index('insert');
my ($current_line, $current_column) = split(/\./,$current_index);
$string = $w->get($current_line.'.0', $current_line.'.'.$current_column);
$string = expand($string);
$current_column = length($string);
my @clipboard_lines = split(/\n/,$clipboard_text);
my $length;
my $end_index;
my ($delete_start_column, $delete_end_column, $insert_column_index);
foreach my $line (@clipboard_lines)
{
if ($w->OverstrikeMode)
{
#figure out start and end indexes to delete, compensating for tabs.
$string = $w->get($current_line.'.0', $current_line.'.0 lineend');
$string = expand($string);
$string = substr($string, 0, $current_column);
$string = unexpand($string);
$delete_start_column = length($string);
$string = $w->get($current_line.'.0', $current_line.'.0 lineend');
$string = expand($string);
$string = substr($string, 0, $current_column + length($line));
chomp($string); # don't delete a "\n" on end of line.
$string = unexpand($string);
$delete_end_column = length($string);
$w->delete(
$current_line.'.'.$delete_start_column ,
$current_line.'.'.$delete_end_column
);
}
$string = $w->get($current_line.'.0', $current_line.'.0 lineend');
$string = expand($string);
$string = substr($string, 0, $current_column);
$string = unexpand($string);
$insert_column_index = length($string);
$w->insert($current_line.'.'.$insert_column_index, unexpand($line));
$current_line++;
}
}
# ResetAnchor --
# Set the selection anchor to whichever end is farthest from the
# index argument. One special trick: if the selection has two or
# fewer characters, just leave the anchor where it is. In this
# case it does not matter which point gets chosen for the anchor,
# and for the things like Shift-Left and Shift-Right this produces
# better behavior when the cursor moves back and forth across the
# anchor.
#
# Arguments:
# w - The text widget.
# index - Position at which mouse button was pressed, which determines
# which end of selection should be used as anchor point.
sub ResetAnchor
{
my ($w,$index) = @_;
if (!defined $w->tag('ranges','sel'))
{
$w->markSet('anchor',$index);
return;
}
my $a = $w->index($index);
my $b = $w->index('sel.first');
lib/Tcl/pTk/Text.pm view on Meta::CPAN
if ($is_forward)
{
$w->markSet('insert', $end_index);
$w->markSet('current', $end_index);
}
else
{
$w->markSet('insert', $start_index);
$w->markSet('current', $start_index);
}
my $compared_index = $w->index('insert');
my $ret_val;
if ($compared_index eq $saved_index)
{$ret_val=0;}
else
{$ret_val=1;}
return $ret_val;
}
########################################################################
sub FindAndReplaceAll
{
my ($w,$mode, $case, $find, $replace ) = @_;
$w->markSet('insert', '1.0');
$w->unselectAll;
while($w->FindNext('-forward', $mode, $case, $find))
{
$w->ReplaceSelectionsWith($replace);
}
}
##################### Menu Functions ##############
## Originally in Tk::Text ###
sub MenuLabels
{
return qw[~File ~Edit ~Search ~View];
}
sub SearchMenuItems
{
my ($w) = @_;
return [
['command'=>'~Find', -command => [$w => 'FindPopUp']],
['command'=>'Find ~Next', -command => [$w => 'FindSelectionNext']],
['command'=>'Find ~Previous', -command => [$w => 'FindSelectionPrevious']],
['command'=>'~Replace', -command => [$w => 'FindAndReplacePopUp']]
];
}
sub EditMenuItems
{
my ($w) = @_;
my @items = ();
foreach my $op ($w->clipEvents)
{
push(@items,['command' => "~$op", -command => [ $w => "clipboard$op"]]);
}
push(@items,
'-',
['command'=>'Select All', -command => [$w => 'selectAll']],
['command'=>'Unselect All', -command => [$w => 'unselectAll']],
);
return \@items;
}
sub ViewMenuItems
{
my ($w) = @_;
my $v;
# tie $v,'Tk::Configure',$w,'-wrap';
return [
['command'=>'Goto ~Line...', -command => [$w => 'GotoLineNumberPopUp']],
['command'=>'~Which Line?', -command => [$w => 'WhatLineNumberPopUp']],
['cascade'=> 'Wrap', -tearoff => 0, -menuitems => [
[radiobutton => 'Word', -variable => \$v, -value => 'word'],
[radiobutton => 'Character', -variable => \$v, -value => 'char'],
[radiobutton => 'None', -variable => \$v, -value => 'none'],
]],
];
}
# Workaround for compatibility with Perl/Tk search()
# (used by Tk::Text Find methods), which accepts
# abbreviated flags, whereas Tcl/Tk search() does not
#
# TODO: should this be rewritten as _expandSearchFlags
# and process e.g. $direction or $case as well?
sub _expandModeFlag {
my $mode = shift;
if (($mode =~ m{^-e}) &&
($mode eq substr("-exact", 0, length($mode)))) {
$mode = '-exact';
} elsif (($mode =~ m{^-r}) &&
($mode eq substr("-regex", 0, length($mode)))) {
$mode = '-regex';
}
return $mode;
}
sub get {
my $self = shift;
# Note that empty string is returned (as done by Perl/Tk) rather than undef.
return $self->interp->invoke($self->path, 'get', @_);
}
1;
( run in 2.233 seconds using v1.01-cache-2.11-cpan-2398b32b56e )