4 changed files with 253 additions and 249 deletions
@ -1,20 +1,10 @@
@@ -1,20 +1,10 @@
|
||||
use Tk; |
||||
use Tk::Text; |
||||
use Tk::Browser; |
||||
|
||||
$mw = MainWindow->new; |
||||
|
||||
$edit = $mw->TextUndo->pack; |
||||
$edit = $mw->Browser->pack; |
||||
|
||||
$edit->insert('end', 't'); |
||||
|
||||
$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; |
||||
$edit->insertHTML('end', "<font face='garamond'>erererr"); |
||||
|
||||
MainLoop; |
Loading…
Reference in new issue