Book HomeMastering Perl/TkSearch this book

8.18. Internal Debug Flag

The debug function takes an optional Boolean argument:

$text->debug( [ boolean ] );

If the value passed in is true, internal consistency checks will be turned on in the B-tree code associated with Text widgets. If false, the checks will be left off. Without any argument, the debug method will return the value "on" if it has been turned on and "off" if not. All text widgets in the application share the same debug flag.

8.18.1. Scanning

The scanMark and scanDragto methods are used internally in the Text widget. A call to scanMark simply records the (x, y) passed in for use later with scanDragto. It returns an empty string:

$text->scanMark(x, y);

scanDragto also takes (x, y) coordinates, which are compared to the scanMark (x, y) coordinates. The view within the Text widget is adjusted by 10 times the difference between the coordinates:

$text->scanDragto(x, y);


Library Navigation Links

Copyright © 2002 O'Reilly & Associates. All rights reserved.