[PyQt] hidden signals?

2007-12-24 Thread Jochen Georges
hello, sorry for the tons of beginner-questions and thanks for your patience. there is a strange behaviour of a pushbutton and do not see, why it is ... there are two buttons and two lineedits. if the first button is clicked, only the first lineedit should be alive if the second button is

Re: [PyQt] hidden signals?

2007-12-24 Thread Andreas Pakulat
On 24.12.07 09:16:17, Jochen Georges wrote: hello, sorry for the tons of beginner-questions and thanks for your patience. there is a strange behaviour of a pushbutton and do not see, why it is ... there are two buttons and two lineedits. if the first button is clicked, only the first

[PyQt] ANN: new eric4 snapshot

2007-12-24 Thread Detlev Offenbach
Hi, this is to announce the availability of a new eric 4.1 snapshot release. It fixes a few bugs and includes these new functions. - made number of Subversion commit messages to remember configurable - added buttons to edit the Subversion config and servers file to the Subversion

Re: [PyQt] hidden signals?

2007-12-24 Thread Jochen Georges
On Monday 24 December 2007 12:25:14 Andreas Pakulat wrote: On 24.12.07 09:16:17, Jochen Georges wrote: Thats not a simple self-contained example that demonstrates the problem. Sorry, but you have to create an app that we can simply run to check what exactly happens and whats wrong with that

Re: [PyQt] hidden signals?

2007-12-24 Thread Detlev Offenbach
On Montag, 24. Dezember 2007, Andreas Pakulat wrote: On 24.12.07 13:22:22, Jochen Georges wrote: On Monday 24 December 2007 12:25:14 Andreas Pakulat wrote: On 24.12.07 09:16:17, Jochen Georges wrote: Thats not a simple self-contained example that demonstrates the problem. Sorry, but

[PyQt] QListViewItem editable

2007-12-24 Thread Reinaldo Carvalho
Hi, I searching how turn editable all QListViewItem from a QListView. -- Reinaldo Carvalho ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Repr for value objects

2007-12-24 Thread Phil Thompson
On Monday 17 December 2007, Giovanni Bajo wrote: On Mon, 2007-12-17 at 14:48 +, Phil Thompson wrote: A list would help. The code would help more (just a patch against the source would be fine). See the attached patch. These are the ones I care most about. Others that could be done (if

[PyQt] qtable object

2007-12-24 Thread Jean-Baptiste BUTET
Hi all :) I would like to be able to select a qtable object in order to copy and paste it in a sheet for example. Qtable is Qtdesigner made. when I select all, only last cell is copied. (only string in cells) Could someone explain me mechanisms in order to allow selection of qtable then paste

Re: [PyQt] Memory leak when using QAbstractTableModel

2007-12-24 Thread Noam Raphael
Hurray! Thanks to Justin Noel on the qt-interest list, the following code now works and doesn't leak! Noam === #!/usr/bin/env python import sys from PyQt4 import QtCore, QtGui from PyQt4.QtCore import Qt class TableModel(QtCore.QAbstractTableModel): def rowCount(self, index):

[PyQt] Using a protected slot (columnResized)

2007-12-24 Thread Noam Raphael
Hello, I want to know when the width of columns in a table has changed. So I wrote something like this: class TableView(QtGui.QTableView): def columnResized(self, column, oldWidth, newWidth): print 'columnResized(%r,%r,%r)' % (column,oldWidth,newWidth)