Re: Table Question

2005-08-02 Thread Daniel Kasak
James Muir wrote: > Hello, > > I'm learning gtk2-perl. I've never written anything using Gnome before > but hope to become quite proficient at writing GUI code for Gnome. > Programming in perl is fun, so I'd prefer to use gtk2-perl rather than > casting my way through c. > > Is this a reasonable a

Table Question

2005-08-02 Thread James Muir
Hello, I'm learning gtk2-perl. I've never written anything using Gnome before but hope to become quite proficient at writing GUI code for Gnome. Programming in perl is fun, so I'd prefer to use gtk2-perl rather than casting my way through c. Is this a reasonable approach? I am familiar with

Re: gtk-perl-list Digest, Vol 16, Issue 2

2005-08-02 Thread zentara
On Tue, 2 Aug 2005 09:06:04 -0400 (EDT) [EMAIL PROTECTED] wrote: >Date: Tue, 02 Aug 2005 20:05:29 +0700 >From: Beast <[EMAIL PROTECTED]> >Subject: Button with image >1. Is it possible to create new button with image without adding in >Gtk2::Stock? > >2. I can not found gtk_stock_add documentati

Re: Button with image

2005-08-02 Thread muppet
Beast said: > > 1. Is it possible to create new button with image without adding in > Gtk2::Stock? Of course. The stock stuff is a convenience wrapper to do a bunch of gruntwork for you. $button = Gtk2::Button->new (); # note, no label $image = Gtk2::Image->new_from_pixbuf ($pixbuf); $bu

clipboard

2005-08-02 Thread Jens Luedicke
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hiya... right now I'm using set_text() and request_text() to get and set an uri list to the clipboard + cut or copy appended in the last line. This works fine for my app but not together with Nautilus or Thunar. I haven't tried Konqueror. Is there s

Button with image

2005-08-02 Thread Beast
1. Is it possible to create new button with image without adding in Gtk2::Stock? 2. I can not found gtk_stock_add documentation in gtk+ site, however it was there in gtk-perl site, is Gtk2::Stock only available in gtk-perl? -- --beast ___ gtk-p