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

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: m...@donor.com 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: m...@donor.com 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
Hey Dodger - didn't you ask all these questions in November 2008? :) Here was my answer from last time: http://www.mail-archive.com/wxperl-users@perl.org/msg00969.html It's a shell script - it will build a .app and put it into a dmg for distribution, allowing for drag and drop installation. The

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
> I wonder what is the most complex app out there (free or commercial) > written in wxPerl? I'm not sure if we are the largest/most complicated wxPerl app out there or not, but we must be up there... We have about 150+ frames and dialogs, and another 150+ subclassed controls. The controls are

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: 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
Octavian - depending on what you are trying to do, what we ended up doing was creating platform specific installers/launchers with the binary specific things (like dll, .so, dynlib, etc) and use traditional installation tools for each platform. We make a DMG for OSX, a .exe installer for win32

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
Mattia wrote the first version of POE::Loop::Wx based on the POE example loops, and I maintain it - although there hasn't been much to maintain. If you have patches to make POE::Loop::Wx better, let me know. I'll also get one of my coders to look at your modules and see if there are any ideas

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.