Re: [pygtk] ANNOUNCE: Kiwi 1.9.1

2005-09-07 Thread dannym
PROTECTED]:~/work/src/kiwi-1.9.1$ python setup.py build Traceback (most recent call last): File setup.py, line 36, in ? data_files = [ File setup.py, line 14, in listfiles return [os.path.join(dir, filename) OSError: [Errno 2] No such file or directory: '/home/dannym/work/src/kiwi-1.9.1

Re: [pygtk] gtk.FileChooserButton and custom gtk.FileChooseDialog

2005-09-12 Thread dannym
Hi, hmm, and where is the connection between your classes filechooser and filedlg ? cheers, Danny ___ 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] trying to launch a pygame app from within my gtk app

2005-11-09 Thread dannym
Hi, Am Mittwoch, den 09.11.2005, 13:25 -0600 schrieb nephish: thanks gents, i am using linux. and i have been trying to get the spawn command to work. in the docs, i dont understand what is ment by args, i dont really have any args to pass. Most programs expect their own full path as the

Re: [pygtk] Re: Pixbuf memory leak?

2005-11-28 Thread dannym
Hi, Am Mittwoch, den 16.11.2005, 09:06 + schrieb Loris Caren: On Tuesday 15 November 2005 21:06, you wrote: I'm doing a large number of calls to p = gtk.gdk.pixbuf_new_from_file(f) ... del p and am finding that the process consumes more and more memory as it goes on. Should I

Re: [pygtk] Does such a widget exist?

2005-11-28 Thread dannym
Hi, Am Mittwoch, den 16.11.2005, 19:51 +0100 schrieb 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? :) diacanvas perhaps, if I understand

Re: [pygtk] Disabling or greying out other windows

2005-11-28 Thread dannym
Hi, Am Montag, den 21.11.2005, 16:08 -0500 schrieb Thierry Lam: Let's say I have a main window which has a File menu. When I click on the File menu and the open button, I have a File Chooser window which comes in front of my main window. How do I make the main window unselectable? That is,

Re: [pygtk] Help with modal in Gtk::FileChooserDialog

2005-11-28 Thread dannym
Hi, Am Dienstag, den 22.11.2005, 14:37 -0500 schrieb Thierry Lam: Does anyone know how to set modal to True for Gtk::FileChooserDialog? Usually you just use a modal event loop: dialog = gtk.FileChooserDialog() answer = dialog.run() # hangs around until dialog is closed del dialog

Re: [pygtk] Help with modal in Gtk::FileChooserDialog

2005-11-28 Thread dannym
Hi, Am Montag, den 28.11.2005, 15:47 -0500 schrieb Graham Ashton: On Monday 28 November, dannym wrote: Usually you just use a modal event loop: dialog = gtk.FileChooserDialog() answer = dialog.run() # hangs around until dialog is closed del dialog Hi. Wouldn't it be better to say

Re: [pygtk] Port of a gtk date entry widget

2005-12-12 Thread dannym
Hi, Am Sonntag, den 04.12.2005, 02:20 +0100 schrieb Fabian Sturm: Hi! thanks for your reply! On Sat, 2005-12-03 at 18:55 +0100, Jakub Piotr Cłapa wrote: 2. I can't hide any of the widgets. E.g. a call to self.__cal_label.hide() does not hide the label Okay I found the problem

Re: [pygtk] Trouble modifying a GtkTreeView

2005-12-12 Thread dannym
Hi, Am Montag, den 12.12.2005, 07:53 -0500 schrieb Gary Jaffe: Hi -- I have a GtkTreeView that is working fine, but I would like to change 2 things. 1) Change the background color in the text area and I sure hope you have a good reason for that, like changing it to RED to GREEN as a

Re: [pygtk] ANNOUNCE: DateEdit widget for linux and win32

2005-12-12 Thread dannym
Hi, Am Dienstag, den 06.12.2005, 01:22 +0100 schrieb Fabian Sturm: Hi! I finally finished my dateedit widget, it is not yet thoroughly tested but all I tested worked fine. nice :) It is not an exact port of the libgnomeui widget, since I think some changes make more sense for a python

Re: [pygtk] Help with modal in Gtk::FileChooserDialog

2005-12-12 Thread dannym
Hi, Am Donnerstag, den 01.12.2005, 12:23 + schrieb Gustavo J. A. M. Carneiro: [...] You need to call dialog.destroy(). del dialog doesn't work because gtk+ itself always keeps one last reference to toplevel windows until you destroy() them (or until they are implicitly destroyed by

Re: [pygtk] how to bring dialog to top of window stack?

2005-12-19 Thread dannym
Hi, Am Montag, den 19.12.2005, 15:56 -0500 schrieb george young: [pygtk 1.99.17, python 2.4.2] [Yes, I know 1.99 is ancient -- I'm working on it...] I have a Dialog which is popped up from a menu item. I want to enforce that there is at most one of this type dialog extant at any time.

Re: [pygtk] question about tree view

2006-01-02 Thread dannym
Hi, Am Montag, den 02.01.2006, 16:36 + schrieb nephish: Hey there, i am using a tree view to show one main coloum and one child. i can browse through the tree just fine, but i have to double-click to make it selected and give the on_tree_row_activated signal. Where can i set

Re: [pygtk] How do you make a widget lose its focus?

2006-01-10 Thread dannym
Hi, Am Dienstag, den 10.01.2006, 18:03 -0500 schrieb Thierry Lam: Let’s say I have Gtk.ComboBoxEntry. Each time I select an entry, the widget.is_focus() returns true. If I want to click another window, can I explicitly set the widget’s focus to False? By clicking on another focusable widget,