Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
All,
After about 4 years, I have finally crossed "learn Tk" off my to-do list. I was commenting in freenode's #perl that it looked horrible and I would be moving to another framework when Khisanth asked why don't I use one of the Win32 themes using Tile widgets. The screen shots were impressive, so I figured I would give it a try.

I contacted the author of Tk and received a quick reply that Tile support is scheduled for the next release but that there was no timetable for that. I searched a bit and read something where Tkx provided access to more Tk/tcl stuff and I decided to give it a try. Once I read through the tutorial and the glaze on my eyes wore off, I emailed the author. Though I received a timely response, miscommunication on my part didn't result in the answer I was hoping for.

I pressed on without the first clue what I was doing and came up with the following:

#!/usr/bin/perl use strict; use warnings; use Tkx; Tkx::package_require('tile'); Tkx::tile__setTheme('xpnative'); my $mw = Tkx::widget->new("."); $mw->new_ttk__button( -text => 'Hello, world', -command => sub { $mw->g_destroy; }, )->g_pack; Tkx::MainLoop();

Yay! It works and looks good on Win32. Unfortunately, it seems like almost none of the knowledge I gained while learning Tk is transferrable to Tkx.

Does anyone have any hints on making Tk on Win32 both easy and pretty? I plan on learning other cross-platform frameworks such as Wx in the future so suggesting them here is not useful (to me).

Cheers - L~R


In reply to How do you make Tk look good? by Limbic~Region

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (8)
As of 2024-04-23 12:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found