Hi, an interesting question has come up on comp.lang.perl.tk, which got me thinking on how to generally solve an "object modification" problem.

The original problem was how to prevent a Tk::Text widget from printing control characters. For instance in this code:

#!/usr/bin/perl use warnings; use strict; #use lib '.'; #BEGIN { unshift(@INC,'.')} use Tk; use Tk::Text; my $top = MainWindow->new(); my $text = $top->Text->pack; $text->bind('<Control-g>', sub {$text->insert('end',"<-How do I supress this?\n") }); MainLoop;
So I looked into the Tk::Text module and right at the top, there is a sub bindRdOnly{}, to which if I add the line
sub bindRdOnly{ $mw->bind($class,'<Control-KeyPress>','NoOp'); .... ..... }
It modifies the Text widget to ignore printing Control chars. I know it works, because I copied Text.pm to the '.' directory, modified it, and ran it as Tk::Text. That is a clunky solution, which I'm embarrased to tell people is a solution, especially since Tk::Text has an xs component and can't just be renamed.

So my understanding of deriving one module from another is not the best. So how do I do one thing....add that binding to make a new package. A similar Tk::Text widget can be made like this: (code from Marc Dashevsky)

package Tk::MyText; require Tk::Text; use base qw/Tk::Text/; Construct Tk::Widget 'MyText'; sub InsertKeypress { my($w, $char) = @_; if (ord($char) < 27) { print chr(ord($char) | 0x40), "\n"; # only Control-G/J/L/M/Q/R/S/U/W/Y/Z are making it to here } else { $w->SUPER::InsertKeypress($char); } }
This one filters the Control keypresses thru the InsertKeypress sub, but it would be nicer to do it through the bindRdOnly sub. Anyone know how to make this simple addition to a module's subroutine to make a different derived package? It is not as simple as just pushing the statement into an array or hash in the package, the sub bindRdOnly{} is just a series of bind statements. Thanks

I'm not really a human, but I play one on earth. flash japh

In reply to Making a derived Tk::Text object by zentara

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.