Since you're using a wxFrame, and subsequently on Show(1)ing, simply SetFocus after you show (if you're concerned, but I wouldn't worry about it).
On the other hand, it seems to me like you should be subclassing wxDialog,
and you using ->ShowModal().
Also, you may wish to pass style along the lines of wxCAPTION|wxSYSTEM_MENU and maybe add a cancel button (goes along with the whole dialog idea).
Also, a good name for this baby would be Wx::Perl::LoginWindow (in the tradition of Wx::Perl::Carp,Wx::Perl::TreeChecker ... it's Mattia approved ;D)
And on a final note, instead of those comments at the bottom, I think code might be better (:
package main;
unless( caller ){
if( @ARGV ) {
LoginDialog->get_login(\my ($user, $passwd));
die "USER $user\n\nPASS $passwd\n\n";
} else { # Use defaults if available:
my ($user, $passwd);
# Default either one if desired
$user = 'username';
unless ($user and $passwd) {
# require LoginDialog
LoginDialog->get_login(\($user, $passwd));
}
}
}
| MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!" | | I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README). | | ** The third rule of perl club is a statement of fact: pod is sexy. |
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|