[PyQt] can't compile pykde (kdebindings)

2009-09-28 Thread Tamás Bajusz
I'm trying to build a kdebindings package for UHU-Linux, but i can't. It was ok with previous stable releases of sip and pyqt4. python 2.6.2 qt 4.5.2 sip 4.9 pyqt4 4.6 kdebindings 4.3.0 /var/uhubuild/work/compile/python/pykde4/sip/kdecore/klocalizedstring.sip: In function 'QString

[PyQt] Regarding code completion in pydev

2009-09-28 Thread Cihat Basol
Hi, I am using eclipse + pydev. The code completion on modules classes methods works but the argument list is always empty. Does any body have idea why it is so? Thanks, ___ PyQt mailing listPyQt@riverbankcomputing.com

[PyQt] Form/dialog without title bar and actions buttons

2009-09-28 Thread zorze
Hi, I'm a newbee in Qt/PyQt but I'm starting to use it. The first problem that I need to solve is how to remove the title bar from a Dialog/MainWindow? I use Qt Designer to make the form. Thank you. P.S.- Using Fedora Linux 11 KDE ___ PyQt mailing

Re: [PyQt] ANN: PyQt v4.6 and SIP v4.9 Released

2009-09-28 Thread Serge Montagnac
Phil Thompson wrote: PyQt v4.6 and SIP v4.9 have been released and are available from the usual places. This more or less completes the development identified in the (now discarded) roadmap. In particular it means that QString and QVariant can be made to disappear completely. This is the

[PyQt] Snow Leopard

2009-09-28 Thread Michael Held
hi pyqt, I had some problems forcing Apples Python to 32 bit. neither export VERSIONER_PYTHON_PREFER_32_BIT=yes nor defaults write com.apple.versioner.python Prefer-32-Bit -bool yes was working. compiling sip4.9 and PyQt4.6 for Qt4.5.2 worked fine, but importing failed: python -c from PyQt4

Re: [PyQt] Mac OS X Problem: PyQT applications not focusing on launch

2009-09-28 Thread Holger Rapp
Am 25.09.2009 um 18:24 schrieb Alexei Puzikov: hello = HelloWorld() hello.show() hello.raise_() # this will raise the window on Mac OS X sys.exit(app.exec_()) This was a mighty useful advice. The internet doesn't seem to be aware of this solution (as mentioned, I only found the clue to pack

Re: [PyQt] Mac OS X Problem: PyQT applications not focusing on launch

2009-09-28 Thread David Boddie
On Mon Sep 28 11:37:27 BST 2009, Holger Rapp wrote: Am 25.09.2009 um 18:24 schrieb Alexei Puzikov: hello = HelloWorld() hello.show() hello.raise_() # this will raise the window on Mac OS X sys.exit(app.exec_()) This was a mighty useful advice. The internet doesn't seem to be aware of

Re: [PyQt] slots don't get called

2009-09-28 Thread Peter Bienstman
On Tuesday 22 September 2009 01:40:42 pm Peter Bienstman wrote: On Tuesday 22 September 2009 01:26:50 pm you wrote: Which system is this? Mine is WinXP with PyQt-Py2.6-gpl-4.5.4-1.exe . Linux using current snapshots. A problem like that is unlikely to be platform dependent. Is there a

Re: [PyQt] slots don't get called

2009-09-28 Thread Phil Thompson
On Mon, 28 Sep 2009 14:15:34 +0200, Peter Bienstman peter.bienst...@ugent.be wrote: On Tuesday 22 September 2009 01:40:42 pm Peter Bienstman wrote: On Tuesday 22 September 2009 01:26:50 pm you wrote: Which system is this? Mine is WinXP with PyQt-Py2.6-gpl-4.5.4-1.exe . Linux using current

Re: [PyQt] can't compile pykde (kdebindings)

2009-09-28 Thread David Boddie
On Mon Sep 28 07:33:17 BST 2009, Tamás Bajusz wrote: I'm trying to build a kdebindings package for UHU-Linux, but i can't. It was ok with previous stable releases of sip and pyqt4. python 2.6.2 qt 4.5.2 sip 4.9 pyqt4 4.6 kdebindings 4.3.0

Re: [PyQt] Promote Widget and QDockWidget

2009-09-28 Thread Giorgio Luciano
it seems that using a widget placeholder and promoting to dockwidget partially solve the problems. but I didn't succed in allowing dockable areas... any hint appreciated :) Giorgio -- View this message in context: http://www.nabble.com/Promote-Widget-and-QDockWidget-tp25635102p25646604.html

Re: [PyQt] can't compile pykde (kdebindings)

2009-09-28 Thread Simon Edwards
Tamás Bajusz wrote: I'm trying to build a kdebindings package for UHU-Linux, but i can't. It was ok with previous stable releases of sip and pyqt4. python 2.6.2 qt 4.5.2 sip 4.9 pyqt4 4.6 kdebindings 4.3.0 It will work in the next KDE bug fix release of 4.3. It is already fixed in KDE's SVN.

[PyQt] PyQt 4.6 (64b) on Snow Leopard the Symbol not found: _sipQtConnect - A longish tale

2009-09-28 Thread Pierre Gerard-Marchant
All, I spent the last couple of weeks running into the same issue with PyQt on Snow Leopard (10.6.1): compilation and installation ran without problems, but when I tried to import PyQt, I got the following message: Traceback (most recent call last): File string, line 1, in module

Re: [PyQt] ANN: PyQt v4.6 and SIP v4.9 Released

2009-09-28 Thread Detlev Offenbach
On Montag, 28. September 2009, Serge Montagnac wrote: Phil Thompson wrote: PyQt v4.6 and SIP v4.9 have been released and are available from the usual places. This more or less completes the development identified in the (now discarded) roadmap. In particular it means that QString and

Re: [PyQt] ANN: PyQt v4.6 and SIP v4.9 Released

2009-09-28 Thread Christian Caron
I just upgraded and I get problems patching at the instance level. I used to patch my own 'customEvent' on the QApplication at the instance level. This doesn't work anymore. Patching still works at the class level. The following code illustrates this: from PyQt4.QtCore import * from

Re: [PyQt] Snow Leopard

2009-09-28 Thread William Kyngesburye
Ah, this verification from the python man page: Note that the preference files and environment variable that apply to the python command, do not apply when running a specific version of Python. In particular, running python2.6 will always default to 64- bit execution (unless one uses the

Re: [PyQt] Form/dialog without title bar and actions buttons

2009-09-28 Thread Hans-Peter Jansen
Am Montag 28 September 2009 schrieb zorze: Hi, I'm a newbee in Qt/PyQt but I'm starting to use it. Welcome to the PyQt wonderlands ;-) The first problem that I need to solve is how to remove the title bar from a Dialog/MainWindow? Could you be more specific about your goals? Are you really

[PyQt] older sip version

2009-09-28 Thread Clinton Stimpson
Hi, Where can I download sip 4.7.8? I need to build PyQt 4.4. Any newer version of sip doesn't work with that. Thanks, Clint ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Signal this way

2009-09-28 Thread pantheon
Hi, I am creating QAction in a loop and adding it to menu. action = QtGui.QAction(QtGui.QIcon(iconFile), fileName, menu) menu.addAction(action) I need to connect this action to a python function in such a way that I should get text of QAction or instance of QAction object itself.

RE: [PyQt] ANN: PyQt v4.6 and SIP v4.9 Released

2009-09-28 Thread Igor Prischepoff
Can't compile sip 4.9 with mingw on WinXP pyqthon 2.6.2 Qt 2009.03 SDK + mingw version which comes with SDK. Error text - something about undefined reference in 'py_struct' etc... I'm only one with this problem? --- i...@tyumbit.ru ___ PyQt mailing