[PyQt] New style signals question

2010-08-11 Thread Detlev Offenbach
Hi, In my old code I have QTimer code like QTimer.singleShot(0, self, SIGNAL("metaDataChanged()")) How do I convert this to the new style signals code? I tried QTimer.singleShot(0, self.metaDataChanged) but this threw an error. Regards, Detlev -- Detlev Offenbach det...@die-off

Re: [PyQt] New style signals question

2010-08-12 Thread Detlev Offenbach
licked.connect(app.aboutQt) > p.show() > > #QTimer.singleShot(1, app, SLOT("aboutQt()")) > > QTimer.singleShot(1, lambda: p.clicked.emit(True)) > > app.exec_() > > On Thu, Aug 12, 2010 at 12:28 AM, Detlev Offenbach > > > wrote: > > &g

[PyQt] Problem generating PyQt4

2010-09-24 Thread Detlev Offenbach
ptional_list(name)) File "/usr/lib64/python3.1/site-packages/sipconfig.py", line 891, in optional_list return self.__dict__[name].as_list() KeyError: 'LFLAGS_RPATH' Regards Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Problems with latest windows installer

2010-10-08 Thread Detlev Offenbach
Hi, accessing a https url through QWebView crashes the application (eric web browser). I used the latest installer for Python 3 on Windows. This happens on Windows 7 (64-bit) and Windows XP (32-bit). Any hint what might be wrong? Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de

Re: [PyQt] Problems with latest windows installer

2010-10-09 Thread Detlev Offenbach
On Friday 08 October 2010, Detlev Offenbach wrote: > Hi, > > accessing a https url through QWebView crashes the application (eric web > browser). I used the latest installer for Python 3 on Windows. This happens > on Windows 7 (64-bit) and Windows XP (32-bit). Any hint what m

[PyQt] Another issue with latest windows installer on Win 7

2010-10-09 Thread Detlev Offenbach
ate window. That happens for Python 3 and Python 2 packages. Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Problems with latest windows installer

2010-10-10 Thread Detlev Offenbach
On Saturday 09 October 2010, Andreas Pakulat wrote: > On 09.10.10 18:24:23, Phil Thompson wrote: > > On Sat, 9 Oct 2010 15:00:38 +0200, Detlev Offenbach > > > > wrote: > > > On Friday 08 October 2010, Detlev Offenbach wrote: > > >> Hi, > > &

[PyQt] Issue with pyuic of latest snapshot

2010-10-13 Thread Detlev Offenbach
on3.1/site-packages/PyQt4/uic/properties.py", line 82, in _enum return self._pyEnumMember(prop.text) File "/usr/lib64/python3.1/site-packages/PyQt4/uic/properties.py", line 68, in _pyEnumMember raise AttributeError("unknown enum %s" % cpp_name) AttributeError: unknown enum QAbstractSpinBox::PlusMinus Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] [Eric] ANN: automated daily snapshot builds for PyQt and friend on openSUSE build service

2010-10-14 Thread Detlev Offenbach
Comments welcome. > > Enjoy, > Pete > ___ > Eric mailing list > e...@riverbankcomputing.com > http://www.riverbankcomputing.com/mailman/listinfo/eric -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Issue with latest Windows Installer and Windows 7

2010-10-17 Thread Detlev Offenbach
to be started from with PyQt4 as a QProcess. Kind regards Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Issue with latest PyQt snapshots

2010-12-11 Thread Detlev Offenbach
rkAccessManager. Was there some change? Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Issue with latest PyQt snapshots

2010-12-11 Thread Detlev Offenbach
On Samstag, 11. Dezember 2010, Phil Thompson wrote: > On Sat, 11 Dec 2010 12:13:48 +0100, Detlev Offenbach > > wrote: > > Hi, > > > > I've upgraded to the latest PyQt snapshots and immediately got this > > error: > > : 'there is no matching

Re: [PyQt] Translation of strings with Python formating

2011-01-04 Thread Detlev Offenbach
mailing listPyQt@riverbankcomputing.com > http://www.riverbankcomputing.com/mailman/listinfo/pyqt -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] qdialog, global reference and RuntimeError: underlying C/C++ object has been deleted

2011-01-04 Thread Detlev Offenbach
now why > qt destroy an object even if I keep a reference to it and how to force > qt to never destroy a QDialog, > > thanks > Nicola > > ___ > PyQt mailing list PyQt@riverbankcomputing.com > http:

Re: [PyQt] Proposal for QPyNullVariant

2011-01-04 Thread Detlev Offenbach
f the QVariant API.) > > Comments welcome... > How shall the data method of QAbstractItemModel subclasses be written. With QVariant v1 API a QVariant() is returned to indicate, that no data is available. With the v2 API a None is returned. Should all this code be changed? And how will al

[PyQt] PyQt4 signal issue

2011-01-23 Thread Detlev Offenbach
by commenting the various lines in the disconnect_method method. Is there a method to check, if a signal-slot connection has been established (e.g. mySignal.isConnected(slot) )? Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de # -*- coding: utf-8 -*- from PyQt4.QtCore import

Re: [PyQt] [Eric] 'module' object has no attribute 'StackedWidget'

2011-01-24 Thread Detlev Offenbach
Widget' > > Any Suggest? > > > Python > 2.6.1 > Qt > 4.7.0 > PyQt > 4.8.2 > sip > 4.12 > QScintilla > 2.4.6 > eric4 > 4.4.11 (r3912) > > > Thanks > > Luca > ___ > Eric mailing list &g

Re: [PyQt] BUG: sip instance attribute error: Re: [eric4] python qscintilla traceback with current snapshot also

2011-02-06 Thread Detlev Offenbach
you're able to use eric again. > The latest eric4 release (as of today) does contain this "fix". Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] BUG: sip instance attribute error: Re: [eric4] python qscintilla traceback with current snapshot also

2011-02-06 Thread Detlev Offenbach
On Sonntag, 6. Februar 2011, Hans-Peter Jansen wrote: > On Sunday 06 February 2011, 15:49:19 Detlev Offenbach wrote: > > On Sonntag, 6. Februar 2011, Hans-Peter Jansen wrote: > > > Dear Erik, > > > > > > On Sunday 06 February 2011, 05:19:54 e...@e

Re: [PyQt] BUG: sip instance attribute error: Re: [eric4] python qscintilla traceback with current snapshot also

2011-02-07 Thread Detlev Offenbach
is still backing up from counter measurements because of > infrastructure attacks: http://sourceforge.net/blog > > You might need to take the SVN road to a current eric. > I just uploaded the files again. Detlev -- Detlev Offenbach det...@die-offenbachs.de _

Re: [PyQt] How to update the timer automatically in the tree view - Model/View programming

2011-03-16 Thread Detlev Offenbach
n't find the source of the issue either. However, I think it appeared with Qt 4.7. Since my update to Qt 4.7.2 I get this error as well. Application asked to unregister timer 0x2b0e which is not registered in this thread. Fix application. I don't have any idea either. Any suggestions and help are welcome. Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Question to the new style signals

2011-03-19 Thread Detlev Offenbach
f Qt I get a message, that class bar is redefining signal signal1(QString) from it's parent class. How do I correctly extend signals? Regards Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcom

Re: [PyQt] Question to the new style signals

2011-03-19 Thread Detlev Offenbach
On Samstag, 19. März 2011, Phil Thompson wrote: > On Sat, 19 Mar 2011 14:27:11 +0100, Detlev Offenbach > > wrote: > > Hello, > > > > I am using code like this to define new style signals in the classes of > > my > > > application. > > > &

[PyQt] Issue installing PyQt4 installer on Win

2011-04-01 Thread Detlev Offenbach
as well. Kind Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] How to disconnect all connected signals of an object

2011-04-13 Thread Detlev Offenbach
ments QObject.disconnect(QObject, SIGNAL(), callable): not enough arguments" According to the Qt documentation that should work. Please note, that my code uses new-style signal/slots. Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de __

Re: [PyQt] Issue installing PyQt4 installer on Win

2011-04-17 Thread Detlev Offenbach
On Sonntag, 17. April 2011, Phil Thompson wrote: > On Fri, 1 Apr 2011 18:17:41 +0200, Detlev Offenbach > > wrote: > > Hello, > > > > I tried to install PyQt4 via the installer on an Windows machine as a > > normal > > user. The installation worked fin

Re: [PyQt] Monkeypatching QWebPage.userAgentForUrl

2011-05-12 Thread Detlev Offenbach
_()) > > Somehow it seems, that the my patched method is never called. > > What could be the reason? > > thanks in advance for any explanations or suggestions how to change the > user agent 'globally' Why do you try to monkeypatch it? Subclassing QWeb

Re: [PyQt] Links in QMessageBox.about() not working

2011-05-18 Thread Detlev Offenbach
> application. They do work in the kmail kde about box. It is also working > on my windows install, but I forget the exact versions and am in linux at > the moment. I can confirm this issue for Kubuntu 11.4. It works on other Linux flavours (like openSUSE) and Win systems. Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] stand alone QFileDialog

2011-05-30 Thread Detlev Offenbach
; > look for QFileDialog. > > http://doc.trolltech.com/4.7/qfiledialog.html and > > http://www.riverbankcomputing.com/static/Docs/PyQt4/html/python_v3.html#q > > filedialog > > > > w best regards, > > Wilbert Berendsen > > ___ > PyQt mailing listPyQt@riverbankcomputing.com > http://www.riverbankcomputing.com/mailman/listinfo/pyqt -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] stand alone QFileDialog

2011-05-30 Thread Detlev Offenbach
int('finished') > Although a bit large I attached my ini file for using Python3. > > On 05/30/2011 10:23 AM, Detlev Offenbach wrote: > > On Sonntag, 29. Mai 2011, Janwillem van Dijk wrote: > >> Thanks for paying attention to my question. It was about as far as

Re: [PyQt] Pylupdate4 does not parse tr(u"") ?

2011-06-10 Thread Detlev Offenbach
t; pylupdate4 -verbose WaspCore/Alarms/BATable.py -ts test.ts > I get > Updating 'test.ts'... > Found 2 source texts (0 new and 2 already existing) > > So it seems that pylupdate4 does NOT parse tr(u"") stuff. Is it by design? > Sorry but I can't dive into it at present. > > Python 2.6.6 > QT 4.7.1 > PyQt 4.8.3 > Linux 2.6 Have you tried it with trUtf8()? Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] QHostAddress is missing a method

2011-07-16 Thread Detlev Offenbach
Hello, I think the QHostAddress mappings are missing the method "toIPv6Address". If I am right, would it be possible to add it? Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputin

Re: [PyQt] QHostAddress is missing a method

2011-07-27 Thread Detlev Offenbach
On Dienstag, 26. Juli 2011, Phil Thompson wrote: > On Sat, 16 Jul 2011 18:11:04 +0200, Detlev Offenbach > > wrote: > > Hello, > > > > I think the QHostAddress mappings are missing the method > > "toIPv6Address". > > > If I > > am r

Re: [PyQt] QHostAddress is missing a method

2011-07-28 Thread Detlev Offenbach
On Mittwoch, 27. Juli 2011, Phil Thompson wrote: > On Wed, 27 Jul 2011 18:57:53 +0200, Detlev Offenbach > > wrote: > > On Dienstag, 26. Juli 2011, Phil Thompson wrote: > >> On Sat, 16 Jul 2011 18:11:04 +0200, Detlev Offenbach > >> > >> wrote

[PyQt] Help needed for eric4/5

2011-09-02 Thread Detlev Offenbach
Hello, as all of you know eric4/5 is an IDE for Python and Ruby. The Ruby debugger backend does not work for ruby 1.9 anymore. Unfortunately I am not very good in ruby. I need help in fixing this issue. Volunteers please contact me. Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de

Re: [PyQt] Small problem storing a list in QSettings

2011-09-04 Thread Detlev Offenbach
@param value value to be converted @return converted data """ if value is None: return [] elif not isinstance(value, list): return [value] else: return value At that time I didn't find a better solution and it works well for quite some time now. Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Professional IDE

2011-09-07 Thread Detlev Offenbach
tant" plug- in via the respective dialogs and make it the autocompletion and calltips provider (via the config dialog). Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] ANN: eric 4.4.18 released

2011-10-02 Thread Detlev Offenbach
Hi, I just uploaded eric 4.4.x. It is a maintenance release fixing some bugs. It is available via the eric web site. http://eric-ide.python-projects.org/index.html Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de -- Detlev Offenbach det...@die-offenbachs.de

[PyQt] ANN: eric 5.1.6 released

2011-10-02 Thread Detlev Offenbach
Hi, I just uploaded eric 5.1.6. It is a maintenance release fixing some bugs. It is available via the eric web site. http://eric-ide.python-projects.org/index.html Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing list

[PyQt] ANN: eric 4.4.18 released

2011-10-02 Thread Detlev Offenbach
Hi, I just uploaded eric 4.4.18. It is a maintenance release fixing some bugs. It is available via the eric web site. http://eric-ide.python-projects.org/index.html Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing list

[PyQt] Issue with pyqtSignal

2011-11-04 Thread Detlev Offenbach
value given in the emit call. How can I correct my code (code i within eric4/5). Regards, Detlev Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Issue with pyqtSignal

2011-11-05 Thread Detlev Offenbach
Am 04.11.2011 um 18:04 schrieb Phil Thompson: > On Fri, 4 Nov 2011 11:23:07 +0100, Detlev Offenbach > wrote: >> Hello, >> >> I am defining a signal in one of my classes like this. >> >>tabRelocateRequested = pyqtSignal(int, int, int) >> >>

Re: [PyQt] Issue with pyqtSignal

2011-11-05 Thread Detlev Offenbach
Am 05.11.2011 um 14:48 schrieb Phil Thompson: > On Sat, 5 Nov 2011 10:05:45 +0100, Detlev Offenbach > wrote: >> Am 04.11.2011 um 18:04 schrieb Phil Thompson: >> >>> On Fri, 4 Nov 2011 11:23:07 +0100, Detlev Offenbach >>> wrote: >>>> Hello

[PyQt] Issue on Mac OS X showing application name

2011-11-05 Thread Detlev Offenbach
ich is 'About Python' instead of 'About eric5'. What am I coin wrong? Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Translation updates needed for eric4 4.5

2011-12-04 Thread Detlev Offenbach
of 7441, 71% zh_CN.GB23126308 of 7441, 84.8% Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] ANN: eric 4.4.19 released

2011-12-04 Thread Detlev Offenbach
Gui > > On Sun, Dec 4, 2011 at 9:42 PM, detlev wrote: > > Hi, > > > > I just uploaded eric 4.4.19. It is a maintenance release fixing some > > bugs. It > > is available via the eric web site. > > > > http://eric-ide.python-projects.org/index.

[PyQt] PyQt and Qt 4.8

2011-12-17 Thread Detlev Offenbach
Hello, Is PyQt ready for use with recently released Qt 4.8? Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] My app crashed every time after upgrading to PyQt4.9

2011-12-28 Thread Detlev Offenbach
up my app in the Terminal.app like this: > > $python my_app.py > > I got the crash window popped up, i copied the content of the crash > information and attached it in this mail. > Hope someone could help. > > Thanks. > > Gui > > >

Re: [PyQt] My app crashed every time after upgrading to PyQt4.9

2011-12-28 Thread Detlev Offenbach
Hi, do you have a short recipe on how to get DBus on Mac? Detlev Am 28.12.2011 um 13:55 schrieb Phil Thompson: > On Wed, 28 Dec 2011 13:41:08 +0100, Detlev Offenbach > wrote: >> Hello, >> >> I tried using Qt 4.8.0 on Mac as well. Trying to start Qt Designer >>

Re: [PyQt] My app crashed every time after upgrading to PyQt4.9

2011-12-28 Thread Detlev Offenbach
Am 28.12.2011 um 19:34 schrieb Phil Thompson: > On Wed, 28 Dec 2011 15:29:00 +0100, Detlev Offenbach > wrote: >> Hi, >> >> do you have a short recipe on how to get DBus on Mac? > > Install MacPorts. > > Install dbus... > > sudo port install dbus &g

[PyQt] Gesture programming in PyQt

2012-01-04 Thread Detlev Offenbach
= QGestureRecognizer.registerRecognizer(cls.__instance) return cls.__type --END CODE-- Regards, Detlev Detlev Offenbach det...@die-offenbachs.de signature.asc Description: Message signed with OpenPGP using GPGMail ___ PyQt mailing listPyQt

Re: [PyQt] Gesture programming in PyQt

2012-01-05 Thread Detlev Offenbach
Am 04.01.2012 um 20:04 schrieb Phil Thompson: > On Wed, 4 Jan 2012 19:46:45 +0100, Detlev Offenbach > wrote: >> Hello, >> >> does anybody have experience in gesture programming with PyQt? I am > trying >> to program a custom gesture re

Re: [PyQt] Gesture programming in PyQt

2012-01-08 Thread Detlev Offenbach
Am Samstag, 7. Januar 2012, 18:31:16 schrieb Phil Thompson: > On Sat, 7 Jan 2012 15:33:08 +0100, Detlev Offenbach > > wrote: > > Hi Phil, > > > > can you test my little test script on your side? I tried it over here > > with > > > Python 3.2.2, Qt 4.7

Re: [PyQt] Gesture programming in PyQt

2012-01-09 Thread Detlev Offenbach
Am Montag, 9. Januar 2012, 09:58:39 schrieb Phil Thompson: > On Sun, 08 Jan 2012 18:05:52 +0100, Detlev Offenbach > > wrote: > > Am Samstag, 7. Januar 2012, 18:31:16 schrieb Phil Thompson: > >> On Sat, 7 Jan 2012 15:33:08 +0100, Detlev Offenbach > >

Re: [PyQt] Gesture programming in PyQt

2012-01-10 Thread Detlev Offenbach
Am Montag, 9. Januar 2012, 22:17:45 schrieb Phil Thompson: > On Mon, 09 Jan 2012 19:11:18 +0100, Detlev Offenbach > > wrote: > > Am Montag, 9. Januar 2012, 09:58:39 schrieb Phil Thompson: > >> On Sun, 08 Jan 2012 18:05:52 +0100, Detlev Offenbach > >> > >

Re: [PyQt] [Eric] Installation Path Problems Python 2.7 and 3.2

2012-01-18 Thread Detlev Offenbach
endancyChecks > exit (5) > File "C:\Python32\eric5-5.1.8\install.py". line 48. in exit > input('Press enter to continue.. _') > File "", line 0 > ^ > SyntaxError: unexpected EOF while parsing > > c:\Python32\eric5-5 .1.8> > > Robert > >

[PyQt] Issue with QFtp

2012-02-17 Thread Detlev Offenbach
Hi, there is an issue with QFtp. This module includes an enum QFtp.Command, that has a member called QFtp.None. However, if that is used it causes a syntax error (None is a keyword). Therefore it should be changed to QFtp.None_. Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de

Re: [PyQt] ANN: eric 5.2.0 released

2012-02-18 Thread Detlev Offenbach
the zoom factor > > > > - Web Browser > > > > -- added the "Do Not Track" feature > > -- added code to indicate invalid SSL certificates in the URL entry > > and > > > > the > > > > SSL info dia

[PyQt] Need help using QWebPluginFactory

2012-02-20 Thread Detlev Offenbach
right", "credits" or "license" for more information. >>> from PyQt4.QtWebKit import QWebPluginFactory >>> p=QWebPluginFactory.Plugin() >>> p >>> p.mimeTypes [] >>> mt=QWebPluginFactory.MimeType >>> p.mimeTyp

Re: [PyQt] pylupdate4 issue

2012-02-26 Thread Detlev Offenbach
in many subdirecories which > is very exhausting to write manually. > > Any ideas guys? > > -- > Best Regards > Muhammad Bashir Al-Noimi > My Blog: http://mbnoimi.net > So, You can easily write a python script which will create the .pro file for > you. N

Re: [PyQt] Designer source

2012-03-08 Thread Detlev Offenbach
ders from QtDesigner > for the necessary functions. You could of course simply wrap that > private API in a simple class and expose that via sip to Python and then > do all the rest in Python. If somebody would do that and maintain it over time I would be the first to use to integrate

Re: [PyQt] Designer source

2012-03-25 Thread Detlev Offenbach
arch 2012 23:08:09 schrieb Andreas Pakulat: > >> > On 08.03.12 19:42:39, Detlev Offenbach wrote: > >> > > Am Donnerstag, 8. März 2012, 09:49:41 schrieb Andreas Pakulat: > >> > > > On 08.03.12 09:35:51, Andreas Pakulat wrote: > >> > > > > On 0

[PyQt] Strange behavior with new-style signals and slots

2012-04-01 Thread Detlev Offenbach
self.project.projectPropertiesChanged.is_connected(self.__projectPropertiesChanged) Another consequence of the double connection is, that the slot is called twice when the signal is emitted. Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt

[PyQt] Another strange observation with new-style signals

2012-04-01 Thread Detlev Offenbach
generate a test script to show this. I am using Qt 4.8.1 and latest PyQt4 and sip snapshots. Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo

[PyQt] URL change of eric source code repositories

2012-04-14 Thread Detlev Offenbach
Hello, please note that the URL of the eric repositories has changed. They are available via http://die-offenbachs.homelinux.org:4/, i.e. the added port. Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing listPyQt

[PyQt] ANN: eric 4.5.3 released

2012-05-01 Thread Detlev Offenbach
Hi, I just uploaded eric 4.5.3. It is a maintenance release fixing some bugs. It is available via the eric web site. http://eric-ide.python-projects.org/index.html Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing list

[PyQt] ANN: eric 5.2.2 released

2012-05-01 Thread Detlev Offenbach
Hi, I just uploaded eric 5.2.2. It is a maintenance release fixing some bugs. It is available via the eric web site. http://eric-ide.python-projects.org/index.html Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de ___ PyQt mailing list

Re: [PyQt] qwidget launching problem

2012-05-06 Thread Detlev Offenbach
un time errors. > > What is the reason of this difference? The difference is called Garbage Collection. In the later case the newly created object is garbage collected as sson as the method returns. You have to keep a local reference as long as the widget is needed. Regards, Detlev -- Detl

Re: [PyQt] Possible bug with new signal-slot connection

2012-05-17 Thread Detlev Offenbach
___ > PyQt mailing listPyQt@riverbankcomputing.com > http://www.riverbankcomputing.com/mailman/listinfo/pyqt -- Detlev Offenbach det...@die-offenbachs.de___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Qt5 roadmap?

2012-06-17 Thread Detlev Offenbach
. Backwards compatibility with PyQt4 will not be > maintained. Is it planned to include a tool converting existing code from PyQt4 to PyQt5 (something like 2to3 for Python)? Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Qt5 roadmap?

2012-06-18 Thread Detlev Offenbach
On Sunday 17 June 2012, 20:11:34 Phil Thompson wrote: > On Sun, 17 Jun 2012 19:38:13 +0200, Detlev Offenbach > > wrote: > > On Sunday 17 June 2012, 18:24:55 Phil Thompson wrote: > >> On Sat, 16 Jun 2012 07:27:11 -0700, David Cortesi > > > > >> wrot

[PyQt] Issue building PyQt4 4.9.2 on Mac OS X Lion

2012-06-23 Thread Detlev Offenbach
sure you have a working Qt v4 qmake on your PATH or use the -q argument to explicitly specify a working Qt v4 qmake. The same command works fine for PyQt4 4.9.1. Any help is appreciated. Regards, Detlev Detlev Offenbach det...@die-offenbachs.de

[PyQt] Crash of latest PyQt4 on Mac OS X

2012-06-26 Thread Detlev Offenbach
Hello, entering this line into a Python3 shell crashes with a segfault on Mac OS X Lion over here. >>> from PyQt4 import QtHelp I just compiled all the latest packages of QScintilla, sip and PyQt4. Qt is 4.8.2. What did I do wrong? Regards, Detlev Detlev Offenbach det...@die-offe

Re: [PyQt] Crash of latest PyQt4 on Mac OS X

2012-06-26 Thread Detlev Offenbach
Hello, some additional info. PyQt4 4.9.1 works fine with latest QScintilla and sip. That means means, that the issue is definitely inside PyQt4 4.9.3. Regards, Detlev Am 26.06.2012 um 19:03 schrieb Detlev Offenbach: > Hello, > > entering this line into a Python3 shell crashes with a

Re: [PyQt] Building PyQt.

2012-07-07 Thread Detlev Offenbach
ssues. > When I tried to build PyQt by running 'nmake install', I get a low memory > message and after a while, the build goes into an endless loop displaying > the following message: NMAKE U1077: '"\nmake.exe"': return > code '0x2'

[PyQt] PyQt4 and Qt5

2012-09-04 Thread Detlev Offenbach
PyQt4.QtHelp PyQt4.QtSql PyQt4.QtSvg PyQt4.uic Regards, Detlev -- Detlev Offenbach det...@die-offenbachs.de___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] PyQt4 and Qt5

2012-09-04 Thread Detlev Offenbach
On Tuesday 04 September 2012, 09:30:06 Phil Thompson wrote: > On Tue, 04 Sep 2012 09:44:08 +0200, Detlev Offenbach > > wrote: > > Hello, > > > > I would like to know the plan about the PyQt support for Qt 5.0 because > > I > > > would like to start

Re: [PyQt] Dilemma: Pqt or wxpython

2012-09-11 Thread Detlev Offenbach
me into taking over a non- functional Python debugger with a PyQt interface. This was the start of my PyQt envolvement. Thanks for that, Phil! > > Phil > ___ > PyQt mailing listPyQt@riverbankcomputing.com > http://www.riverban

Re: [PyQt] [QScintilla] - changing font to editor by settings dialog

2012-10-11 Thread Detlev Offenbach
://linkedin.com/in/larosasalvatore twitter: @lrssvt skype: s.larosa IRC: lrssvt on freenode -- Detlev Offenbach det...@die-offenbachs.de___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] call method doesn't work if it has QScintilla instance

2012-10-14 Thread Detlev Offenbach
without qgis package! I attached a new package, Could you give a try at it ? (run sciPythonEditor.py) Thank you very much! Regards, -SL PS: can I clone the repository to install trunk version of eric like to github repository ? Where/How do it ? 2012/10/14 Detlev Offenbach Hello, I don&#

Re: [PyQt] problem running pyqt on xubuntu

2012-10-20 Thread Detlev Offenbach
- > Mark Summerfield, Qtrac Ltd, www.qtrac.eu >C++, Python, Qt, PyQt - training and consultancy >"Rapid GUI Programming with Python and Qt" - ISBN 0132354187 >http://www.qtrac.eu/pyqtbook.html > _______ > P

[PyKDE] ANN: new eric3 snapshot available

2004-01-06 Thread Detlev Offenbach
, Detlev -- Detlev Offenbach [EMAIL PROTECTED] ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Re: [PyKDE] PyQT 3.9 and QT 3.2.3 and the reparent method

2004-01-13 Thread Detlev Offenbach
t; b = QWidget() > >>> b.show() > >>> b.repaint(1) > >>> a = QWidget() > >>> a.reparent(b, QPoint(0,0),1) > > Traceback (most recent call last): > File "", line 1, in ? > SystemError: error return without exception set > >

Re: [PyKDE] PyQT 3.9 and QT 3.2.3 and the reparent method

2004-01-13 Thread Detlev Offenbach
Hi, that's what I mean. Detlev Am Dienstag, 13. Januar 2004 18:55 schrieb Rob Knapp: > I'm hoping you mean the 3.9 snapshots, not the 4.0 snapshots... I'm > stuck with python 2.2 for a little while longer here. > > Thanks for the help. I will check into it. > >

[PyKDE] New eric3 snapshot available

2004-01-31 Thread Detlev Offenbach
epend on xml.sax anymore thanks to the XMLFilter library. Regards Detlev -- Detlev Offenbach [EMAIL PROTECTED] ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Re: [PyKDE] eric3 preferences traceback, coredump on FreeBSD 5

2004-02-29 Thread Detlev Offenbach
t; > This is a bug in eric. The attached patch fixes the "obvious" > problems, but might introduce others. Ouch, that bug is really obvious. How come, it doesn't occur under Linux using sip 3? Nevertheless, I will include the fix. > > Phil Detlev -- Detlev Offenbach [EMAIL PROTECTED] ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Re: [PyKDE] eric3 preferences traceback, coredump on FreeBSD 5

2004-03-04 Thread Detlev Offenbach
ult (core dumped) ./eric3 > > The core file is 16 MB. Let me know if you'd like any other info. > > Thanks, > > David > > On Wed, 2004-03-03 at 02:43, Detlev Offenbach wrote: > > Hi, > > > > yesterday I uploaded a new snapshot of eric3, which includes

Re: Fwd: [PyKDE] Eric 3.3 : Keyboard handling under Windows XP

2004-03-09 Thread Detlev Offenbach
Hi, thanks for your support. Detlev Am Montag, 8. März 2004 18:00 schrieb Andrew Bushnell: > Detlev, > > I have tried it here on a couple of differenct XP systems, and in all > cases, the characters seemed to work fine, I am unable to replicate > any problem. > > - Andrew

Re: [PyKDE] eric not gettting focus (macos x)

2004-03-14 Thread Detlev Offenbach
e executable has to be bundled inside an application bundle, which is just a bunch of directories.  So once I put the eric3 shell script into an application bundle, it ran fine and gained the window focus." Hope this works for you as well Detlev -- Detlev Offenbach [EMAIL PROTECTED] __

[PyKDE] ANN: new eric3 snapshot

2004-03-14 Thread Detlev Offenbach
about your opinions. Regards Detlev -- Detlev Offenbach [EMAIL PROTECTED] ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

[PyKDE] ANN: first release candidate of eric3 3.4

2004-03-21 Thread Detlev Offenbach
and send comments. Regards Detlev -- Detlev Offenbach [EMAIL PROTECTED] ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Re: [PyKDE] ANN: first release candidate of eric3 3.4

2004-03-23 Thread Detlev Offenbach
tor is using. This was how it was working. > > I am working on a solution locally, but thought I would send you a > note to let you know. > > Regards, > > Andrew > > Detlev Offenbach wrote: > > Hello, > > > > I have just uploaded a new snapshot of eric3

Re: [PyKDE] QTextBrowser: no mimesource for

2004-03-30 Thread Detlev Offenbach
example if possible. > > Don't know what your problem is, but I have written something that > uses a QTextBrowser and extends it somewhat: > > "PyBrowser: a nicer QTextBrowser" :-) > > http://www.pycs.net/lateral/stories/17.html -- Detlev Offenbach [EMAIL PROTECTED] ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Re: [PyKDE] Error building Eric on mandrake 10, kde 3.2

2004-03-31 Thread Detlev Offenbach
a.so.3 library but I the library exists > in /usr/lib/qt3/lib. > > I used qscintilla-1.54-x11.gpl.1,2.tar, PyQt-x11-gpl-3.11.tar, > sip-3.10.1.tar and also tried PyQt-x11-gpl-snapshot-20040330.tar with > no luck. Any help is really appreciated. > > cheers, &

Re: [PyKDE] Error building Eric on mandrake 10, kde 3.2

2004-04-01 Thread Detlev Offenbach
ski > > On Wednesday 31 March 2004 12:02 pm, Detlev Offenbach wrote: > > Hi, > > > > just add a link to libqscintilla.so.3 in /usr/lib and it will work. > > This is not an eric3 fault, it is a quirk in the configuration of > > the system. > > > > c

Re: [PyKDE] eric3.3.1 - autoindent doesn't work

2004-04-01 Thread Detlev Offenbach
e I would need detailed information because over here it is working ok. Detlev -- Detlev Offenbach [EMAIL PROTECTED] ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Re: [PyKDE] eric3.3.1 - autoindent doesn't work

2004-04-02 Thread Detlev Offenbach
Am Donnerstag, 1. April 2004 19:21 schrieb Piotr Kalinowski: > Dnia czw 1. kwietnia 2004 19:11, Detlev Offenbach napisał: > > What exactly is not working? If you are missing autoindentation > > after a line ending in ':', then you won't find it in eric 3.3.1. In >

Re: [PyKDE] Error building Eric on mandrake 10, kde 3.2

2004-04-02 Thread Detlev Offenbach
Am Donnerstag, 1. April 2004 19:39 schrieb Phil Thompson: > On Thursday 01 April 2004 6:22 pm, Chris Kacoroski wrote: > > On Thursday 01 April 2004 09:05 am, Detlev Offenbach wrote: > > > What kind of support are you looking for. If it's just syntax > > > highli

[PyKDE] ANN: eric3 3.4 released

2004-04-03 Thread Detlev Offenbach
gards, Detlev -- Detlev Offenbach [EMAIL PROTECTED] ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

[PyKDE] ANN: eric3 3.4.1 released

2004-04-03 Thread Detlev Offenbach
Hi, I have just uploaded version 3.4.1 of eric3. This fixes a serious bug I got aware of shortly after the 3.4 release. I am sorry for any inconveniences caused by this. Detlev -- Detlev Offenbach [EMAIL PROTECTED] ___ PyKDE mailing list[EMAIL

  1   2   3   4   5   6   7   8   9   10   >