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

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

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

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 underneath

[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 *

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 underneath

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

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 what

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.titleSelected)

[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.0).

[PyQt] Change in Snapshot Version Numbers

2008-01-23 Thread Phil Thompson
, 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. Although I've no immediate plans to do so it will allow me

[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 'Account

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

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 editTextChanged on the