You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(16) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
(33) |
Apr
(4) |
May
(20) |
Jun
(26) |
Jul
(3) |
Aug
|
Sep
(2) |
Oct
|
Nov
(15) |
Dec
(1) |
2006 |
Jan
(9) |
Feb
(8) |
Mar
(7) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(4) |
Oct
(10) |
Nov
(1) |
Dec
(10) |
2007 |
Jan
(4) |
Feb
(6) |
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
(2) |
Aug
(2) |
Sep
(8) |
Oct
(6) |
Nov
(3) |
Dec
(4) |
2008 |
Jan
(3) |
Feb
(5) |
Mar
(25) |
Apr
(26) |
May
(16) |
Jun
(7) |
Jul
(20) |
Aug
(5) |
Sep
(10) |
Oct
(9) |
Nov
(19) |
Dec
(49) |
2009 |
Jan
(40) |
Feb
(15) |
Mar
(28) |
Apr
(44) |
May
(111) |
Jun
(96) |
Jul
(69) |
Aug
(23) |
Sep
(16) |
Oct
(28) |
Nov
(5) |
Dec
(11) |
2010 |
Jan
(9) |
Feb
(8) |
Mar
(32) |
Apr
(40) |
May
(69) |
Jun
(64) |
Jul
(39) |
Aug
(49) |
Sep
(23) |
Oct
(3) |
Nov
|
Dec
|
2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kevin W. <sw...@wo...> - 2005-11-10 00:51:16
|
Adrien Bourdet wrote: > 2005/11/8, Diez B. Roggisch <de...@we...>: >> Adrien Bourdet wrote: >>> I have done a little app in pyqt wich works fine on linux. But with >>> the mac version, my QDialog seams to not have the focus :( All widgets >>> are paint with a grey color, as if they were disabled, but they work ! >>> Perhaps i didn't configure my QDialog correctly ? >>> I haven't my code under my eyes yet, but i remeber the call method : >>> dlg.show() >>> dlg.exec_loop() >>> >>> Does the parameters of __init__ could be implicated in my problem ? >> No, you need to run the application as an "aliased applet". That means >> you need something like the attached setup.py. >> >> HTH, >> >> Diez >> > > Hmm, my application is just a .py file that i run like : 'python > MyAppli.py'. Could I fix the problem without making a MacOSX .app ? > I'd prefer launch it in python because i have to develop and debug :) > > I didn't say that earlier, but the main menubar doesn't appear. > > Adrien > > > ------------------------------------------------------- > SF.Net email is sponsored by: > Tame your development challenges with Apache's Geronimo App Server. Download > it for free - -and be entered to win a 42" plasma tv or your very own > Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php > _______________________________________________ > Pyqt-mac-list mailing list > Pyq...@li... > https://lists.sourceforge.net/lists/listinfo/pyqt-mac-list > > You need to launch it with "pythonw," not "python." -- Cheers, Kevin Walzer, PhD WordTech Software - "Tame the Terminal" http://www.wordtech-software.com sw at wordtech-software.com |
From: Adrien B. <adr...@gm...> - 2005-11-10 00:21:32
|
2005/11/8, Diez B. Roggisch <de...@we...>: > Adrien Bourdet wrote: > > I have done a little app in pyqt wich works fine on linux. But with > > the mac version, my QDialog seams to not have the focus :( All widgets > > are paint with a grey color, as if they were disabled, but they work ! > > Perhaps i didn't configure my QDialog correctly ? > > I haven't my code under my eyes yet, but i remeber the call method : > > dlg.show() > > dlg.exec_loop() > > > > Does the parameters of __init__ could be implicated in my problem ? > > No, you need to run the application as an "aliased applet". That means > you need something like the attached setup.py. > > HTH, > > Diez > Hmm, my application is just a .py file that i run like : 'python MyAppli.py'. Could I fix the problem without making a MacOSX .app ? I'd prefer launch it in python because i have to develop and debug :) I didn't say that earlier, but the main menubar doesn't appear. Adrien |
From: Diez B. R. <de...@we...> - 2005-11-08 15:44:29
|
Adrien Bourdet wrote: >>Sorry to hear that. I didn't have these problmes. I currently can't >>remember if and how I build Qt. I checked back on my machine (yesterday >>I was at work, under Linux) - and I found PyQt-mac and sip source dirs, >>so I certainly build those myself. But no Qt-Source (nor package) in >>sight - maybe I got a binary, contrary to my previous posts. >> >>HTH, >> >>Diez > > > I'm supid, I tried with the wrong version of qt. I took the same as my > linux version (3.3.4), and i read later that only 3.3.5 was supported > on tiger. > This night I compiled Qt, SIP and PyQt without troubles... great ! > > Now the installation is ok, I can talk about real problems about pyqt > programming :) > > I have done a little app in pyqt wich works fine on linux. But with > the mac version, my QDialog seams to not have the focus :( All widgets > are paint with a grey color, as if they were disabled, but they work ! > Perhaps i didn't configure my QDialog correctly ? > I haven't my code under my eyes yet, but i remeber the call method : > dlg.show() > dlg.exec_loop() > > Does the parameters of __init__ could be implicated in my problem ? No, you need to run the application as an "aliased applet". That means you need something like the attached setup.py. HTH, Diez |
From: Adrien B. <adr...@gm...> - 2005-11-08 12:17:27
|
> Sorry to hear that. I didn't have these problmes. I currently can't > remember if and how I build Qt. I checked back on my machine (yesterday > I was at work, under Linux) - and I found PyQt-mac and sip source dirs, > so I certainly build those myself. But no Qt-Source (nor package) in > sight - maybe I got a binary, contrary to my previous posts. > > HTH, > > Diez I'm supid, I tried with the wrong version of qt. I took the same as my linux version (3.3.4), and i read later that only 3.3.5 was supported on tiger. This night I compiled Qt, SIP and PyQt without troubles... great ! Now the installation is ok, I can talk about real problems about pyqt programming :) I have done a little app in pyqt wich works fine on linux. But with the mac version, my QDialog seams to not have the focus :( All widgets are paint with a grey color, as if they were disabled, but they work ! Perhaps i didn't configure my QDialog correctly ? I haven't my code under my eyes yet, but i remeber the call method : dlg.show() dlg.exec_loop() Does the parameters of __init__ could be implicated in my problem ? Adrien |
From: Diez B. R. <de...@we...> - 2005-11-08 09:50:25
|
Adrien Bourdet wrote: > I downloaded sip, pyqt and qt. > I can't compile/link qt nor sip :(. > With gcc4, I get compilations errors. With gcc3, theses errors are > reported as warnings and the compilations goes on. But i can't link. > I did as the INSTALL files from qt says... > I also configured qt with : ./configure -no-accessibility -no-ipv6 > -no-tablet -fast, and i put /usr/lib:/sw/lib into DYLD_LIBRARY_PATH, > but nothing work better Sorry to hear that. I didn't have these problmes. I currently can't remember if and how I build Qt. I checked back on my machine (yesterday I was at work, under Linux) - and I found PyQt-mac and sip source dirs, so I certainly build those myself. But no Qt-Source (nor package) in sight - maybe I got a binary, contrary to my previous posts. HTH, Diez |
From: Adrien B. <adr...@gm...> - 2005-11-07 23:51:19
|
I downloaded sip, pyqt and qt. I can't compile/link qt nor sip :(. With gcc4, I get compilations errors. With gcc3, theses errors are reported as warnings and the compilations goes on. But i can't link. I did as the INSTALL files from qt says... I also configured qt with : ./configure -no-accessibility -no-ipv6 -no-tablet -fast, and i put /usr/lib:/sw/lib into DYLD_LIBRARY_PATH, but nothing work better Here is the message i get when i try to compile sip or qt sip : c++ -headerpad_max_install_names -o sip main.o transform.o gencode.o heap.o parser.o lexer.o ld: Undefined symbols: _fprintf$LDBLStub _printf$LDBLStub _vfprintf$LDBLStub _sprintf$LDBLStub make[1]: *** [sip] Error 1 make: *** [all] Error 2 qt : ld: warning multiple definitions of symbol _dladdr .obj/release-shared/dlfcn.o definition of _dladdr in section (__TEXT,__text= ) /usr/lib/libSystem.dylib(dyldAPIsInLibSystem.o) definition of _dladdr ld: warning multiple definitions of symbol _dlclose .obj/release-shared/dlfcn.o definition of _dlclose in section (__TEXT,__tex= t) /usr/lib/libSystem.dylib(dyldAPIsInLibSystem.o) definition of _dlclose ld: warning multiple definitions of symbol _dlerror .obj/release-shared/dlfcn.o definition of _dlerror in section (__TEXT,__tex= t) /usr/lib/libSystem.dylib(dyldAPIsInLibSystem.o) definition of _dlerror ld: warning multiple definitions of symbol _dlopen .obj/release-shared/dlfcn.o definition of _dlopen in section (__TEXT,__text= ) /usr/lib/libSystem.dylib(dyldAPIsInLibSystem.o) definition of _dlopen ld: warning multiple definitions of symbol _dlsym .obj/release-shared/dlfcn.o definition of _dlsym in section (__TEXT,__text) /usr/lib/libSystem.dylib(dyldAPIsInLibSystem.o) definition of _dlsym ld: warning prebinding disabled because of undefined symbols ld: Undefined symbols: _sprintf$LDBLStub _fprintf$LDBLStub _snprintf$LDBLStub _vsnprintf$LDBLStub /usr/bin/libtool: internal link edit command failed make[2]: *** [../lib/libqt.3.3.4.dylib] Error 1 make[1]: *** [sub-src] Error 2 make: *** [init] Error 2 are libraries missing on my system ? Thanks for your help Adrien |
From: Diez B. R. <de...@we...> - 2005-11-07 15:07:17
|
Am Montag, 7. November 2005 16:00 schrieb Adrien Bourdet: > 2005/11/7, Diez B. Roggisch <de...@we...>: > > > So you think pyqt/sip will work with python 2.3 ? > > > > I don't think so, I know - it is said so in the docs :) > > > > > Ok. When i buid it from Fink, it uses X11, but if i use official > > > package, it will not ? great :) > > > > Yup. > > > > Diez > > Ok, so I only have to find python2.4 :) > I downloaded python2.4.2 from python.org, I'm going to try with this one I doubt that will work. As I said before, you can go with python2.3, no deal. I personally just prefer python 2.4. And using it "raw" from python.org won't help much IMHO, as you need a "Framework build", which is a special form of package format for python. But I'm not entirely sure about that - I'm a novice with mac os myself :) Regards, Diez |
From: Adrien B. <adr...@gm...> - 2005-11-07 15:00:58
|
2005/11/7, Diez B. Roggisch <de...@we...>: > > So you think pyqt/sip will work with python 2.3 ? > > I don't think so, I know - it is said so in the docs :) > > > Ok. When i buid it from Fink, it uses X11, but if i use official > > package, it will not ? great :) > > Yup. > > Diez > Ok, so I only have to find python2.4 :) I downloaded python2.4.2 from python.org, I'm going to try with this one Adrien |
From: Diez B. R. <de...@we...> - 2005-11-07 12:45:57
|
> So you think pyqt/sip will work with python 2.3 ? I don't think so, I know - it is said so in the docs :) > Ok. When i buid it from Fink, it uses X11, but if i use official > package, it will not ? great :) Yup. Diez |
From: Adrien B. <adr...@gm...> - 2005-11-07 12:01:07
|
2005/11/7, Diez B. Roggisch <de...@we...>: > > I didn't find this package :( > > Me neither. Strange, I thought I got it from there. Well, you should be = able > to go without it, using the stock-python of OS X. I just prefer 2.4. > So you think pyqt/sip will work with python 2.3 ? > > > > > Build and install. Download sip and pyqt, and build it using the > > > python2.4 from above. > > > > Do i download sip and pyqt from official websites ? > > Yes. You should be able to use fink, but then use the source and build it > yourself - otherwise, it will be build against the X11-qt. Which is your > problem in the first place. > Ok. When i buid it from Fink, it uses X11, but if i use official package, it will not ? great :) Thanks for your help Adrien |
From: Diez B. R. <de...@we...> - 2005-11-07 11:50:45
|
> I didn't find this package :( Me neither. Strange, I thought I got it from there. Well, you should be able to go without it, using the stock-python of OS X. I just prefer 2.4. > > > Build and install. Download sip and pyqt, and build it using the > > python2.4 from above. > > Do i download sip and pyqt from official websites ? Yes. You should be able to use fink, but then use the source and build it yourself - otherwise, it will be build against the X11-qt. Which is your problem in the first place. Regards, Diez |
From: Adrien B. <adr...@gm...> - 2005-11-07 11:39:15
|
2005/11/7, Diez B. Roggisch <de...@we...>: > Install mac-python 2.4 from > > http://pythonmac.org/packages/ > I didn't find this package :( > > Build and install. Download sip and pyqt, and build it using the python2.= 4 > from above. > Do i download sip and pyqt from official websites ? > Yeah, one feels somewhat lost... I can also highly recommend iTerm, a ter= minal > with better encoding support and _tabs_! > > Regards, > Diez > Thanks again, Adrien > > ------------------------------------------------------- > SF.Net email is sponsored by: > Tame your development challenges with Apache's Geronimo App Server. Downl= oad > it for free - -and be entered to win a 42" plasma tv or your very own > Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php > _______________________________________________ > Pyqt-mac-list mailing list > Pyq...@li... > https://lists.sourceforge.net/lists/listinfo/pyqt-mac-list > |
From: Diez B. R. <de...@we...> - 2005-11-07 11:00:12
|
Am Montag, 7. November 2005 04:02 schrieb Adrien Bourdet: > Hello, > i just bought my first mac today, and i try to install PyQt, but... > 1) I don't know which packages i had to install, and where i can find them. There might be other ways, but this is how I did it (I hope so at least, has been a while): Install mac-python 2.4 from http://pythonmac.org/packages/ Download the free mac qt version: ftp://ftp.trolltech.com/qt/source/ Make sure you use the latest 3.x, otherwise PyQt won't work. Build and install. Download sip and pyqt, and build it using the python2.4 from above. > If you could give me urls for wich packages to install, and "what to > do and how" to make pyqt working.. :) > I'm completly new on Macs (i actually run linux), so please explain it > to me (a poor newbie with mac) Yeah, one feels somewhat lost... I can also highly recommend iTerm, a terminal with better encoding support and _tabs_! Regards, Diez |
From: Adrien B. <adr...@gm...> - 2005-11-07 03:02:57
|
Hello, i just bought my first mac today, and i try to install PyQt, but... 1) I don't know which packages i had to install, and where i can find them. 2) I installed Fink and then the pyqt-py24 package, but my pyqt app want to connect to a X Server. I'd like to have native MacOSX widgets, and don't have to run any X Server, is it possible ? If you could give me urls for wich packages to install, and "what to do and how" to make pyqt working.. :) I'm completly new on Macs (i actually run linux), so please explain it to me (a poor newbie with mac) Thanks a lot, Adrien |
From: Phil T. <ph...@ri...> - 2005-09-26 13:49:27
|
> Hello, > > I recently installed Qt V3.3.5, SIP V4.3.1 and PyQt-mac-gpl V3.15 on my > laptop running Mac OSX V10.3.9 using the system's Python installation > V2.3. Everything seemed to build and install OK. > > However, when I came to run the PyQt examples I found that a few of the= m > failed to run and some exhibited some weird behaviour. For example, the > addressbook.py example program started up OK and looked alright until I > tried the enter text into the text entry widgets at which point the tex= t > only apperaed in the terminal from where I launched the program. When I > ran the original example programs from Qt there was no such problems. D= oes > anyone have any ideas as to what the problem might be? You should be using pythonw rather than python. Are you? Phil |
From: Stewart M. <sa...@ro...> - 2005-09-26 13:30:14
|
Hello, I recently installed Qt V3.3.5, SIP V4.3.1 and PyQt-mac-gpl V3.15 on my laptop running Mac OSX V10.3.9 using the system's Python installation V2.3. Everything seemed to build and install OK. However, when I came to run the PyQt examples I found that a few of them failed to run and some exhibited some weird behaviour. For example, the addressbook.py example program started up OK and looked alright until I tried the enter text into the text entry widgets at which point the text only apperaed in the terminal from where I launched the program. When I ran the original example programs from Qt there was no such problems. Does anyone have any ideas as to what the problem might be? Cheers, Stewart |
From: Kevin W. <sw...@wo...> - 2005-07-17 23:21:41
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 The project page is http://sourceforge.net/projects/pyqt-mac/ I'd sign up at Sourceforge. Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.kevin-walzer.com http://www.smallbizmac.com. mailto:sw...@wo... Stewart Midwinter wrote: | Kevin, thanks for all your work on this project over the last years. | Thanks to your binary package, I was able to get Qt installed on Tiger | 10.4.2. | Would you consider keeping your pyqt-mac.html page up, at least as a | link pointing to the Sourceforge project site? Virtually all Google | searches I did took me to that page, which is now 404. At the very | least, putting in a link to the SF page may lead someone to volunteering | as maintainer. BTW, what will be the process for someone to take that on? | | S | | | | ------------------------------------------------------- | SF.Net email is sponsored by: Discover Easy Linux Migration Strategies | from IBM. Find simple to follow Roadmaps, straightforward articles, | informative Webcasts and more! Get everything you need to get up to | speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click | _______________________________________________ | Pyqt-mac-list mailing list | Pyq...@li... | https://lists.sourceforge.net/lists/listinfo/pyqt-mac-list | | -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFC2uf8JmdQs+6YVcoRAmMlAJ9x683NDATRYkq9gtfu7cknwCVqdgCfaEId i8TtZ/pLIKb5VJa5eXw3rxU= =LpZw -----END PGP SIGNATURE----- |
From: Stewart M. <ste...@gm...> - 2005-07-17 22:05:42
|
Kevin, thanks for all your work on this project over the last years. Thanks to your binary package, I was able to get Qt installed on Tiger 10.4.2. Would you consider keeping your pyqt-mac.html page up, at least as a link pointing to the Sourceforge project site? Virtually all Google searches I did took me to that page, which is now 404. At the very least, putting in a link to the SF page may lead someone to volunteering as maintainer. BTW, what will be the process for someone to take that on? S |
From: Kevin W. <sw...@wo...> - 2005-07-13 18:00:51
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, I have resigned as maintainer of PyQt-Mac to focus on application development. The project as Sourceforge currently does not have an administrator, but the work I did can still be downloaded there. - -- Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.kevin-walzer.com http://www.smallbizmac.com. mailto:sw...@wo... -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFC1VbLJmdQs+6YVcoRApRaAJ9mR6Eo6HV11BOUfQG+u0qkRzoRRgCfU/ff M2HHepncd6hB+yf96QFK+Tk= =wqnc -----END PGP SIGNATURE----- |
From: Kevin W. <sw...@wo...> - 2005-06-30 03:44:55
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dear Simon, I'm glad you were able to figure things out. Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.kevin-walzer.com http://www.smallbizmac.com. mailto:sw...@wo... Simon Jarman wrote: | Hi Kevin, | Sorry to waste your time, I've worked out the instructions now and | everything works. Thanks for the help and putting together a very useful | package. | | I"m not sure what the problem is with your menu, but your setup doesn"t | look quite right with bash. It"s not recommended that you hack the | system-level /etc/profile file: try setting up ~/.profile as outlined in | the web page. | | Cheers, | | Kevin Walzer, PhD | WordTech Software--Open Source Applications and Packages for OS X | http://www.wordtech-software.com | http://www.kevin-walzer.com | http://www.smallbizmac.com. | mailto:sw@wo... | | Simon Jarman wrote: | | Hi, | | I am trying to move an Linux application that uses PyQt to MacOSX | | (v10.4.1). I have downloaded the PyQT-Mac-Tiger installer, run that and | | edited my /etc/profile file so that it look like: | | | | # System-wide .profile for sh(1) | | | | | | PATH="/bin:/sbin:/usr/bin:/usr/sbin:/System/Library/Frameworks/Python.framework/Versions/2.3/bin"" | | | export PATH | | | | if [ "${BASH-no}" != "no" ]; then | | [ -r /etc/bashrc ] && /etc/bashrc | | fi | | QTDIR=/Developer/qt | | PATH=$QTDIR/bin:$PATH | | DYLD_LIBRARY_PATH=$QTDIR/lib:$DYLD_LIBRARY_PATH | | export QTDIR PATH DYLD_LIBRARY_PATH | | | | Eric3 will run, but crashes whenever I try to edit its preferences, so I | | cannot complete the instructions for installation on the website. I can | | run my script that I am trying to convert and the main window appears, | | but no menus. Can anyone suggest any fixes for either of these problems? | | | | Thanks in advance, | | Simon Jarman | | | | | | | -----BEGIN PGP SIGNATURE----- | Version: GnuPG v1.4.1 (Darwin) | Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org | | iD8DBQFCwWGhJmdQs+6YVcoRAij3AJwJuw4U80G8PkmAMuhbHwTyILDxIQCfSOF4 | jmOYoWacqiX8MdsyGYvyerE= | =XFF9 | -----END PGP SIGNATURE----- | -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCw2qyJmdQs+6YVcoRAol9AJ9CvLqWVGlcEWYsG7/wNIHpq+XL4ACfWz6O R0ZLd5bjCfVVGYGIg3spjcg= =zLix -----END PGP SIGNATURE----- |
From: Simon J. <sim...@aa...> - 2005-06-30 01:08:47
|
Hi Kevin, Sorry to waste your time, I've worked out the instructions now and everything works. Thanks for the help and putting together a very useful package. I"m not sure what the problem is with your menu, but your setup doesn"t look quite right with bash. It"s not recommended that you hack the system-level /etc/profile file: try setting up ~/.profile as outlined in the web page. Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.kevin-walzer.com http://www.smallbizmac.com. mailto:sw@wo... Simon Jarman wrote: | Hi, | I am trying to move an Linux application that uses PyQt to MacOSX | (v10.4.1). I have downloaded the PyQT-Mac-Tiger installer, run that and | edited my /etc/profile file so that it look like: | | # System-wide .profile for sh(1) | | PATH="/bin:/sbin:/usr/bin:/usr/sbin:/System/Library/Frameworks/Python.framework/Versions/2.3/bin"" | export PATH | | if [ "${BASH-no}" != "no" ]; then | [ -r /etc/bashrc ] && /etc/bashrc | fi | QTDIR=/Developer/qt | PATH=$QTDIR/bin:$PATH | DYLD_LIBRARY_PATH=$QTDIR/lib:$DYLD_LIBRARY_PATH | export QTDIR PATH DYLD_LIBRARY_PATH | | Eric3 will run, but crashes whenever I try to edit its preferences, so I | cannot complete the instructions for installation on the website. I can | run my script that I am trying to convert and the main window appears, | but no menus. Can anyone suggest any fixes for either of these problems? | | Thanks in advance, | Simon Jarman | | | -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCwWGhJmdQs+6YVcoRAij3AJwJuw4U80G8PkmAMuhbHwTyILDxIQCfSOF4 jmOYoWacqiX8MdsyGYvyerE= =XFF9 -----END PGP SIGNATURE----- -- Dr Simon Jarman Research Scientist Australian Antarctic Division Department of the Environment and Heritage Channel Highway Kingston TAS 7050 Australia email: sim...@aa... Telephone: (+61)362323174 Facsimilie: (+61)362323449 Mobile: 0408580923 ___________________________________________________________________________ Australian Antarctic Division - Commonwealth of Australia IMPORTANT: This transmission is intended for the addressee only. If you are not the intended recipient, you are notified that use or dissemination of this communication is strictly prohibited by Commonwealth law. If you have received this transmission in error, please notify the sender immediately by e-mail or by telephoning +61 3 6232 3209 and DELETE the message. Visit our web site at http://www.aad.gov.au/ ___________________________________________________________________________ |
From: Simon J. <sim...@aa...> - 2005-06-30 00:08:26
|
Hi Kevin, Thanks for the reply. I'm sorry, but I'm a bit ignorant on this topic. Can you (or anyone on the list) give me more detailed instructions than those on the webpage for editing or creating ~/.profile. I don't know where or what this is. Thanks, Simon I"m not sure what the problem is with your menu, but your setup doesn"t look quite right with bash. It"s not recommended that you hack the system-level /etc/profile file: try setting up ~/.profile as outlined in the web page. Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.kevin-walzer.com http://www.smallbizmac.com. mailto:sw@wo... Simon Jarman wrote: | Hi, | I am trying to move an Linux application that uses PyQt to MacOSX | (v10.4.1). I have downloaded the PyQT-Mac-Tiger installer, run that and | edited my /etc/profile file so that it look like: | | # System-wide .profile for sh(1) | | PATH="/bin:/sbin:/usr/bin:/usr/sbin:/System/Library/Frameworks/Python.framework/Versions/2.3/bin"" | export PATH | | if [ "${BASH-no}" != "no" ]; then | [ -r /etc/bashrc ] && /etc/bashrc | fi | QTDIR=/Developer/qt | PATH=$QTDIR/bin:$PATH | DYLD_LIBRARY_PATH=$QTDIR/lib:$DYLD_LIBRARY_PATH | export QTDIR PATH DYLD_LIBRARY_PATH | | Eric3 will run, but crashes whenever I try to edit its preferences, so I | cannot complete the instructions for installation on the website. I can | run my script that I am trying to convert and the main window appears, | but no menus. Can anyone suggest any fixes for either of these problems? | | Thanks in advance, | Simon Jarman | | | -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCwWGhJmdQs+6YVcoRAij3AJwJuw4U80G8PkmAMuhbHwTyILDxIQCfSOF4 jmOYoWacqiX8MdsyGYvyerE= =XFF9 -----END PGP SIGNATURE----- -- Dr Simon Jarman Research Scientist Australian Antarctic Division Department of the Environment and Heritage Channel Highway Kingston TAS 7050 Australia email: sim...@aa... Telephone: (+61)362323174 Facsimilie: (+61)362323449 Mobile: 0408580923 ___________________________________________________________________________ Australian Antarctic Division - Commonwealth of Australia IMPORTANT: This transmission is intended for the addressee only. If you are not the intended recipient, you are notified that use or dissemination of this communication is strictly prohibited by Commonwealth law. If you have received this transmission in error, please notify the sender immediately by e-mail or by telephoning +61 3 6232 3209 and DELETE the message. Visit our web site at http://www.aad.gov.au/ ___________________________________________________________________________ |
From: Kevin W. <sw...@wo...> - 2005-06-28 14:41:42
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I'm not sure what the problem is with your menu, but your setup doesn't look quite right with bash. It's not recommended that you hack the system-level /etc/profile file: try setting up ~/.profile as outlined in the web page. Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.kevin-walzer.com http://www.smallbizmac.com. mailto:sw...@wo... Simon Jarman wrote: | Hi, | I am trying to move an Linux application that uses PyQt to MacOSX | (v10.4.1). I have downloaded the PyQT-Mac-Tiger installer, run that and | edited my /etc/profile file so that it look like: | | # System-wide .profile for sh(1) | | PATH="/bin:/sbin:/usr/bin:/usr/sbin:/System/Library/Frameworks/Python.framework/Versions/2.3/bin"" | export PATH | | if [ "${BASH-no}" != "no" ]; then | [ -r /etc/bashrc ] && /etc/bashrc | fi | QTDIR=/Developer/qt | PATH=$QTDIR/bin:$PATH | DYLD_LIBRARY_PATH=$QTDIR/lib:$DYLD_LIBRARY_PATH | export QTDIR PATH DYLD_LIBRARY_PATH | | Eric3 will run, but crashes whenever I try to edit its preferences, so I | cannot complete the instructions for installation on the website. I can | run my script that I am trying to convert and the main window appears, | but no menus. Can anyone suggest any fixes for either of these problems? | | Thanks in advance, | Simon Jarman | | | -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (Darwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCwWGhJmdQs+6YVcoRAij3AJwJuw4U80G8PkmAMuhbHwTyILDxIQCfSOF4 jmOYoWacqiX8MdsyGYvyerE= =XFF9 -----END PGP SIGNATURE----- |
From: Simon J. <Sim...@aa...> - 2005-06-28 06:14:56
|
Hi, =20 I am trying to move an Linux application that uses PyQt to MacOSX (v= 10.4.1). I have downloaded the PyQT-Mac-Tiger installer, run that and ed= ited my /etc/profile file so that it look like: # System-wide .profile for sh(1) PATH=3D"/bin:/sbin:/usr/bin:/usr/sbin:/System/Library/Frameworks/Python.f= ramework/Versions/2.3/bin"" export PATH if [ "${BASH-no}" !=3D "no" ]; then =20 [ -r /etc/bashrc ] && . /etc/bashrc fi QTDIR=3D/Developer/qt PATH=3D$QTDIR/bin:$PATH DYLD_LIBRARY_PATH=3D$QTDIR/lib:$DYLD_LIBRARY_PATH export QTDIR PATH DYLD_LIBRARY_PATH Eric3 will run, but crashes whenever I try to edit its preferences, so I = cannot complete the instructions for installation on the website. I can = run my script that I am trying to convert and the main window appears, b= ut no menus. Can anyone suggest any fixes for either of these problems? Thanks in advance, Simon Jarman=20 _________________________________________________________________________= __ =20 Australian Antarctic Division - Commonwealth of Australia IMPORTANT: This transmission is intended for the addressee only. If you a= re not the intended recipient, you are notified that use or dissemination of this co= mmunication is strictly prohibited by Commonwealth law. If you have received this transm= ission in error, please notify the sender immediately by e-mail or by telephoning +61 3 62= 32 3209 and DELETE the message. =20 Visit our web site at http://www.aad.gov.au/ _________________________________________________________________________= __ |
From: Adil H. <par...@gm...> - 2005-06-25 13:12:56
|
Hello, I seem to be having a problem trying to save an image to a file. Here's my save method: def fileSave(self): '''Method to handle the saving to a file ''' if (not self.pixmapObj.isNull()): self.pixmapObj.save(QString("dataf1.jpg"), "JPEG", -1) the image is contained in the pixmapObj object which is an instance of a subclass of the QPixmap class. The save to a file seems to work, but the following three lines are written to my screen: QSettings::sync: filename is null/empty QSettings::sync: filename is null/empty QSettings::sync: filename is null/empty Does anyone know what I need to do in order to correctly save an image to a file (I thought, according to the Qt docs that this should work). I'd be grateful for any help. Best regards, adil |