Thread Tk::Text Text farbig darstellen
(15 answers)
Opened by pktm at 2007-06-27 00:10 Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 #!/usr/bin/perl use strict; use warnings; use Tk::Text; use Tk; my $mw = tkinit; my $text = $mw->Text()->pack; my $line = 0; while( my $inhalt = <DATA> ){ $text->insert('end',$inhalt ); ++$line; if( $inhalt =~ /^Fehler:/ ){ $text->tagAdd('red_text',$line . ".0" , $line . "." . length $inhalt); $text->tagConfigure('red_text', -foreground => 'red'); } } MainLoop; __DATA__ Dies ist ein Test! Fehler: Laeuft nicht Eine Zeile dazwischen. Noch eine Zeile Fehler: fehlerhafte Zeile Fehler: noch ein Fehler Alles ok! OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |