wxperl is the module/library used to access the WxWidgets portable GUI classes.

learn more… | top users | synonyms

0
votes
0answers
25 views

WxPerl Wx::TextCtrl GetValue() buffer overflow in ComPort.pm

I'm trying to send a string read from a TextCtrl in a WxPerl app to the COM port of my computer to control a video projector by RS232. The problem occurs when I write the value (I know that it's a ...
1
vote
1answer
27 views

Is it possible to use unicode or utf8 to drawtext in WxDC?

I use WxPerl and I would like to draw unicode or utf8 text. Is that possible? Currently, i have something like this: $dc->DrawText( $linestr, $x, $y * $th ); but it seems to draw ascii like text ...
0
votes
2answers
57 views

How to clear and refresh a panel in Wx?

I'm building a news reader application and I have a wxScrolledWindow in which I show the news. However, I have categories and when one is clicked, I want to update this panel with the current ...
1
vote
1answer
46 views

How to divide a wxPanel horizontally?

I'm building a layout for a console app and here's what I want to achieve. What I have so far is this. My main window is deriving from a wxFrame. I split the window using wxSplitterWindow into two ...
0
votes
1answer
47 views

Get bound events for wxwidget?

I would like to be able to determine all methods bound to events for a particular wxwidget. I am binding my events dynamically. Is there a way to determine which methods i have bound to each event ...
1
vote
1answer
44 views

Designing a TextCtrl which fills up the entire frame

I am programming with wxPerl and I was wondering how you would design it so that a textctrl, or really any component, would fill up the entire frame and resize with the window? So far my attempts at ...
5
votes
2answers
426 views

installing wxPerl on strawberry

I am trying to install wxperl on strawberry. I can't install Alien::wxWidgets. I tried everything I can think of. Usually I get an error like this one: Creating library file: ...
1
vote
1answer
108 views

App doesn'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 = ...
0
votes
2answers
73 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 ...
2
votes
2answers
197 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
194 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 ...
0
votes
1answer
338 views

How Do I add a linefeed in a Wx::textCtrl

I've edited RouMao's 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 ...
1
vote
2answers
182 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 { ...
1
vote
1answer
186 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 ...
2
votes
1answer
291 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 ...
3
votes
1answer
408 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 ...
7
votes
7answers
1k views

Are there Perl GUI builders, especially for WxPerl?

Are there good GUI builder for Perl GUI libraries, especially for WxPerl?
1
vote
3answers
246 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 ...
2
votes
2answers
769 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
175 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 ...
3
votes
4answers
2k 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 ...