http://qs321.pair.com?node_id=1049740


in reply to Re: how to change the font of a perl tk gui
in thread how to change the font of a perl tk gui

Hi,
It is easy for a Tk::Label widget to change its font by passing the $l object to the change(). But in my case , how can this be achieved , where I have Frames and on that HList widget and ItemStyles .

  • Comment on Re^2: how to change the font of a perl tk gui

Replies are listed 'Best First'.
Re^3: how to change the font of a perl tk gui
by stefbv (Curate) on Aug 16, 2013 at 14:30 UTC

      Hi
      The RefontTree is working fine. I have included the following piece of code ,to the above long code I have given before, in between the 'Select File' Label and BrowseEntry packing. The fonts are reducing when I select a small font but the overall Tk Mainwindow size is not reducing with reduction of the font.
      This is as opposed to the RefontTree link above given by you. In that link, the gui size is also increasing and reducing according to the font chosen.
      Following is the code

      my $menubutton = $userframe->Menubutton(-text=>"font" , )->pack(-side= +>'left'); #$menubutton->cascade(-label => "preference",-command => sub{ pref{}}) +; $menubutton->command(-label => "change", -command => sub {print "comma +nd font \n"; my $font = $mw->FontDialog->Show; if (defined $font) { $mw->RefontTree(-font => $font); } });