[pygtk] Access to "open with..." dialog on Windows

2008-01-20 Thread Stefano Esposito
Hi all, i'd like to know if there is a simple way to access to the "open with..." dialog that windows pops-up to display apps associated to the file type or, if this is not possible, if there is a way to make a dialog like that, i.e.: where i can find the info on apps and associated files and so o

Re: [pygtk] gtk.Border values

2007-10-06 Thread Stefano Esposito
.top, border["top"] nor > border.props.top. > Can anybody help me finding them? dir() could help you -- Stefano Esposito ___ pygtk mailing list pygtk@daa.com.au http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Re: [pygtk] Re: Reorderable columns

2006-01-29 Thread Stefano Esposito
Here's the most simple snip i can do -- #!/usr/bin/env python import gtk window = gtk.Window(gtk.WINDOW_TOPLEVEL) window.connect("delete-event", gtk.main_quit) tree = gtk.TreeView() window.add(tree) model = gtk.ListStore(str, bool, str, str) model.append([gtk.STOCK_YES, True, "One",

[pygtk] Reorderable columns

2006-01-28 Thread Stefano Esposito
Hi all, i've a TreeView with those renderers in columns: 0)CellRendererPixbuf & CellRendererToggle 1,2,3) CellRendererText All columns have those settings: resizable: True clickable: True sort_indicator: True reorderable: True sort_column_id

[pygtk] Does such a widget exist?

2005-11-16 Thread Stefano Esposito
Hi all, i need a widget that displays mobile/fixed points and fixed rectangles and which is capable to catch mouse-click events. Does such a widget exist somewhere in the world? :) Bye Stefano -- "Solo due cose sono infinite: l'universo e la stupidità umana... e per quanto riguarda l'univers

[pygtk] Execute a function once as the main loop begins

2005-10-22 Thread Stefano Esposito
Hi all, i need a function to be runned only once before all the rest gets up and running. In C it'd be gtk_init_add(...), but i noticed that a gtk.init_add() method doesn't exist in pygtk. So, has anyone an idea on how to achieve this? Thanks Stefano -- "Solo due cose sono infinite: l'univers

[pygtk] gtk.FileChooserButton and custom gtk.FileChooseDialog

2005-09-12 Thread Stefano Esposito
Hi, all i tried to set a gtk.FileChooseButton to use a gtk.FileChooserDialog defined by me. It all works fine, but when i choose a file from the dialog and click "Open" button, the selected file won't be shown in the button. Here how i define button and dialog: class filechooser(gtk.FileChoose

[pygtk] VteTeminalAccessible

2005-09-09 Thread Stefano Esposito
Hi all, i read help(vte), and i could not find out how to use the VteTerminalAccessible from python. Anyone who has an hint?Is VteTerminalAccessible avaible from python bindings?If not so, what i can use instead of it to retrive the terminal text? Thanks Stefano -- "Solo due cose sono infini

Re: [pygtk] pygtk and national languages

2005-08-12 Thread Stefano Esposito
Thank you all :) -- "Solo due cose sono infinite: l'universo e la stupidità umana... e per quanto riguarda l'universo non sono sicuro" Albert Einstein # GnuPG/PGP Key Id: 0x5646B7D4 pgpFlxUZqbrgw.pgp Description: PGP signature ___ pygtk mailing lis

[pygtk] pygtk and national languages

2005-08-12 Thread Stefano Esposito
Hi all, can anyone give me na hint on how to implement translations in my app's gui? Thanks -- "Solo due cose sono infinite: l'universo e la stupidità umana... e per quanto riguarda l'universo non sono sicuro" Albert Einstein # GnuPG/PGP Key Id: 0x5646B7D4 pgp7hldqptjeH.pgp Description: PG

[pygtk] gtk.Combobox

2005-08-07 Thread Stefano Esposito
Hi all, usually, if the users clicks on an already selected entry in a comobox, this doesn't emit changed signal. There's anyway to modify this behaviour, making the combobox emit the signal anyway? -- "Solo due cose sono infinite: l'universo e la stupidità umana... e per quanto riguarda l'un

Re: [pygtk] gtk.Plug and gtk.Socket

2005-08-05 Thread Stefano Esposito
Hi Brian, vte is everything i need. Thanks a lot Bye Stefano -- "Solo due cose sono infinite: l'universo e la stupidità umana... e per quanto riguarda l'universo non sono sicuro" Albert Einstein # GnuPG/PGP Key Id: 0x5646B7D4 ___ pygtk mailing list

[pygtk] gtk.Plug and gtk.Socket

2005-08-03 Thread Stefano Esposito
Hi all, I'm trying to embed an xterm window into my app, i find something about gtk.Plug and gtk.Socket, but it seems that they will work only with apps that uses GtkSocket or GtkPlug and i don't think xterm does... Any hint? -- "Solo due cose sono infinite: l'universo e la stupidità umana...

Re: [pygtk] catch the click event

2005-07-23 Thread Stefano Esposito
Hi Ogz, you may try to catch the delete event of the dialog and do your desired task in it's callback -- "Solo due cose sono infinite: l'universo e la stupidità umana... e per quanto riguarda l'universo non sono sicuro" Albert Einstein # GnuPG/PGP Key Id: 0x5646B7D4 pgpMDGrmn3zRD.pgp Descr

Re: [pygtk] TreeView Single Click

2005-07-08 Thread Stefano Esposito
On Fri, 8 Jul 2005 18:37:57 -0400 "Michael A D'ambrosio" <[EMAIL PROTECTED]> wrote: > Hello. I am trying to make my treeview emit the row-activated signal on a > single > click as opposed to a double click (this is for a touch screen application). [cut] Hi all, I'm new to the list, nice to m