[pygtk] Re: [DiaCanvas] Affine transformations in Python

2003-07-15 Thread Arjan J. Molenaar
On Tue, 2003-07-15 at 17:16, Martin Soto wrote: > Hi all! > > Is there a simple way to create and manipulate affine transformation > matrices in Python? Of course, I could write my own algorithms, but > it'd be nice to have the basic operations there. I'm I missing > something? Hi, I remember

[pygtk] ANNOUNCE: Gaphor 0.2.0

2003-04-04 Thread Arjan J. Molenaar
Application === Gaphor 0.2.0 Description === Gaphor is an UML modeling tool written in Python. It is designed to be extensible and easy to use. Enhancements It's been a while ago since 0.1.0 was announced. In the mean time a lot has changed: - Gaphor is completely w

Re: [pygtk] GenericTreeModel problems

2002-12-31 Thread Arjan J. Molenaar
On Sun, 2002-12-29 at 19:18, David M. Cook wrote: > On Sun, Dec 29, 2002 at 12:25:09PM +0100, Arjan J. Molenaar wrote: > > > I have no problem with the GenericTreeModel. I use it in Gaphor > > (http://gaphor.sf.net) and even use editable cells (with an icon). > > Thanks

Re: [pygtk] GenericTreeModel problems

2002-12-29 Thread Arjan J. Molenaar
On Sun, 2002-12-29 at 03:49, David M. Cook wrote: > I've uploaded a tarball, mytreemodel.tgz, of a pygtk program and a README > describes some of the problems I'm seeing to > > http://davidcook.org/pygtk > > Dave I have no problem with the GenericTreeModel. I use it in Gaphor (http://gaphor.

[pygtk] debian packages

2002-12-25 Thread Arjan J. Molenaar
Hi, Has anybody created Debian packages for gnome-python on Woody (3.0). Regards, Arjan ___ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Re: [pygtk] Bonobo reference problem

2002-11-05 Thread Arjan J. Molenaar
On Tue, 2002-11-05 at 15:11, James Henstridge wrote: > Arjan J. Molenaar wrote: > > > Thank you for the bug report. I have updated pyorbit to fix the > problem. The pycorba_object_new() function used to create a wrapper for > a CORBA object didn't duplicate the object

[pygtk] Bonobo reference problem

2002-11-03 Thread Arjan J. Molenaar
Hi, I'm experiencing problems when I try to close a window by pressing the upper-right close button on the window title bar. This small app exposes the bug: import pygtk pygtk.require('2.0') import gtk, bonobo, bonobo.ui def init(): window = bonobo.ui.Window ('Title', 'test') window.set

[pygtk] DND in GtkTreeModel/View

2002-10-19 Thread Arjan J. Molenaar
Hi, I've been wondering... Lately I have implemented some DND functionallity in my app (Gaphor) and I noticed that you can handle DND from the GtkTreeModel by means of the GtkTreeDragSource and DragDest interfaces. These interfaces are not implemented for the current GtkGenericTreeModel class. Doe

[pygtk] Patch: GtkTreeModel and refenecing objects

2002-01-31 Thread Arjan J. Molenaar
Hi, I've created a patch that adds a 'leak_references' property to the GenericTreeModel. Turning this feature off (default is on, the old behaviour) will always decrement the refcount on PyObjects. This will prevent memory/refcnt leaks from happening. The Model should ensure that objects which ar

[pygtk] Freeing GObjects in Python

2002-01-31 Thread Arjan J. Molenaar
Hi, I'm using PyGTK (2.0) to do the graphical representation in a UML modeling tool (http://gaphor.sourceforge.net). I have created a small demo setup in a test program like this: + Model node + Package + Actor (data element) + UseCase (data element) + Diagram The diagram holds a D

[pygtk] GCC with -ansi option

2002-01-31 Thread Arjan J. Molenaar
Hi, I'm having some trouble compiling PyGTK from CVS. I get errors like these: /gnome/head/INSTALL/include/glib-2.0/glib/gmessages.h:108: warning: invalid character in macro parameter name The remedy seems to be removing the '-ansi' flag from the CFLAGS attribute. AKAIK the '...