Re: [PyQt] PocketPC port of PyQT4

2009-02-12 Thread Ingmar Steen
Hi, >From what I remember, wxPython doesn't work too well on PocketPC because of >memory issues (I once did a 'port' myself, http://wxpyce.wikispaces.com/) so >bringing that up as a reason to use wxPython on a public PyQt mailing list >seems a bit strange. While VensterCE is nice, it doesn't m

Re: [PyQt] QProcess arguments list problem

2007-11-21 Thread Ingmar Steen
On Nov 21, 2007 7:53 PM, kib2 <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using QProcess to launch some commands, no problem with basic ones, > ie to launch a LaTeX file with pdflatex I use: > > self.proc.start("pdflatex", QtCore.QStringList(["my_file.tex"])) > > Now, I wanted to launch the following

Re: [PyQt] Decimal separator Problem

2007-11-18 Thread Ingmar Steen
On Nov 18, 2007 8:44 PM, David Boddie <[EMAIL PROTECTED]> wrote: > On Tue Nov 13 22:43:29 GMT 2007, Linos wrote: > > > Ok, the real problem here it is that i cant use the dot in the numpad to > > begin decimal numbers, i have checked and spanish locale use comma like > > decimal separator, i was co

Re: [PyQt] QComboBox and QVariant in pyqt4 ?

2007-11-07 Thread Ingmar Steen
On Nov 7, 2007 5:07 PM, alteo_gange <[EMAIL PROTECTED]> wrote: > Hi, > > I try to include an personal identify (or key) in ComboBox items. I've thought > to use QVariant: > > > > #!/usr/bin/python > # -*- coding: Utf-8 -*- > > import sys > from PyQt4.QtGui impor

Re: [PyQt] comboBox inside a statusBar

2007-11-07 Thread Ingmar Steen
On Nov 7, 2007 10:57 AM, kib2 <[EMAIL PROTECTED]> wrote: > Hi, > > I've just tried to add a comboBox inside my statusBar of my Main > application like this : > > def manageStatusBar(self): > self.combo = QtGui.QComboBox(self) > self.langList = QtCore.QStringList(["a","b"

Re: [PyQt] Question about QTimer and QThreads

2007-10-28 Thread Ingmar Steen
On 10/28/07, Darren Dale <[EMAIL PROTECTED]> wrote: > I am trying to understand how to run a second event loop using a qthread. The > Qt docs indicate this is possible, but I haven't found any examples. I have a > simple example that I think should work, but doesn't. When I run my thread's > exec_(

Re: [PyQt] [PyQt3] QPen issues

2007-05-14 Thread Ingmar Steen
On 5/14/07, Hans-Peter Jansen <[EMAIL PROTECTED]> wrote: Am Montag, 14. Mai 2007 09:56 schrieb Phil Thompson: > On Sunday 13 May 2Hmm, shouldn't this code behave in the same way too, than: void paintEvent(QPaintEvent* event) { QPainter p(this); QPen pn=p.pen(); pn.set

Re: [PyQt] PyQt4 dbus mainloop assertion error

2007-04-25 Thread Ingmar Steen
On 4/25/07, Simon Edwards <[EMAIL PROTECTED]> wrote: Hi, Ingmar Steen wrote: > I'm trying to use the new PyQt4 dbus mainloop, but it crashes with an > assertion error when I try to get an object from the bus. I'm using Sip > 4.6, > PyQt4.2, Qt 4.2.3, Python 2.5.1

Re: [PyQt] PyQt4 dbus mainloop assertion error

2007-04-25 Thread Ingmar Steen
On 4/25/07, Phil Thompson <[EMAIL PROTECTED]> wrote: On Wednesday 25 April 2007 3:44 pm, Ingmar Steen wrote: > Hi, > > I'm trying to use the new PyQt4 dbus mainloop, but it crashes with an > assertion error when I try to get an object from the bus. I'm using Sip >

[PyQt] PyQt4 dbus mainloop assertion error

2007-04-25 Thread Ingmar Steen
Hi, I'm trying to use the new PyQt4 dbus mainloop, but it crashes with an assertion error when I try to get an object from the bus. I'm using Sip 4.6, PyQt4.2, Qt 4.2.3, Python 2.5.1, DBus 1.0.2 and dbus-python 0.80.1. Am I doing something fundamentally insane or wrong? If I remove the QDBusQtMa