Re: [pygtk] Make Dialog disappear without returning to main loop

2010-03-20 Thread Florian Diesch
Nikolaus Rath writes: > I am creating a dialog in a callback function. Is there a way to make > the dialog window disappear before the callback function returns? > > I do not care if the main window keeps unresponsive, I just want the > dialog to disappear. > > Here is a small sample script to de

Re: [pygtk] How to write an agenda view?

2010-03-01 Thread Florian Diesch
Martin Drautzburg writes: > I need to write an agenda view, with a timesheet (hours/days) in the > background and with "items" drawn as boxes with text. I dont' quite know > where to start. Here are some specific questions: [...] > How would you guy approach this? Maybe one of the canvas libs

Re: [pygtk] Embeded explorer

2010-02-26 Thread Florian Diesch
Alexandre González writes: > I need a very simple explorer view in my app, I've reading something about > http://www.mozilla.org/unix/gtk-embedding.html but wath's your > recommendation? Perhaps some epiphany embeded (compatibility, and less > resources needed). I'm not sure what you mean by "si

[pygtk] ANN: easygconf 0.03

2010-02-16 Thread Florian Diesch
I'm happy to announce easygconf 0.03 Get it at http://www.florian-diesch.de/software/easygconf/ Changes since 0.02: --- * renamed GConfDict.add_listner() to add_listener() * fixed bug in GConfDict.from_python() (thanks to Pawn Hearts ) easygconf provids an easy, pythonic

Re: [pygtk] announcement policy

2009-11-19 Thread Florian Diesch
Alessandro Dentella writes: > On Thu, Nov 19, 2009 at 06:19:31PM +0100, Yann Leboulanger wrote: >> John Finlay a écrit : >> > I'm disappointed that I appear to be the only one on this list that >> > finds these announcements objectionable. And contrary to speculation I > > I don't find announce

Re: [pygtk] ANN: PyGUI 2.1

2009-11-18 Thread Florian Diesch
Greg Ewing writes: > John Finlay wrote: > >> Start your own list for the community that is interested in your project. > > That's not going to reach anyone who doesn't already > know about it. > > It's probably a good idea for ongoing discussion, > though. Any suggestions on the best way of going

[pygtk] ANN: easygconf 0.02

2009-11-16 Thread Florian Diesch
Hi! I'm happy to announce easygconf 0.02. Get it at http://www.florian-diesch.de/software/easygconf/ easygconf provids an easy, pythonic way to access GConf through a dict-like interface. Example --- from easygconf import GConfDict import gtk key = 'test' gc=GConfDict('/

Re: [pygtk] make a ListStore to sort itself

2007-01-30 Thread Florian Diesch
"Volker Helm" <[EMAIL PROTECTED]> wrote: > > Bye, > > Volker > > Original-Nachricht > Datum: Fri, 26 Jan 2007 23:24:10 +0100 > Von: Florian Diesch <[EMAIL PROTECTED]> > An: pygtk@daa.com.au > Betreff: Re: [pygtk] make a

Re: [pygtk] make a ListStore to sort itself

2007-01-27 Thread Florian Diesch
"Volker Helm" <[EMAIL PROTECTED]> wrote: >> I have a sorted ListStore containing values that change themself. After >> a change I want to sort it again. >> >> So far I'm doing it by calling set_sort_column_id() with a different >> sort_column_id or order and then calling it again with the right v

Re: [pygtk] Liststore model

2007-01-14 Thread Florian Diesch
Seth Mahoney <[EMAIL PROTECTED]> wrote: > If this doesn't work, then I've got another idea (though I don't know if > it will work for you, either). You could try generating the liststore > with a str for every possible column, and then only show the columns you > need. So, if there were five dif

[pygtk] make a ListStore to sort itself

2007-01-13 Thread Florian Diesch
Hi! I have a sorted ListStore containing values that change themself. After a change I want to sort it again. So far I'm doing it by calling set_sort_column_id() with a different sort_column_id or order and then calling it again with the right values. Is there a better way? Calling row_change

Re: [pygtk] A few questions/comments

2007-01-10 Thread Florian Diesch
[EMAIL PROTECTED] wrote: > The documentation for TreeModel.get_iter_from_string(string_path) does > not define the format for 'string_path' This got me a couple of months > ago, and then again yesterday. It is defined in the description of TreeModel: "A path is essentially a potential node.