Re: wxPerl on Honeycomb?

2011-07-31 Thread Mike Schroeder
I suspect the silence is because people are waiting for you to do a little of your own very basic searching. 1) Are there wx libs for Honeycomb? (http://wxwidgets.org/) 2) Is there Perl for Honeycomb? 3) Is there a C++ build environment for Honeycomb? You might want to start by answering those qu

multi-threaded WxPerl GUI

2011-06-23 Thread mike
to the main thread for updating? Or is using Wx::Timer a better approach? Thanks, Mike

Re: wxListCtrl get column clicked in EVT_LIST_ITEM_SELECTED

2011-02-22 Thread mike
pos->x is less than the running total, that's the column you're in. Mike Wx::Event::EVT_LEFT_DOWN($this, sub { my ($self, $event)=@_; my $pos=$event->GetPosition; my $total=0; my $in_col=-1; for(my $col=0;$col<$this->GetColumnCount;$col++){ $tot

wxListCtrl get column clicked in EVT_LIST_ITEM_SELECTED

2011-02-22 Thread mike
tried GetItemRect($item) to get the X and Y coords and Width/Height in an attempt to calculate the column positions myself, but that seems to return X=0 and Y=21 Width=0 and Height=0 regardless of where in the control I click. Does anyone have any ideas? Many thanks, Mike

WxListCtrl header images

2010-10-13 Thread mike
rking for the headers. Thanks, Mike

Re: Underlying wxWidgets version?

2010-08-27 Thread Mike Schroeder
Sorry - just reread your email - I mistakenly thought you were asking about $Wx::VERSION, not $Wx::wxVERSION. My bad. On Fri, Aug 27, 2010 at 4:57 PM, Mike Schroeder wrote: > On Fri, Aug 27, 2010 at 4:52 PM, Johan Vromans wrote: > >> How's that different from $Wx::wxVERSION

Re: Underlying wxWidgets version?

2010-08-27 Thread Mike Schroeder
On Fri, Aug 27, 2010 at 4:52 PM, Johan Vromans wrote: > How's that different from $Wx::wxVERSION ? > > WxPerl version: 0.970101 Wx version: wxWidgets 2.8.11 One tells you the wxPerl / Wx.pm version you are running, the other tells you the wxWidgets C++ libs you are running.

Re: Underlying wxWidgets version?

2010-08-27 Thread Mike Schroeder
We do this in our About dialog: $self->show_message_dialog( message => $package . $VERSION . "\n" . "Powered by wxPerl " . $Wx::VERSION . "\n" . wxVERSION_STRING, caption => "About...", style => wxOK | wxICON_INFORMATION, ); So

Re: packaging app on OSX

2010-08-13 Thread Mike Schroeder
Here are some previous discussions that might help: http://www.mail-archive.com/search?l=wxperl-users%40perl.org&q=dmg On Fri, Aug 13, 2010 at 4:15 AM, Adam Witney wrote: > > Hi, > > how do people generally package a wxPerl app

Re: Strange appearance (MS Windows)

2010-02-23 Thread Mike Schroeder
Try putting down a Panel first, then your StaticBoxSizer on top of the panel. On Tue, Feb 23, 2010 at 5:06 AM, Johan Vromans wrote: > Hi, > > The following (mostly wxGlade generated) program doesn't look native > to me. See screenshot. > I'm not very familiar with Wx on Windows, so I'm probabl

Re: wxPerl.app?

2009-12-24 Thread Mike Schroeder
See if this thread helps... http://www.nntp.perl.org/group/perl.wxperl.users/2009/12/msg6936.html On Wed, Dec 23, 2009 at 10:33 AM, Daniell Freed wrote: > I've notice on OS X in the Perl library directory auto/Wx/ that there is a > wxPerl.app. What is the purpose of this? > > I ask because

Re: Wxperl on mac question again

2009-12-03 Thread Mike Schroeder
, but we would be happy to contribute our existing script and be available to help whoever wants to abstract it... Just an alternative -- feel free to ignore this if the idea does not meet your needs. mike schroeder email: [email protected] On Wed, Dec 2, 2009 at 7:35 AM, perltk wrote: > &g

Re: Wxperl on mac question again

2009-12-03 Thread Mike Schroeder
, Paul, Ed and me, we should be able to get that done right? :) HTH, mike. mike schroeder email: [email protected] On Wed, Dec 2, 2009 at 8:02 AM, perltk wrote: > Hmm - Actually that might be even better. :-) > Could I get a hold of the script ? > > Fitting in with that, if you&#

Re: wxWidgets Object Model

2009-10-06 Thread Mike Schroeder
Don't you need to dereference self? my %loc_array = %{ $self }; or just use Data::Dumper? use Data::Dumper; print $self; On Mon, Oct 5, 2009 at 12:21 PM, Steve Cookson wrote: > Hi All, > > Is there some way I can cycle through the object model of the object > we all know and love as '$self'

Re: Perlwrapper

2009-06-10 Thread Mike Schroeder
own. Hope that helps. Mike. On Tue, Jun 9, 2009 at 7:14 AM, Dodger wrote: > Hmm... well... that's the thing... > I want to support Mac but I have no idea how to go about doing so. > > I've built my Windows executable with PerlApp under the PDK, but I have an > older r

Re: Accessible GUI Applications in Perl

2008-11-12 Thread Mike Schroeder
On Mon, Nov 10, 2008 at 1:31 PM, Octavian Rasnita <[EMAIL PROTECTED]>wrote: > From: "Mike Schroeder" <[EMAIL PROTECTED]> > Is the source code of your app public? Not yet ;)

Re: Accessible GUI Applications in Perl

2008-11-11 Thread Mike Schroeder
are a handful of examples in: http://search.cpan.org/src/MIKE/POE-Loop-Wx-0.04/example/ We also funded some work by Eriam Schaffter to create Wx::Data (although we ended up not using the work ) You can see some more Wx and POE interaction at http://search.cpan.org/~eriam/Wx-Data-0.01_01/ Othe

Re: Questions on Making an App (not an EXE)

2008-11-11 Thread Mike Schroeder
d dialogs using somethign like LWP->mirror() as collections of PAR files. Hope that helps. Mike. On Mon, Nov 10, 2008 at 5:30 PM, Dodger <[EMAIL PROTECTED]> wrote: > 2008/11/10 Mike Schroeder <[EMAIL PROTECTED]>: > > Are you asking about how to write a wxPerl application

Re: Questions on Making an App (not an EXE)

2008-11-11 Thread Mike Schroeder
Are you asking about how to write a wxPerl application for OS X? or how to package up a wxPerl application as a .app file and distribute it in a dmg? We have a shell script that helps us build the .app and bundle it up as a dmg that we can share if that is what you are asking. On Mon, Nov 10, 20

Re: wxPerl on Mac OS X 10.4

2008-10-28 Thread Mike Schroeder
http://www.nntp.perl.org/group/perl.wxperl.users/2008/09/msg6181.html I had similar problems installing wxPerl on OSX10.5 with that particular test. I ended up just removing that one test file and everything else installed and has worked fine ever since. Still not sure what the underlying issue

Re: Alien::wxWidget 0.35 with wxwidgets 2.8.8 on OS X

2008-09-09 Thread Mike Schroeder
$ perl -Mblib t/04_cmdproc.t 1..18 On Mac OS X please run scripts with the 'wxPerl' interpreter Bus error $ wxPerl -Mblib t/04_cmdproc.t 1..18 Bus error On Mon, Sep 8, 2008 at 5:19 PM, Mattia Barbon <[EMAIL PROTECTED]>wrote: > Mike Schroeder wrote: > >> Jus

Alien::wxWidget 0.35 with wxwidgets 2.8.8 on OS X

2008-09-07 Thread Mike Schroeder
est suite complete without errors. Other than those two things, everything else seems to install and work great. mike schroeder email: [EMAIL PROTECTED]

Re: R: wxPerl with PerlWrapper on MacOS X 10.4

2008-06-06 Thread Mike Friedman
ibute the app without making people install Wx). Once I get that working I will make a project template out of it, if anyone is interested. Mike

wxPerl with PerlWrapper on MacOS X 10.4

2008-06-05 Thread Mike Friedman
s libwxperl which can take its place or will I have to create this somehow? Thanks for all your help. Mike

Re: How to organize project

2008-04-21 Thread Mike Schroeder
This was the way our project evolved. We are around 44K lines of wxPerl, and around 98K lines of server-side API calls (and another 500K lines of C that the Perl APIs can access). wxPerl *never* does any SQL or db access directly. The clients are built for Win32, OSX and Linux. This is our appr

Re: Profiling a wxperl script

2008-04-04 Thread Mike Schroeder
I *thought* i had some success in the past with Devel::Profile - not sure if you have tried that one yet Doug Breshears wrote: Does anybody know of a way to profile a wxperl script? DProf breaks the Event.pm -- Can't locate object method "Connect" via package "Field_Manager::Application_F

Re: PAR

2008-03-20 Thread Mike Schroeder
ual application is all cross-platform and all in PAR files. Hope that helps. Mike. Roberto C. Sánchez wrote: On Wed, Mar 19, 2008 at 09:29:27PM +0200, Octavian Rasnita wrote: Hi, Is it possible to use PAR under Windows to create a .par file with a program that uses WxPerl that can be

Re: using a progress bar with POE::Loop::Wx

2008-02-10 Thread Mike Schroeder
::GUI::DoEvents() >= 0 or die "Window was closed during processing"; > > Do you know by chance if there is a method that makes WxPerl to handle the > events in the queue before passing to the next step in the loop? > > Thank you. > > Octavian > > - Original

Re: threads

2007-12-18 Thread Mike Schroeder
streaming, etc. Putting a few strategic wxTheApp->Yield(); calls in our code also seems to have helped alleviate any perceived blocking issues. HTH, Mike. On 17/12/07 09:33 PM, Eric Wilhelm wrote: # from Foo JH # on Monday 17 December 2007 19:11: I've asked this questi

POE::Loop::Wx 0.04 uploaded to CPAN

2007-11-29 Thread Mike Schroeder
just an FYI on a new version of POE::Loop::Wx - fixes ambiguous select() with CORE::select() - added some *very* basic tests - more are welcome... Mike.