[PyKDE] (no subject)

2003-02-05 Thread François CORRIHONS



Hi,
 
My GUI looks different running on two differents machines 
(both with KDE). It is the same version of Linux.
I have set the style (Motif) and the font (times, 
11).
 
I don't understand. Is it something wrong with environment 
variables ?
 
Thanks,
François CORRIHONSApside Technologies58, avenue du 
Général Leclerc92100 Boulogne-BillancourtGSM: 06.75.24.73.51[EMAIL PROTECTED]http://www.apside.fr


Re: [PyKDE] (no subject)

2003-02-04 Thread Ingo Krabbe
On Tue, Feb 04, 2003 at 03:34:19PM +0100, François CORRIHONS wrote:
> Hi,
> 
> Is it possible to provide a terminal through an application built with PyQt ?
> 
> Thanks a lot,
> 

You can simply use stdin,stdout just as in C or in C++ (cout,cin).

This works at least for UNIX, when starting the Application through a
terminal.  Other solutions are to use PTY's.  I don't know how to drive
a terinal through WINDOZE.

BYE INGO

___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



[PyKDE] (no subject)

2003-02-04 Thread François CORRIHONS



Hi,
 
Is it possible to provide a terminal through an 
application built with PyQt ?
 
Thanks a lot,
François CORRIHONSApside Technologies58, avenue du 
Général Leclerc92100 Boulogne-BillancourtGSM: 06.75.24.73.51[EMAIL PROTECTED]http://www.apside.fr


[PyKDE] (no subject)

2002-12-11 Thread Pantxo Villa
OK,

I've installed:
- python 2.2.2
- qt-2.3.1 and qt-x11-free-3.0.4
- sip-3.4
- Pyqt-x11-gpl-3.4

on linux redhat 7.1  with GCC 2.96

qt examples are running correctly, but pyqt's not correctly...
some examples (like dclock.py) are running (I obtain the window) but
when I close I get a seg fault, and many are not running (I don't have
the frame) with the following message:

pure virtual method called
Abandon (core dumped)

I don't understand... could you help me please?


_
Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France

___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



Re: [PyKDE] (no subject)

2002-12-10 Thread Hans-Peter Jansen
On Tuesday 10 December 2002 12:34, Pantxo Villa wrote:
> Hi,
>
> I've installed Qt 3.0.4, SIP 3.4, PyQt 3.2.4 under redhat 7.1 (french)
> Qt examples are running, but not Pyqt's...
> with the message:
>
> pure virtual method called
> Abandon (core dumped)

You should always use corresponding sip and PyQt versions.

hp

___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



[PyKDE] (no subject)

2002-12-10 Thread Pantxo Villa
Hi,

I've installed Qt 3.0.4, SIP 3.4, PyQt 3.2.4 under redhat 7.1 (french)
Qt examples are running, but not Pyqt's...
with the message:

pure virtual method called
Abandon (core dumped)

Could you help me please ???


_
Envie de discuter en "live" avec vos amis ? Télécharger MSN Messenger
http://www.ifrance.com/_reloc/m la 1ère messagerie instantanée de France

___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



Re: [PyKDE] (no subject)

2002-11-22 Thread Phil Thompson
On Friday 22 November 2002 12:59 am, star gazer wrote:
> I am wondering if this is possible in pyqt.  I would
> like to create a line graph with the vertical axis 0 -
> 5 and the horizontal axis 0 - 500. I would then like
> to input a text file with 10 values pairs in it.  the
> X values are 0,50,100,150,200 etc (every 50) the Y
> values gradualy increase from 1 - 5 forming a linear
> line.  What I would like to be able to do is create
> the graph in pyqt and then "grab" the data points and
> move then in the Y axis only and use bspline curves at
> those points to reshape the line.  Then I would line
> to be able to create a new textfile with the refined
> data from every iteration on the x axis ie.
> 0,1,2,3,4,5,6,7,8,9,10,11 etc. The file would be 500
> lines long.
> I was wondering if this would be possible in pyqt.  I
> am using version 3.1 of Qt and the snapshot version of
> pyqt that compiles against 3.1.
>
> The key thing is the ability the interactivly move the
> original points and create a smooth curve and then
> generate the individual point data.
>
> Any kind of help would be greatly appreciated

Have a look at the canvas.py example included with PyQt and particularly the 
"Create Mesh" option of the "Edit" menu.

Also look at PyQwt.

Phil

___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



[PyKDE] (no subject)

2002-11-21 Thread star gazer
I am wondering if this is possible in pyqt.  I would
like to create a line graph with the vertical axis 0 -
5 and the horizontal axis 0 - 500. I would then like
to input a text file with 10 values pairs in it.  the
X values are 0,50,100,150,200 etc (every 50) the Y
values gradualy increase from 1 - 5 forming a linear
line.  What I would like to be able to do is create
the graph in pyqt and then "grab" the data points and
move then in the Y axis only and use bspline curves at
those points to reshape the line.  Then I would line
to be able to create a new textfile with the refined
data from every iteration on the x axis ie.
0,1,2,3,4,5,6,7,8,9,10,11 etc. The file would be 500
lines long. 
I was wondering if this would be possible in pyqt.  I
am using version 3.1 of Qt and the snapshot version of
pyqt that compiles against 3.1. 

The key thing is the ability the interactivly move the
original points and create a smooth curve and then
generate the individual point data. 

Any kind of help would be greatly appreciated

Star Gazer

__
Do you Yahoo!?
Yahoo! Mail Plus – Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



Re: [PyKDE] (no subject)

2002-06-12 Thread Phil Thompson

[EMAIL PROTECTED] wrote:

> Phil,
> 
> is it possible to run PyQt on Qt-3.0.4 embedded?


Not without changes to the .sip files.


> I have cheated:
> 
> (1) making a link libqt-mt.so to libqte-mt.so for
> the configure scripts
> (2) tried to use PyQt-3.0.4-Qtopia (fails because
> it expects Qt-2.3.1).
> (3) tried to use PyQt-3.0.4-Qt-3.0.4-X11 (fails
> because during linking, because it requires HANDLES
> to X11 stuff).
> 
> If it is possible to let sip generate source code
> for Qt-3.0.4 embedded, I can give it a try myself.
> If not, can you help me?


The way to do it is to grep the .h files for QWS specific changes and 
make corresponding changes to the .sip files. You may also need to add 
Qt3 specific features to versions.sip.

Phil

___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



[PyKDE] (no subject)

2002-06-12 Thread gvermeul

Phil,

is it possible to run PyQt on Qt-3.0.4 embedded?

I have cheated:

(1) making a link libqt-mt.so to libqte-mt.so for
the configure scripts
(2) tried to use PyQt-3.0.4-Qtopia (fails because
it expects Qt-2.3.1).
(3) tried to use PyQt-3.0.4-Qt-3.0.4-X11 (fails
because during linking, because it requires HANDLES
to X11 stuff).

If it is possible to let sip generate source code
for Qt-3.0.4 embedded, I can give it a try myself.
If not, can you help me?

Gerard




-
This message was sent using Endymion MailMan.
http://www.endymion.com/products/mailman/


___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



Re: [PyKDE] (no subject)

2002-06-06 Thread Hans-Peter Jansen

On Thu, 6 Jun 2002 09:26:32 GMT
"François CORRIHONS" <[EMAIL PROTECTED]> wrote:

> Hi, 
> 
> I have a problem: 
> 
> I want to use Qt Designer both on PC and XTerm. On XTerm, no problem. 
> 
> But on PC, a segmentation fault (core dumped) appears each time I try to
> start 
> Qt Designer. 
> I'm using a screen emulator to connect on Linux: Reflexion X (version
> 7.00). I 
> think the problem comes from that. 
>
> Could you help me please?? 

Parse error! Please rethink your problem and come back again.
Hint: PC is a synonym for a common hardware architecture, XTerm is a 
terminal emulation within the X Window System...

> Thanks a lot. 

Please insert coin to try again...

hp

___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



[PyKDE] (no subject)

2002-06-06 Thread François CORRIHONS

Hi, 

I have a problem: 

I want to use Qt Designer both on PC and XTerm. On XTerm, no problem. 

But on PC, a segmentation fault (core dumped) appears each time I try to
start 
Qt Designer. 
I'm using a screen emulator to connect on Linux: Reflexion X (version
7.00). I 
think the problem comes from that. 

Could you help me please?? 

Thanks a lot. 

 
__
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif


___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



[PyKDE] (no subject)

2001-12-30 Thread Felix D. Caballero



I would like to be put on mailing 
list.


[PyKDE] (no subject)

2001-09-23 Thread buysell114


ºÃ²úÆ·Ñ°´úÀí


Ò»¡¢ÆóÒµ±³¾°£º
   
¹ãÎ÷ͨÎåÖ޹ɷÝÓÐÏÞ¹«Ë¾½üÄêÒÀ¿¿¹ûľ¹Ï»ùµØºÍÆäÇ¿´óµÄ¿ÆÑÐÁ¦Á¿£¬×é֯ר¼Ò¶Ô¡°¹ûÏÊľ¹
Ïø¡±µÄÌáÁ¶ºÍÅäÖƽøÐпÎÌâÑо¿¡£Ñо¿Éú²ú³öÈ«ÐÂÒ»´ú¡°Ä¾¹Ïø¡±Ïû·ÑȺÌåµÄÌØÕ÷¼°Ä¾¹Ï
Ë®¹ûÊг¡µÄ×ÜÌå×´¿öºó¡£´Ó½ñÄêÆðÏòÈ«¹úÊг¡´ó¹æÄ£ÍƳö¡°É¤Ë¬¡±Ä¾¹ÏÈóºí²úÆ·¡£
¶þ¡¢²úÆ·½éÉÜ
¡°É¤Ë¬¡±Ä¾¹ÏÈóºíƬÊÇÓÃÏÖ´úÉúÎ﹤³Ì¼¼Êõ´Óľ¹ÏÖÐÌáÈ¡È»»îÐÔÎïÖÊ¡£
¡°Ä¾¹Ïø¡±º¬ÓÐÈËÌåËùÐèµÄ17ÖÖ°±»ùËᣬ¶àÖÖάÉúËØ¡£
¡°Ä¾¹Ïø¡±ÔÚÃÀ¹úÊг¡·Ç³£°º¹ó£¬¶øľ¹ÏÈ´ÊǸ۰Ą̈¼°¹ã¶«µØÇøµÄÉϵȱ£½¡²Ë¡£
   
ÒÔË®¹ûÌáÁ¶¶ø¾«Ö¶ø³ÉµÄÈóºíƬÊǵÚÒ»´Î³öÏÖÊг¡£¬ÈËÃÇÒòÑʺíÑס¢³¦Î¸Ñ×Ëù·¢³öµÄÒìζ£
¬¶¼Êǵ°°×ÖÊËù·¢³öµÄÒì棬¶øľ¹Ï¡°Ã¸¡±Äܹ»Ñ¸ËÙË®½â£¬¶Ìʱ¼äÄÚÏû³ýÑʺíÑ׺ÍÒì棬Òò
¶ø¡°É¤Ë¬¡±Ä¾¹ÏËØÈóºíƬ¶Ô×ÌÈó¿ÚÇ»¡¢ÑÊºí¡¢Ïû³ý¿Ú³ôÓÐÌØЧ¡£
Èý¡¢Êг¡¶¨Î»£ºÎª20£­45ËêµÄÖÐÇàÄêÈË¡£
ËÄ¡¢²úÆ·¹ã¸æÐû´«£º
ºËÐÄÀíÄ½»Á÷¡ªÉ¤Ë¬¡ª³É¹¦
   
Ç°ÆÚÐû´«¹ã¸æÕûÌåÐû´«ÓÉÉú²ú³§¼ÒͶ·Å£¬¾Ö²¿Îª¾­ÏúÉ̸ºÔ𣬳ö²ú³§¼ÒÿºÐ·´»Ø0.40Ôª/ºÐ
¸ø¾­ÏúÉÌ¡£
   
Ͷ·ÅÐû´«Ã½ÌåΪ¡°ÖÐÑëһ̨¡±¡°Íí¼äÐÂÎÅ¡±½ÚÄ¿¡¢Ïã¸Û¡°ÎÀÊÓ¡±Ì¨¡¢ºþÄÏÊ¡ÎÀÊǪ́¡¢¡°ÄÏ·
½¶¼Êб¨¡±¡¢¡°³É¶¼É̱¨¡±¡¢¡°±±¾©ÇàÄ걨¡±¡¢¡°¹ã¶«ÈÕ±¨¡±¡¢¡°ÉîÛÚÉ̱¨¡±¡£
¸÷µØÇøÐû´«Óɸ÷¾­ÏúÉ̸ºÔð¡£
Îå¡¢»Ø±¨ÂÊ£º¾­ÏúÉÌ»ñ20£¥µÄëÀû£¬ÏúÊÛÉÌ»ñ29£¥µÄëÀû£¬Í¬Ê±»¹ÓкܴóµÄ½±ÀøÕþ²ß¡£
Áù¡¢¾­ÏúÉ̵ÄÌõ¼þ£º
ÔÚÿµØÇøÓо­ÏúÍøÂ磻
ÓÐÒ»¶¨µÄ¾­¼ÃʵÁ¦£»
ÓÐÒ»¶¨È˲Å×ÊÔ´¡£
Æß¡¢¾­Ïú¼Æ»®£º
¾ÅÔ·ݵ×Ë«·½Ç©¶¨ºÏͬ¡£
¾ÅÔ·ݹã¸æÐû´«¡£
ʮԷݲúÆ·½øÈëÊг¡¡£
Ê®ÔÂÖÁʮһÔ·ÝÆÌ¿ªÊг¡¡£
Ê®¶þÔ·ݳõÕÙ¿ª¾­Ïú»áÒé¡£

Ö麣ÊÐÅôÃùöÎʵҵÓÐÏÞ¹«Ë¾
   
ÁªÏµµç»°£º13809809362ÍíÉÏ£º0756£­2612364

 ___

»¶Ó­·ÃÎÊwww.BuySell-114.com£¨°Ùɸ114£©ÍøÕ¾¡£
Äú·¢²¼ÐÅÏ¢£¬ÎÒ°ïÄú´«²¥Íƹ㡣
ÄúµÄÒµÎñÄÚÈÝ¡¢ÁªÏµµç»°¡¢ÍøÖ·µÈ×ÊÁϾùÄÜ¿ìËÙÓÐЧµØËÍ´ïDZÔÚ¿Í»§¡£
ÁªÏµµç»°£º0756£­2525742Öйú Ö麣

___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde



[PyKDE] (no subject)

2001-09-11 Thread buysell114

Ò»¡¢ÆóÒµ±³¾°£º
   
¹ãÎ÷ͨÎåÖ޹ɷÝÓÐÏÞ¹«Ë¾½üÄêÒÀ¿¿¹ûľ¹Ï»ùµØºÍÆäÇ¿´óµÄ¿ÆÑÐÁ¦Á¿£¬×é֯ר¼Ò¶Ô¡°¹ûÏÊľ¹
Ïø¡±µÄÌáÁ¶ºÍÅäÖƽøÐпÎÌâÑо¿¡£Ñо¿Éú²ú³öÈ«ÐÂÒ»´ú¡°Ä¾¹Ïø¡±Ïû·ÑȺÌåµÄÌØÕ÷¼°Ä¾¹Ï
Ë®¹ûÊг¡µÄ×ÜÌå×´¿öºó¡£´Ó½ñÄêÆðÏòÈ«¹úÊг¡´ó¹æÄ£ÍƳö¡°É¤Ë¬¡±Ä¾¹ÏÈóºí²úÆ·¡£
¶þ¡¢²úÆ·½éÉÜ
¡°É¤Ë¬¡±Ä¾¹ÏÈóºíƬÊÇÓÃÏÖ´úÉúÎ﹤³Ì¼¼Êõ´Óľ¹ÏÖÐÌáÈ¡È»»îÐÔÎïÖÊ¡£
¡°Ä¾¹Ïø¡±º¬ÓÐÈËÌåËùÐèµÄ17ÖÖ°±»ùËᣬ¶àÖÖάÉúËØ¡£
¡°Ä¾¹Ïø¡±ÔÚÃÀ¹úÊг¡·Ç³£°º¹ó£¬¶øľ¹ÏÈ´ÊǸ۰Ą̈¼°¹ã¶«µØÇøµÄÉϵȱ£½¡²Ë¡£
   
ÒÔË®¹ûÌáÁ¶¶ø¾«Ö¶ø³ÉµÄÈóºíƬÊǵÚÒ»´Î³öÏÖÊг¡£¬ÈËÃÇÒòÑʺíÑס¢³¦Î¸Ñ×Ëù·¢³öµÄÒìζ£
¬¶¼Êǵ°°×ÖÊËù·¢³öµÄÒì棬¶øľ¹Ï¡°Ã¸¡±Äܹ»Ñ¸ËÙË®½â£¬¶Ìʱ¼äÄÚÏû³ýÑʺíÑ׺ÍÒì棬Òò
¶ø¡°É¤Ë¬¡±Ä¾¹ÏËØÈóºíƬ¶Ô×ÌÈó¿ÚÇ»¡¢ÑÊºí¡¢Ïû³ý¿Ú³ôÓÐÌØЧ¡£
Èý¡¢Êг¡¶¨Î»£ºÎª20£­45ËêµÄÖÐÇàÄêÈË¡£
ËÄ¡¢²úÆ·¹ã¸æÐû´«£º
ºËÐÄÀíÄ½»Á÷¡ªÉ¤Ë¬¡ª³É¹¦
   
Ç°ÆÚÐû´«¹ã¸æÕûÌåÐû´«ÓÉÉú²ú³§¼ÒͶ·Å£¬¾Ö²¿Îª¾­ÏúÉ̸ºÔ𣬳ö²ú³§¼ÒÿºÐ·´»Ø0.40Ôª/ºÐ
¸ø¾­ÏúÉÌ¡£
   
Ͷ·ÅÐû´«Ã½ÌåΪ¡°ÖÐÑëһ̨¡±¡°Íí¼äÐÂÎÅ¡±½ÚÄ¿¡¢Ïã¸Û¡°ÎÀÊÓ¡±Ì¨¡¢ºþÄÏÊ¡ÎÀÊǪ́¡¢¡°ÄÏ·
½¶¼Êб¨¡±¡¢¡°³É¶¼É̱¨¡±¡¢¡°±±¾©ÇàÄ걨¡±¡¢¡°¹ã¶«ÈÕ±¨¡±¡¢¡°ÉîÛÚÉ̱¨¡±¡£
¸÷µØÇøÐû´«Óɸ÷¾­ÏúÉ̸ºÔð¡£
Îå¡¢»Ø±¨ÂÊ£º¾­ÏúÉÌ»ñ20£¥µÄëÀû£¬ÏúÊÛÉÌ»ñ29£¥µÄëÀû£¬Í¬Ê±»¹ÓкܴóµÄ½±ÀøÕþ²ß¡£
Áù¡¢¾­ÏúÉ̵ÄÌõ¼þ£º
ÔÚÿµØÇøÓо­ÏúÍøÂ磻
ÓÐÒ»¶¨µÄ¾­¼ÃʵÁ¦£»
ÓÐÒ»¶¨È˲Å×ÊÔ´¡£
Æß¡¢¾­Ïú¼Æ»®£º
¾ÅÔ·ݵ×Ë«·½Ç©¶¨ºÏͬ¡£
¾ÅÔ·ݹã¸æÐû´«¡£
ʮԷݲúÆ·½øÈëÊг¡¡£
Ê®ÔÂÖÁʮһÔ·ÝÆÌ¿ªÊг¡¡£
Ê®¶þÔ·ݳõÕÙ¿ª¾­Ïú»áÒé¡£
°Ë¡¢ÁªÏµµç»°£º13016358684


www.BuySell-114.comÍøÕ¾



»¶Ó­·ÃÎÊwww.BuySell-114.com£¨°Ùɸ114£©ÍøÕ¾¡£
Äú·¢²¼ÐÅÏ¢£¬ÎÒ°ïÄú´«²¥Íƹ㡣
ÄúµÄÒµÎñÄÚÈÝ¡¢ÁªÏµµç»°¡¢ÍøÖ·µÈ×ÊÁϾùÄÜ¿ìËÙÓÐЧµØËÍ´ïDZÔÚ¿Í»§¡£
ÁªÏµµç»°£º0756£­2525742Öйú Ö麣

___
PyKDE mailing list[EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde