![]() |
|
Your skill will accomplish what the force of many cannot |
|
PerlMonks |
Making a derived Tk::Text objectby zentara (Cardinal) |
on Feb 03, 2005 at 20:12 UTC ( [id://427797]=perlquestion: print w/replies, xml ) | Need Help?? |
zentara has asked for the wisdom of the Perl Monks concerning the following question:
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: 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 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) 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
Back to
Seekers of Perl Wisdom
|
|