Tagged Questions
The wxperl tag has no wiki summary.
5
votes
7answers
691 views
Are there Perl GUI builders, especially for WxPerl?
Are there good GUI builder for Perl GUI libraries, especially for WxPerl?
3
votes
1answer
293 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
1answer
195 views
Why doesn't my wxPerl application for Windows start?
I've developed an application with Strawberry Perl 5.8.9.4 using wxPerl. The application is compiled using:
wxpar -f Crypto -F Crypto -M Filter::Crypto::Decrypt --compress=9 --gui --icon=icon.ico ...
2
votes
2answers
525 views
How do I make wxPerl work in Perl 5.10 on Windows?
Though I've tried several ways, I'm unable to make WxPerl to work on Windows.
I tried with both ActivePerl and Strawberry Perl.
The error I get is:
Can't load 'C:/Perl/site/lib/auto/Wx/Wx.dll' for ...
2
votes
2answers
149 views
How can my WxPerl application ignore keypresses while a method runs?
I have an application that waits for the user to press a key and then executes a long running method that periodically updates the GUI.
sub keypress{
my $self = shift;
my $event = shift;
if ...
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
0answers
27 views
App doen't exit from MainLoop after dialog
I have this problem. I have solved it but does it correct for big application (in future:)?
#!/usr/bin/perl
use strict;
use warnings;
use lib '.';
use MyApp;
use LoginFrame;
my $f = ...
1
vote
2answers
99 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(
...
1
vote
2answers
51 views
Has anyone used the Wx::GridBagSizer layout manager in Wx Perl?
The very sparse wxPerl documentation that I have been able to find says it is supported and sure enough, I can create an instance of it.
my $layout = new Wx::GridBagSizer(5,5);
But I cannot make ...
1
vote
2answers
138 views
Where can I find a current wxPerl PPM?
On September 24, 2009 Sep 24, 2009 wxPerl 0.93 was released to CPAN.
Does anyone know where I can get a current ppm version of wxPerl 0.93 for Active Perl 5.10
The repositories (besides ...
0
votes
2answers
39 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
0answers
14 views
wxperl how to make parent window blank while loading menu
In Wxperl while loading the menu the all the objects in the parent window needs to be remove or destroy.
Thanks in Advance.
0
votes
0answers
113 views
WxPerl and Activestate Perl fail under Snow Leopard: 'libwx_macu_adv-2.8.0.dylib missing?'
I can't get Wx running in combination with ActiveState Perl on my MBP under Snow Leopard. I get the errormessage:
Can't load '/usr/local/ActivePerl-5.12/site/lib/auto/Wx/Wx.bundle'
for module ...
0
votes
1answer
108 views
How Do I add a linefeed in a Wx::textCtrl
I've edited RouMao solution into my code sample below.
according to the accepted answer to this question here on stackoverflow, I should be able to add additional lines to a Wx::TextCtrl by ...
0
votes
0answers
79 views
ScrollWindows in WXPython
I am trying to create a GUI which has a frame->sizer->panel(scrollable window)->sizer->button. When I click the button an new row comes up with one more button. This continues and i have my sizer ...
0
votes
2answers
100 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 {
...
0
votes
1answer
105 views
Can a subclass of wx::StaticBoxSizer handle events?
I'm trying to add an event-handler to a subclass of Wx::StaticBoxSizer, but I'm getting the following error:
Can't locate object method "Connect" via package "Wx::StaticBoxSizer" at ...