[PyQt] Re: Introduce myself

2008-01-23 Thread Joshua Kugler
Rémy HUBSCHER wrote: > HTH : What does it means ? http://www.netlingo.com/lookup.cfm?term=HTH j ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Proposal for New-style Signals

2008-01-23 Thread David Boddie
On Mon, 21 Jan 2008 15:20:16 +, Phil Thompson wrote: > I plan to make changes in two stages. > > Stage 1 [...] > Question: It would be possible to allow (but not require) short-circuit > signals to be predefined using __pyqtSignals__.  [dis]connect() and emit() > could then check the name (b

Re: [PyQt] signal editTextChanged

2008-01-23 Thread Kerri Reno
Oh, duh! Thanks Andreas! On 1/23/08, Andreas Pakulat <[EMAIL PROTECTED]> wrote: > > On 23.01.08 15:37:44, Kerri Reno wrote: > > I have a QComboBox, and I want the users to be able to edit the text, > and I > > want to know when the text has changed. I'm trying to use the signal > > editTextChang

Re: [PyQt] signal editTextChanged

2008-01-23 Thread Andreas Pakulat
On 23.01.08 15:37:44, Kerri Reno wrote: > I have a QComboBox, and I want the users to be able to edit the text, and I > want to know when the text has changed. I'm trying to use the signal > editTextChanged on the comboBox, but it doesn't seem to do anything. > Following is example code that illus

[PyQt] signal editTextChanged

2008-01-23 Thread Kerri Reno
I have a QComboBox, and I want the users to be able to edit the text, and I want to know when the text has changed. I'm trying to use the signal editTextChanged on the comboBox, but it doesn't seem to do anything. Following is example code that illustrates what I mean. The line shows '' and if yo

[PyQt] Change in Snapshot Version Numbers

2008-01-23 Thread Phil Thompson
to the *next* release. For example, tonight's SIP snapshot will be "sip-4.7.4-snapshot-20080123". This is also reflected in version numbers embedded in code. For example the value of SIP_VERSION will be 0x040704. Of course, v4.7.4 may never get released if v4.8 is ready sooner. Altho

[PyQt] QSqlQuery / Firebird: alternating two prepared queries

2008-01-23 Thread Sibylle Koczian
Hello, the script below should take the strings in the list newData and put the contents into two different tables of the Firebird example database "employee.fdb". Strings starting with "C" belong to the "customer" table and the insert statement returns the newly created cust_no (new in firebird 2

Re: [PyQt] Proposal for New-style Signals

2008-01-23 Thread Andy Davidoff
On Jan 21, 2008 10:20 AM, Phil Thompson <[EMAIL PROTECTED]> wrote: > Question: An alternative approach would be to define a "default" signal (in > the .sip files) which would identify the overload to be used with the "short > form". As most Qt signals aren't overloaded this would mean that the typ

Re: [PyQt] connection to list view and combo pyqt

2008-01-23 Thread David Boddie
On Wed Jan 23 18:01:22 GMT 2008, Peter Liedler wrote: > > You need to connect the selection model's signal to the titleSelected() > > slot: > > > > self.connect(self.listViewTitle.selectionModel(), > > SIGNAL("selectionChanged(QItemSelection, QItemSelection)"), > > self.titleS

Re: [PyQt] connection to list view and combo pyqt

2008-01-23 Thread Peter Liedler
Sorry, no sucess here. I don't get it. Peter On Mit, 2008-01-23 at 18:28 +0100, David Boddie wrote: > On Wed Jan 23 17:08:15 GMT 2008, Peter Liedler wrote: > > > I am still fighting to get connected to a selectionChanged signal of a > > listView. > > I think there's been some confusion about w

Re: [PyQt] connection to list view and combo pyqt

2008-01-23 Thread David Boddie
On Wed Jan 23 17:08:15 GMT 2008, Peter Liedler wrote: > I am still fighting to get connected to a selectionChanged signal of a > listView. I think there's been some confusion about what actually emits the selectionChanged() signal. It's actually the list view's selection model: http://www.riverb

Re: [PyQt] connection to list view and combo pyqt

2008-01-23 Thread Peter Liedler
I am still fighting to get connected to a selectionChanged signal of a listView. If I understand the qt documentation, the QItemSelection is generated automatically by filling the index to the model and defining the model to the list. I think I do so by: Defining the model class: class myListMod

Re: [PyQt] Proposal for New-style Signals

2008-01-23 Thread Aaron Digulla
Phil Thompson schrieb: > Signals are passed to QObject's [dis]connect() and emit() methods. > Currently, > If the signal is invalid then no indication is provided to that effect. If a > simple string is used instead of SIGNAL() then an invalid Qt signal will > cause a Python exception to be

Re: [PyQt] Multi-sectioned QTableWidget capability...

2008-01-23 Thread David Boddie
On Wed Jan 23 15:01:20 GMT 2008, Aaron Digulla wrote: > Vince Fulco schrieb: > > Dear PyQt experts- > > > > Can someone point me to a good working example of a QTableWidget with > > multiple sections built into one table. I.E. I would like to display > > raw observations, a set of summary data u

Re: [PyQt] Running PyQt-x11-gpl-3.17.4: undefined symbol FT_Load_Sfnt_Table

2008-01-23 Thread Phil Thompson
On Wednesday 23 January 2008, Michael Penkov wrote: > Hello, > > I've just built sip-4.7.3 and PyQt 3.17.4. > > I'm getting the following error while trying to run the examples: > > [EMAIL PROTECTED]:~/src/PyQt-x11-gpl-3.17.4$ python examples2/aclock.py > Traceback (most recent call last): >

Re: [PyQt] Introduce myself

2008-01-23 Thread V. Armando Sole
Hi At 01:58 23/01/2008 -0800, Chris Dunscombe wrote: 2. Certainly using py2exe your users will not need to compile Qt/PyQt etc. As for cx_freeze and py2app I'm not sure. End users do not need to compile anything either with cx_freeze or py2app. They just run the scripts. Armando ___

[PyQt] Running PyQt-x11-gpl-3.17.4: undefined symbol FT_Load_Sfnt_Table

2008-01-23 Thread Michael Penkov
Hello, I've just built sip-4.7.3 and PyQt 3.17.4. I'm getting the following error while trying to run the examples: [EMAIL PROTECTED]:~/src/PyQt-x11-gpl-3.17.4$ python examples2/aclock.py Traceback (most recent call last): File "examples2/aclock.py", line 4, in ? from qt import * Impor

Re: [PyQt] Multi-sectioned QTableWidget capability...

2008-01-23 Thread Aaron Digulla
Vince Fulco schrieb: > Dear PyQt experts- > > Can someone point me to a good working example of a QTableWidget with > multiple sections built into one table. I.E. I would like to display > raw observations, a set of summary data underneath it and a second set > of different summary data underneat

Re: [PyQt] Introduce myself

2008-01-23 Thread Rémy HUBSCHER
Hi I am using the GPL version of course. HTH : What does it means ? Natim Le 23 janv. 08 à 09:58, Chris Dunscombe a écrit : Hi, Just a couple of points: 1. Are you using GPL or commercial versions? If commercial then you will also need to use a package called VendorID to stop you from al

Re: [PyQt] Introduce myself

2008-01-23 Thread Michael Towers
Rémy HUBSCHER wrote: Hello, I am a new programmer un PyQt4 and I am looking to deploy my PyTalk jabber client on Windows, Linux and Mac OS X. I heard that I will have to use py2exe, cx_freeze and py2app. Could somebody explain exactly how to do ? I just need a setup.py file of each to unders

Re: [PyQt] Introduce myself

2008-01-23 Thread Chris Dunscombe
Hi, Just a couple of points: 1. Are you using GPL or commercial versions? If commercial then you will also need to use a package called VendorID to stop you from allowing your users to become developers in Qt/PyQt. See the Riverbank website for details. 2. Certainly using py2exe your users wil