[PyQt] QTableWidgetItem editingFinished

2009-07-06 Thread Mario Daniel Carugno
Hi list, i have a little problem here. I setup a QTableWidget with editable items. When i press ENTER or doubleclick on an item, it becomes editable. After edit, when i press ENTER again, editing ends. I need to trap that last event. I need to do something when user press ENTER after editing, to

Re: [PyQt] QTableWidgetItem editingFinished

2009-07-06 Thread simozack
It works exactly like the QLineEdit, because the widget it calls IS a QLineEdit (really not always: if it is a number it calls a QSpinBox or a QDoubleSpinBox, if it is a date a QDateEdit or a QDateTimeEdit etc...). The widget is returned by the function QTableWidget.itemDelegate(). Bye, Simone

[PyQt] Icons problem with pyqt4 and py2exe!

2009-07-06 Thread Ruan WenBO
Hello : I am trying Py2exe to migrate a pyqt4 app to Windows from my Ubuntu. The problem is all the icons on my application window disappeared. I use qt designer to create my main window and create my resource file. Then compile the .ui file and .prc file in Eric4 IDE. To execute the

Re: [PyQt] Icons problem with pyqt4 and py2exe!

2009-07-06 Thread piotr maliƄski
check the imageformats solution described in my tutorial - http://www.rkblog.rk.edu.pl/w/p/building-standalone-ms-windows-apps-py2exe/ 2009/7/6 Ruan WenBO drizt.r...@gmail.com Hello : I am trying Py2exe to migrate a pyqt4 app to Windows from my Ubuntu. The problem is all the icons on

[PyQt] Re: QTableWidget.selectRow() not always highlighting selected row.

2009-07-06 Thread Kerri Reno
This is a repost - I'm hoping someone can help me, or let me know what I need to do to get help. THANKS! Kerri On Tue, Jun 30, 2009 at 2:12 PM, Kerri Reno kr...@yumaed.org wrote: Attached is a reproducible example of my problem. It simulates a table with 10 existing rows, and the user has

[PyQt] Makefile install path macros

2009-07-06 Thread Hans-Peter Jansen
Hi Phil, I'm preparing sip/PyQt builds in openSUSEs build service: http://download.opensuse.org/repositories/home:/frispete:/branches:/KDE:/Qt/ in order to split the packages into essential and -devel parts. While at it, install the missing elements: doc and designer plugin. To fix the

[PyQt] Move a QDockWidget between two QMainWindows

2009-07-06 Thread Magnus Benjes
Hello, is there a way to move a QDockWidget between two QMainWindows? In the sample code I have two QLabels wrapped into two QDockwidgets and I want to be able to move them from one QMainWindow to the other QMainWindow. But it doesen't work. What is missing in the code? Regards Magnus

Re: [PyQt] Re: question about resizing behavior

2009-07-06 Thread Darren Dale
On Fri, Jul 3, 2009 at 3:37 AM, Ole Streicher ole-usenet-s...@gmx.netwrote: Hello Darren, Darren Dale dsdal...@gmail.com writes: Somebody reported some strange resizing behavior at the matplotlib mailing list. The somebody was me :-) Here some additional information: If you printout

Re: [PyQt] Makefile install path macros

2009-07-06 Thread Phil Thompson
On Mon, 6 Jul 2009 21:44:30 +0200, Hans-Peter Jansen h...@urpla.net wrote: Hi Phil, I'm preparing sip/PyQt builds in openSUSEs build service: http://download.opensuse.org/repositories/home:/frispete:/branches:/KDE:/Qt/ in order to split the packages into essential and -devel parts.

Re: [PyQt] Makefile install path macros

2009-07-06 Thread Hans-Peter Jansen
Am Montag, 6. Juli 2009 schrieb Phil Thompson: On Mon, 6 Jul 2009 21:44:30 +0200, Hans-Peter Jansen h...@urpla.net in order to split the packages into essential and -devel parts. While at it, install the missing elements: doc and designer plugin. To fix the latter, I needed this make

[PyQt] Re: Icons problem with pyqt4 and py2exe!

2009-07-06 Thread drizt
Thanks, it works when I create a setup.py with no bundle_files option, but it remains no icons when I use bundle_files:1 options in my setup.py. Can I force bundling all the plugin dlls in my .exe file? On Mon, 2009-07-06 at 20:45 +0100, pyqt-requ...@riverbankcomputing.com wrote: check the