Tagged Questions
3
votes
1answer
291 views
Why doesn't wxPerl draw my wxStaticBitmap when I run the program from a Windows shortcut?
I've made a wxPerl application which presents just a simple frame which only contains a wxMenuBar, wxPanel, wxTextCtrl and a wxStaticBitmap. The development and deployment platform is Windows XP and ...
2
votes
4answers
1k views
How do I set a minimum window size in wxWidgets?
This is the hierarchy of widgets I've got:
Frame > wxBoxSizer > wxPanel > wxBoxSizer > wxFlexGridSizer (2 columns, 9 rows), with assorted form fields and buttons inside.
The first BoxSizer is to ...
1
vote
2answers
98 views
What does the qw(:everything) do on a use line in perl?
This is an embarrassing question to ask but why does this line work while the other doesn't?
Working line:
use strict;
use warning;
use Wx qw(:everything);
my $dialog = Wx::MessageDialog->new(
...
0
votes
2answers
38 views
Is there a way to uniquely style items in the wxChoice widget in wxPerl (WxWidgets)?
I'm trying to figure out if it's possible to style the items in a drop-down menu when I use the wxChoice widget. Best I can tell, it's not possible but I just wanted to ask the greater Perl community ...
0
votes
2answers
99 views
Why does `print` not work in this wxPerl program?
In my frame constructor I have a function that easily makes a menu bar for me.
package Routines;
#This function will set up a menu
#REQUIRED: entries
#RETURNS: id, menu
sub SetupMenu {
...