There's probably a few things you should take into consideration before making universal changes.

As well as borderWidth, some widgets also have activeBorderWidth, insertBorderWidth and selectBorderWidth - Tk::options has details of these. If, for instance, you had borderWidth and activeBorderWidth with different sizes, you'll get unwanted visual effects when you interact with these widgets.

Other widgets, such as Tk::Frame, have a default borderWidth of zero which you'll generally not want to change.

In short, while $mw->optionAdd('*borderWidth', '1'); might look like a quick fix, it will probably lead to all sorts of unwanted problems - some of which may not be immediately obvious.

My advice would be to just change what you need on a widget-by-widget basis.

Here's a few more examples, taken from the same script as the earlier examples, that demonstrate some of the points I've just made:

$mw->optionAdd(q{*Entry*borderWidth}, 1, $priority); $mw->optionAdd(q{*Entry*insertBorderWidth}, 0, $priority); $mw->optionAdd(q{*Entry*selectBorderWidth}, 0, $priority); $mw->optionAdd(q{*NoteBook.borderWidth}, 1, $priority); $mw->optionAdd(q{*NoteBook.activeBorderWidth}, 1, $priority); $mw->optionAdd(q{*NoteBook.Frame.borderWidth}, 0, $priority); $mw->optionAdd(q{*NoteBook.Frame.activeBorderWidth}, 0, $priority) +;

-- Ken


In reply to Re^3: Perl/TK borderwidth question by kcott
in thread Perl/TK borderwidth question by perltux

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.