I am using a Text widget.
I have over-ridden the right click to display a popup menu in my Perl/Tk GUI. But whenever I right click at any position, the text from the earlier cursor location till the location where I have right clicked gets highlighted.
I don't know what is causing this, so I simply want to programmatically deselect this highlighted text.
How do I go about doing this?
Thanks!
EDIT:
I have made a bind for right-click and this is the subroutine that is called:
sub rightClickMenu {
my ($self, $x, $y) = @_;
$txt->tagRemove('sel', '1.0', 'end');
$rightMenu -> post($x, $y);
$txt->tagRemove('sel', '1.0', 'end');
}
I have removed the sel tag twice (just to be sure). $rightMenu
is the menu that is popped up. It shows perfectly fine when right-clicked.
The selection in the text widget is handled by setting the tag
sel
for the selected range of characters. This tag can be removed like this:assuming the pathname of your text widget is
.t
. This specifies that for all characters from the first (1.0
) to the character position after the last character (end
) the tagsel
is to be removed.Note: normally when removing a tag one has to deal with the possibility that it has been assigned to multiple ranges in the text. The tag removal invocation above clears the tag from the whole text, and that's fine for the selection tag since you're (usually) only supposed to have one selected range anyway. If there are multiple ranges that have the tag
foo
and you want to clear just one of them, you first need to find the starting and ending indices of that range and clear (by callingtag remove
) the tag only between those.Note 2: All this is assuming that the visible effect is actually caused by the
sel
tag getting set. In Tk, it's not a standard binding for button 2 to set this tag: it could be that some non-standard binding in Perl-Tk sets some other tag that is displayed visually in the same way as thesel
tag is. For further investigation, this command may be useful:(again assuming the pathname of your text widget is
.t
, and thatplaceWhereIRightClicked
holds the index of the place where the right clicking occurred) will tell you all tags that are active at that index.(The command
will list tags for the whole text.)
TkDocs has an article about the text widget where the
tag remove
command is mentioned, but how to do it in Perl-Tk isn't showed.The CPAN documentation for the text widget says that the syntax for the command is
so I suppose
or something like that is the way to do it (no Perl, can't test).
(Note: the 'Hoodiecrow' mentioned in the comments is me, I used that nick earlier.)