Problem installing gtk-perl on windows (XP)

2009-05-21 Thread Mike Martin
Hi I am trying to install packages from http://lostmind.de/gtk2-perl/

However when I try to install with ppm I

PPD does not support this platform

any ideas (Gtk ,glib runtime, and activestate perl installed fine)
___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-perl-list


RE: Problem installing gtk-perl on windows (XP)

2009-05-21 Thread Jeff Hallock
I suggest installing camelbox - look for it on google. The binaries on that 
site are pretty dated. Camelbox is actively maintained and installation is 
trivial.

Jeffrey Hallock

Data Processing Programmer

WBA Market Research

2191 Defense Highway, Suite 401

Crofton, MD  21114

Phone:  (607) 330-5300 x318

Fax:  (607) 273-0295

 WBA_Logo RGB



This email may contain information that is confidential or privileged.  If you 
are not the intended recipient, any use, disclosure, copying or distribution of 
this message or any attachments is strictly prohibited.  If you have received 
this message in error, please notify the sender and destroy any and all copies. 
 Thank you.


 -Original Message-
 From: gtk-perl-list-boun...@gnome.org [mailto:gtk-perl-list-
 boun...@gnome.org] On Behalf Of Mike Martin
 Sent: Thursday, May 21, 2009 10:44 AM
 To: gtk-perl-list@gnome.org
 Subject: Problem installing gtk-perl on windows (XP)

 Hi I am trying to install packages from http://lostmind.de/gtk2-perl/

 However when I try to install with ppm I

 PPD does not support this platform

 any ideas (Gtk ,glib runtime, and activestate perl installed fine)
 ___
 gtk-perl-list mailing list
 gtk-perl-list@gnome.org
 http://mail.gnome.org/mailman/listinfo/gtk-perl-list

 No virus found in this incoming message.
 Checked by AVG - www.avg.com
 Version: 8.5.339 / Virus Database: 270.12.36/2126 - Release Date: 05/21/09
 06:22:00
___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-perl-list


Release: Camelbox 2009.141.0110Z-tahi

2009-05-21 Thread Brian Manning
Hi,

I've just released a new version of Camelbox.  You can read the
release announcement and upgrade recommendations in [1].  New for this
release is upgrades of most of the C libraries and Perl modules, as
well as the addition of Perl/Tk and Bundle::libwin32.

Thanks,

Brian

[1] http://groups.google.com/group/camelbox/t/5de00b59770c4c2
___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-perl-list


Re: Layout problems when getting widgets from glade file

2009-05-21 Thread Kevin Ryde
Peter E Dennis peter.edwin.den...@gmail.com writes:

my $table = Gtk2::Table-new(2,9,FALSE);

Do you have FALSE defined?  If not then without use strict it's the
string FALSE, making homogeneous true ...
___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-perl-list


Re: Layout problems when getting widgets from glade file

2009-05-21 Thread Peter E Dennis
2009/5/22 Kevin Ryde use...@zip.com.au:
 Peter E Dennis peter.edwin.den...@gmail.com writes:

        my $table = Gtk2::Table-new(2,9,FALSE);

 Do you have FALSE defined?  If not then without use strict it's the
 string FALSE, making homogeneous true ...

Yep, I'm brain dead.  And that has sealed it.  These weren't defined
in my test program so no wonder I ran into trouble.

Thank you Kevin!

Is this:

use Glib qw/TRUE FALSE/;

the usual way it's done?

Although I could be screwing even this up because the output of this:
print Homogeneous is:  . $table-get_homogeneous ? on\n: off\n;
$table-set_homogeneous(FALSE);
print Homogeneous is:  . $table-get_homogeneous ? on\n: off\n;

Is still:
on
on

But the labels and separators now fit on the screen, with room to spare.

Many thanks,

Peter.
___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-perl-list


Re: Layout problems when getting widgets from glade file

2009-05-21 Thread Kevin Ryde
Peter E Dennis peter.edwin.den...@gmail.com writes:

 print Homogeneous is:  . $table-get_homogeneous ? on\n: off\n;

That'll be operator precedence I suppose :-)  . higher than ?

(Personally I often put parens around ?: because though I know it's low
precedence I can never remember how exactly low ...)
___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-perl-list