Re: Gtk2::GladeXML: signals not connecting

2005-04-14 Thread Daniel Kasak
muppet wrote: > > On Apr 13, 2005, at 11:32 PM, Daniel Kasak wrote: > >> However if I use Glade to connect the same signal ( which Glade calls >> button_press_event ) to the above sub, nothing happens. > > > what version of Gtk2::GladeXML are you using? 1.000 connected all > signals "after", whic

Re: GladeXML doc patch

2005-04-14 Thread Grant McLean
On Thu, 2005-04-14 at 08:03 -0400, muppet wrote: > On Apr 14, 2005, at 5:30 AM, Grant McLean wrote: > > > I notice the signal_autoconnect_from_package helper method in > > GladeXML.pm is not fully documented. Specifically, the fact it accepts > > a package or and object. I find the latter to be

Re: UTF-8 strings as title for TreeViewColumn

2005-04-14 Thread A. Pagaltzis
* Rodrigo Torres <[EMAIL PROTECTED]> [2005-04-14 20:10]: > Finally, anybody figured what I'm missing here? Put âuse utf8;â at the top of your program to tell Perl that the source file is UTF-8, not some local encoding. Alternatively, write "C\x{F3}digo". Using \x{} you can include any Unicode cod

Re: File Selector

2005-04-14 Thread A. Pagaltzis
* muppet <[EMAIL PROTECTED]> [2005-04-14 20:05]: > In general, you and your users will find it more satifying to > use stock ids for your buttons. In particular, because it gets you visual identity (the stock icons help identify the purpose of a widget before even reading the label) and free local

UTF-8 strings as title for TreeViewColumn

2005-04-14 Thread Rodrigo Torres
Hi, First of all, I've mistakenly sent this message early whithout subject. I'm a subscriber of this list for some months and _really_ didn't wanted to do that. Sorry. I'm learning perl, trying to make some Gtk stuff and faced this problem (well, dont even know if this is *really* a problem or si

Re: File Selector

2005-04-14 Thread muppet
Gabor Szabo said: > Thanks for the ointer to the Gtk2::FileChooserDialog. > I am including here a working example so that you can tell me if it is ok that > I used the simple keywords "open", "cancel" and "accept" instead on the > GTK_FILE_CHOOSER_ACTION_OPEN and similar constants. The action con

(no subject)

2005-04-14 Thread Rodrigo Torres
Hi, I'm learning perl, trying to make some Gtk stuff and faced this problem (well, dont even know if this is *really* a problem or simply a /misunderstood/). This snippet my $renderer = Gtk2::CellRendererText->new; my $column = Gtk2::TreeViewColumn->new_with_attributes( "Códi

File Selector

2005-04-14 Thread Gabor Szabo
Thanks for the ointer to the Gtk2::FileChooserDialog. I am including here a working example so that you can tell me if it is ok that I used the simple keywords "open", "cancel" and "accept" instead on the GTK_FILE_CHOOSER_ACTION_OPEN and similar constants. If that's OK then someone might want to

Re: Gnome2 on MS Windows

2005-04-14 Thread Gabor Szabo
On 4/14/05, muppet <[EMAIL PROTECTED]> wrote: > Gtk2::FileChooserDialog is part of gtk+. thanks Gabor ___ gtk-perl-list mailing list gtk-perl-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-perl-list

Re: Gnome2 on MS Windows

2005-04-14 Thread muppet
Gabor Szabo said: > The whole thing actually came up because I wanted to includ a file selector > and I though I will use Gtk2::Ex::Dialogs::ChooseFile from Gtk2::Ex::Dialogs > but that module depends on Gnome2::VFS. looks like it needs VFS only to get the mime type of a file for Gtk2::Ex::Dialo

Re: Gnome2 on MS Windows

2005-04-14 Thread Gabor Szabo
On 4/14/05, muppet <[EMAIL PROTECTED]> wrote: > > On Apr 14, 2005, at 8:28 AM, Gabor Szabo wrote: > > > On 4/14/05, muppet <[EMAIL PROTECTED]> wrote: > >>> the Gnome2 and Gnome2::VFS modules in binary format for easy > >>> installation on MS Winows. > >> > >> the base libraries that these modules

Re: Gnome2 on MS Windows

2005-04-14 Thread muppet
On Apr 14, 2005, at 8:28 AM, Gabor Szabo wrote: On 4/14/05, muppet <[EMAIL PROTECTED]> wrote: the Gnome2 and Gnome2::VFS modules in binary format for easy installation on MS Winows. the base libraries that these modules bind aren't available for native win32 -- at least, not so far as i know. On t

Re: Gnome2 on MS Windows

2005-04-14 Thread Gabor Szabo
As far as I understand Cygwin is not an option as I have to supply native code to my customer. On 4/14/05, muppet <[EMAIL PROTECTED]> wrote: > > the Gnome2 and Gnome2::VFS modules in binary format for easy > > installation on MS Winows. > > the base libraries that these modules bind aren't avail

Re: GladeXML doc patch

2005-04-14 Thread muppet
On Apr 14, 2005, at 5:30 AM, Grant McLean wrote: I notice the signal_autoconnect_from_package helper method in GladeXML.pm is not fully documented. Specifically, the fact it accepts a package or and object. I find the latter to be particularly useful and in fact advocate it as 'the one true way'

Re: Gnome2 on MS Windows

2005-04-14 Thread muppet
On Apr 14, 2005, at 6:58 AM, Gabor Szabo wrote: I might be missing the right documentation again but I could not find a place to download the Gnome2 and Gnome2::VFS modules in binary format for easy installation on MS Winows. the base libraries that these modules bind aren't available for native w

Re: Gtk2::GladeXML: signals not connecting

2005-04-14 Thread muppet
On Apr 13, 2005, at 11:32 PM, Daniel Kasak wrote: However if I use Glade to connect the same signal ( which Glade calls button_press_event ) to the above sub, nothing happens. what version of Gtk2::GladeXML are you using? 1.000 connected all signals "after", which resulted in such behavior; 1.001

Gnome2 on MS Windows

2005-04-14 Thread Gabor Szabo
I might be missing the right documentation again but I could not find a place to download the Gnome2 and Gnome2::VFS modules in binary format for easy installation on MS Winows. Could someone please point me to the instructions ? Gabor ___ gtk-perl-list

GladeXML doc patch

2005-04-14 Thread Grant McLean
Hi I notice the signal_autoconnect_from_package helper method in GladeXML.pm is not fully documented. Specifically, the fact it accepts a package or and object. I find the latter to be particularly useful and in fact advocate it as 'the one true way' :-) So here's a doc patch... Cheers Grant I