Re: Perl GUI Development (was The Peon's Guide...)

2002-11-25 Thread Rafiq Ismail (ADMIN)
On Mon, 25 Nov 2002, Andy Williams wrote:
> Roger Burton West wrote:
> > On Sun, Nov 24, 2002 at 01:32:24PM -, john imrie wrote:
> I have been using WxPerl without too many issues also. It's based on C++
> libraries which are, aparently, cross platform.

I saw a Python app using the Wx libraries at BSDCon and was very impressed
by it's use of the native Aqua widget set under OSX , where it used
the native widgets if it could.

'twas very sweet.  I'd imagine that the perl wrappers would be just as
sweet, given that the functionality all stems from the underlying library.

R.







Re: Perl GUI Development (was The Peon's Guide...)

2002-11-25 Thread Andy Williams
Roger Burton West wrote:

> On Sun, Nov 24, 2002 at 01:32:24PM -, john imrie wrote:
>
> >I've successfully used the Tk Modules on both Windows and Linux. The latest
> >version looks much better on windows than previous versions.
>
> Seconded. All mu GUI work at present is in Perl/Tk; I develop on Linux,
> but the Windows users seem happy with it.
>
> Roger

I have been using WxPerl without too many issues also. It's based on C++
libraries which are, aparently, cross platform.

Andy





Re: Perl GUI Development (was The Peon's Guide...)

2002-11-25 Thread Roger Burton West
On Sun, Nov 24, 2002 at 01:32:24PM -, john imrie wrote:

>I've successfully used the Tk Modules on both Windows and Linux. The latest
>version looks much better on windows than previous versions.

Seconded. All mu GUI work at present is in Perl/Tk; I develop on Linux,
but the Windows users seem happy with it.

Roger




Re: Perl GUI Development (was The Peon's Guide...)

2002-11-24 Thread john imrie

- Original Message -
From: "Simon Batistoni" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, November 24, 2002 10:56 AM
Subject: Perl GUI Development (was The Peon's Guide...)


> On 24/11/02 10:13 +, Dirk Koopman wrote:
> > On a slightly serious note: has anyone successfully used any GUI
> > framework on both Unix and Windows with perl? I have a very simple
> > little terminal type prog that I want to have work on both.
> >

I've successfully used the Tk Modules on both Windows and Linux. The latest
version looks much better on windows than previous versions.

John Imrie





Re: Perl GUI Development (was The Peon's Guide...)

2002-11-24 Thread Dirk Koopman
On Sun, 2002-11-24 at 10:56, Simon Batistoni wrote:
> On 24/11/02 10:13 +, Dirk Koopman wrote:
> > On a slightly serious note: has anyone successfully used any GUI
> > framework on both Unix and Windows with perl? I have a very simple
> > little terminal type prog that I want to have work on both. 
> > 
> > Apparently WxWindows works reasonably well, are there any others?
> 
> WxWindows does indeed work well - exactly the same code will produce
> reasonable native-looking apps on both platforms.
> 

Sorry to be boring about this: the perl bindings work reasonably well in
windows? I must confess to not being able to make it work myself.

Dirk
-- 
Please Note: Some Quantum Physics Theories Suggest That When the
Consumer Is Not Directly Observing This Product, It May Cease to
Exist or Will Exist Only in a Vague and Undetermined State.






Re: Perl GUI Development (was The Peon's Guide...)

2002-11-24 Thread Simon Batistoni
Replying to my own post cos I forgot something. Bah, I need breakfast.

On 24/11/02 10:56 +, Simon Batistoni wrote:
> If you're getting into serious app development, there's also a
> commercial forms designer, wxDesigner (29 euro for a student licence,
> 129 for a single normal user licence, crippled demo available), which
> I've heard good things about.

You can find wxDesigner at

http://www.roebling.de/




Perl GUI Development (was The Peon's Guide...)

2002-11-24 Thread Simon Batistoni
On 24/11/02 10:13 +, Dirk Koopman wrote:
> On a slightly serious note: has anyone successfully used any GUI
> framework on both Unix and Windows with perl? I have a very simple
> little terminal type prog that I want to have work on both. 
> 
> Apparently WxWindows works reasonably well, are there any others?

WxWindows does indeed work well - exactly the same code will produce
reasonable native-looking apps on both platforms.

I haven't had a chance to try it on the Mac - last time I looked into
this, I really wanted cross-platform abilities between all 3, but
certainly for Unix and Windows, it's the best I've come across.

If you're getting into serious app development, there's also a
commercial forms designer, wxDesigner (29 euro for a student licence,
129 for a single normal user licence, crippled demo available), which
I've heard good things about.

It can output the perl/python/c code for a designed application
directly.

> Also does the ActiveState stuff allow you to do native windows programs
> in perl?

There are various Win32:: modules, most of which are present in the
default Activestate distro. For creating GUI stuff, look at Win32::GUI

http://search.cpan.org/author/ACALPINI/Win32-GUI-0.0.558/docs/methods.pod

I can't find any useful form designing tools for this, though, so
building a professional-looking app is probably a matter of trial and
error with regards to control placement on the window.