4 changed files with 253 additions and 249 deletions
@ -1,20 +1,10 @@ |
|||||||
use Tk; |
use Tk; |
||||||
use Tk::Text; |
use Tk::Browser; |
||||||
|
|
||||||
$mw = MainWindow->new; |
$mw = MainWindow->new; |
||||||
|
|
||||||
$edit = $mw->TextUndo->pack; |
$edit = $mw->Browser->pack; |
||||||
|
|
||||||
$edit->insert('end', 't'); |
$edit->insertHTML('end', "<font face='garamond'>erererr"); |
||||||
|
|
||||||
$edit->tagConfigure('<b>', -font => $mw->Font(-family => 'times', -weight => 'bold')); |
|
||||||
$edit->tagConfigure('elide', -elide => 1); |
|
||||||
|
|
||||||
$tag = "<b>"; |
|
||||||
|
|
||||||
$mw->Button(-text => 'bold', -command => sub { |
|
||||||
$edit->insert('insert', 'de', [$tag, 'elide']); |
|
||||||
$edit->tagAdd($tag, 'insert'); |
|
||||||
})->pack; |
|
||||||
|
|
||||||
MainLoop; |
MainLoop; |
Loading…
Reference in new issue