pyqt

2005-12-09 Thread Kuljo
Hi, I'm trying to explore pyqt: ev erthing works OK, but I have still two questions: - Can I execute bash commands in a python script (e.g. ls -l or grep)? - In the QT Designer there are also KDE-widgets but I'm not sucseeded to get them work in pyqt (it says: "self.kProgress1 =

PyQT installation

2004-12-29 Thread Nanoscalesoft
core. I went through the sites like riverbankcomputing and trolltech and few online pages and books which talk about PyQT but never say about their installation step properly. I need to know step by step what shud i do.I have also installed the windows binary of PyQT from riverbank and have ordered a

PyQt documentation

2005-02-10 Thread Eric Jardim
Hi, Is there any site that gather all the documentation about PyQt? The docs of the Riverbank site is poor, and I have found separate tutorials on the net. I know that the Kompany have made a "Qtdoc"-like to PyQt. But it is not free doc. Does anybody know anything about any project

Re: pyqt

2005-12-10 Thread Giovanni Bajo
Kuljo wrote: > - Can I execute bash commands in a python script (e.g. ls -l or grep)? Yes, for instance with os.system or os.popen. It won't be portable though. > - In the QT Designer there are also KDE-widgets but I'm not sucseeded > to get them work in pyqt (it says

pyQT 4

2005-07-25 Thread Nicolas Lebas
hello, i'm using actually pyqt 3.x to create several tools under linux. I plan to propose those tools also for windows and mac os x under GPL agreement. My question is : does anybody know when pyqt 4 will be distributed ? thanks Nicolas -- http://mail.python.org/ma

PyQt Variables

2006-01-05 Thread gregarican
I have an application I'm writing using PyQt. I'm trying to create the various windows by subclassing Qt objects. I have a subclassed QMainWindow as the parent, and then a series of subclassed QWidgets as other child windows that get used. How can I pass variables back and forth between

PyQt issue

2006-03-03 Thread dmbkiwi
I'm trying to write a simple dialog with PyQt. Ive got this code as one of the slots: def setFixed(self): if len(str(self.fixed_label.displayText())) == 0: QMessageBox.critical(self, "Label Missing", "You must enter a label.") el

PyQt: QListviewItemIterator

2007-01-16 Thread Tina I
Hi, I'm fairly new to both Python and Qt so please bare with me. I have a QListView with a number of columns. In order to filter the output I iterate using QListViewItemIterator looking for the string entered by the user (filterString). Currently I do it this way: it = QListViewItemIterator(se

PyQt installation problem

2004-12-29 Thread Bulba!
I got an evaluation version of Qt for Windows and installed PyQt. However, it gives me this error message: "ImportError: DLL load failed:" It doesn't seem to see the "qt-mteval" DLL, even though I made sure that the paths to "lib" and "bin" subfold

Re: PyQT installation

2004-12-30 Thread Phil Thompson
to make > from import qt * > execute...I have the basic python core. I went > through the sites like riverbankcomputing and trolltech and few online > pages and books which talk about PyQT but never say about their > installation step properly. > I need to k

Re: PyQT installation

2004-12-30 Thread Nanoscalesoft
hi phil... py-->2.4 pyqt-->3.3 qt-->2.3.0 -- http://mail.python.org/mailman/listinfo/python-list

Re: PyQT installation

2004-12-30 Thread Phil Thompson
On Thursday 30 December 2004 2:34 pm, Nanoscalesoft wrote: > hi phil... > py-->2.4 > pyqt-->3.3 I assume you mean PyQt-win-nc-msvc-3.13.exe > qt-->2.3.0 I assume you mean the non-commercial edition. The binaries are built against Python 2.3.3 - Python 2.4 won't wo

Re: PyQT installation

2004-12-30 Thread Steve Holden
Phil Thompson wrote: On Thursday 30 December 2004 2:34 pm, Nanoscalesoft wrote: hi phil... py-->2.4 pyqt-->3.3 I assume you mean PyQt-win-nc-msvc-3.13.exe qt-->2.3.0 I assume you mean the non-commercial edition. The binaries are built against Python 2.3.3 - Python 2.4 won't wor

Re: PyQT installation

2004-12-30 Thread Phil Thompson
On Thursday 30 December 2004 4:13 pm, Steve Holden wrote: > Phil Thompson wrote: > > On Thursday 30 December 2004 2:34 pm, Nanoscalesoft wrote: > >>hi phil... > >>py-->2.4 > >>pyqt-->3.3 > > > > I assume you mean PyQt-win-nc-msvc-3.13.ex

Re: PyQT installation

2004-12-30 Thread Jorge Luiz Godoy Filho
Steve Holden, Quinta 30 Dezembro 2004 14:13, wrote: > If that is a real *never* then Qt just fell behind in the "what's the > best GUI platform" stakes. It'd be a shame to lose PyQT, but if there's > no way to migrate it forwards it will atrophy and die. Hav

Re: PyQT installation

2004-12-30 Thread Nanoscalesoft
does that mean PyQT is not forward What a bad thing is this... -- http://mail.python.org/mailman/listinfo/python-list

Re: PyQT installation

2004-12-30 Thread Steve Holden
Phil Thompson wrote: On Thursday 30 December 2004 4:13 pm, Steve Holden wrote: Phil Thompson wrote: On Thursday 30 December 2004 2:34 pm, Nanoscalesoft wrote: hi phil... py-->2.4 pyqt-->3.3 I assume you mean PyQt-win-nc-msvc-3.13.exe qt-->2.3.0 I assume you mean the non-commercial edi

Re: PyQT installation

2004-12-30 Thread Jarek Zgoda
Nanoscalesoft wrote: does that mean PyQT is not forward What a bad thing is this... Whoa, how did you get it? You can buy commercial licenses and be as current as we are on Linux with GPL versions of Qt+PyQt. Oh, and QScintilla and Eric3! -- Jarek Zgoda http://jpa.berlios.de/ | http

Re: PyQT installation

2004-12-31 Thread Alex Martelli
Jarek Zgoda <[EMAIL PROTECTED]> wrote: > Nanoscalesoft wrote: > > > does that mean PyQT is not forward What a bad thing is this... > > Whoa, how did you get it? > > You can buy commercial licenses and be as current as we are on Linux > with GPL versio

Re: PyQT installation

2004-12-31 Thread Alex Martelli
ech's licensing any more. Fairly or not, it does seem Trolltech is paying in terms of mindshare for their not-for-free attitude to Windows among the free-as-in-free-beer software crowd -- if a GPL version was available for Windows I'm pretty sure PyQt would be the default de facto Python GU

Re: PyQT installation

2004-12-31 Thread Brian
For those curious about Trolltech's stance on Windows, here's what Trolltech's "License FAQ - Open Source Edition" ( http://www.trolltech.com/developer/faqs/license_gpl.html ) has to say: " Why is there no Open Source (GNU GPL) version of Qt on Windows ? We have regrettably not found a way of mak

Re: PyQT installation

2005-01-01 Thread John J. Lee
[EMAIL PROTECTED] (Alex Martelli) writes: [...] > Basically: if you want it on Windows for free, forget Qt Correct. > (I hear the > cygwin people are trying to make a GPL Qt available for Win+cyg+XFree, > but I suspect trolltech ain't happy about that -- anyway, I don't think > it would be "nati

Re: PyQT installation

2005-01-01 Thread Ken Godee
John J. Lee wrote: [EMAIL PROTECTED] (Alex Martelli) writes: [...] Basically: if you want it on Windows for free, forget Qt Correct. I believe the book "C++ GUI programming Qt3" comes with a windows Qt gpl 3.x version. Just have to buy the book. No PyQt version to match thou. Blackadde

Re: PyQT installation

2005-01-01 Thread John J Lee
On Sat, 1 Jan 2005, Ken Godee wrote: [...] > I believe the book "C++ GUI programming Qt3" comes > with a windows Qt gpl 3.x version. Just have to buy > the book. No PyQt version to match thou. "GPL only if you buy the book" makes no sense. Either it's GPL

Re: PyQT installation

2005-01-01 Thread Jarek Zgoda
Ken Godee wrote: I believe the book "C++ GUI programming Qt3" comes with a windows Qt gpl 3.x version. Just have to buy the book. No PyQt version to match thou. No, Sir. It's a "non-commercial" edition. At the request from Trolltech, there's no PyQt-nc av

Problems with PyQt

2005-01-28 Thread Michael McGarry
Hi, I am having a problem making a widget appear. I have 5 widgets which are windows with no parents. 3 of the widgets appear without a problem the other 2 widgets will not appear when I invoke widget.show() from within a handler for another widget. I am completely clueless as to why these 2 widge

Re: PyQt documentation

2005-02-11 Thread Diez B. Roggisch
> The docs of the Riverbank site is poor, and I have found separate > tutorials on the net. > > I know that the Kompany have made a "Qtdoc"-like to PyQt. But it is not > free doc. You can use the qt c++ doc from trolltech. The pyqt bindings are so close to the orig

Re: PyQt documentation

2005-02-11 Thread Tim Jarman
Eric Jardim wrote: > Hi, > > Is there any site that gather all the documentation about PyQt? > > The docs of the Riverbank site is poor, and I have found separate > tutorials on the net. > Check out http://www.opendocs.org/pyqt/ > I know that the Kompany have made a &

Re: PyQt documentation

2005-02-11 Thread Eric Jardim
> You can use the qt c++ doc from trolltech. > The pyqt bindings are so close to he original that > you usually can simply use that. Yes, I currently use it. > Additionally, there is a book from boudewijn rempt > about coding in python+qt which is for qt2, but > it covers a

Re: PyQt documentation

2005-02-11 Thread Diez B. Roggisch
ittle mistake I do, that could be avoided if a simple > example explained it. And a searchable API with examples would be > perfect for rapid development. > > Think about more *new* people using PyQt. I think PyQt if a great > (actually the gratest ever, IMO) development "e

Re: PyQt documentation

2005-02-11 Thread djw
Eric Jardim wrote: Hi, Is there any site that gather all the documentation about PyQt? The docs of the Riverbank site is poor, and I have found separate tutorials on the net. I know that the Kompany have made a "Qtdoc"-like to PyQt. But it is not free doc. Does anybody know anything

Re: PyQt documentation

2005-02-11 Thread Jarek Zgoda
djw napisał(a): 6. Convert QStrings with str() from Qt functions/methods if you want to work with them with std. Python string functions No, no, no, don't do it, don't use str()! Your python will choke in any non-ascii character! Use unicode objects and you will be safe from those non-anglosaxon

Re: PyQt documentation

2005-02-11 Thread Eric Jardim
[...] > So maybe a better way for you would be to learn python by its own, then > trying to use it in conjunction with qt. [...] The purpose of doing this help is not to help *me*, but help *anyone* who wants to use PyQt. I myself am quite confortable with the Qtdoc. But there are cases th

Re: PyQt documentation

2005-02-11 Thread Diez B. Roggisch
Eric Jardim wrote: > *You* may not need. But think about other people. By the way, I found 9 > "I"s on your last message. Don't be that selfish :) That's right - and it was done to express not my unarguably existing selfishness, but to strech the fact that it was my opinion that not necessarily qu

Re: PyQt documentation

2005-02-11 Thread Eric Jardim
[...] > No having said that, I totally agree that such information is surely needed > - but I doubt that it really makes sense to create full docs at a api > level. It would be hard to be in sync with the qt development itself. I agree with that. But there are alternative ways of doing this withou

wxPython vs. pyQt

2005-03-16 Thread eholbroo
I've narrowed down my toolkit selection for my project to wxPython and pyQt, and now i'd like to hear any opinions, war stories, peeves, etc, about them, particularly from anyone who's used _both_toolkits_. I'm only mildly interested in the IDEs and UI designers for each, as

PyQt QGridLayout question

2005-11-23 Thread Volker Lenhardt
Once again a maybe silly question, but I find no solution, neither in the documentation nor in examples. I have got some different layouts to change place by the help of a QGridLayout in its parent widget. To make it nice I use row/col spacing and stretch respectively as well as multicell widge

pyQt for windows

2005-12-23 Thread relativity
I have downloaded and installed pyQt 3.14 educational but when I run any of the examples I get an error saying qt-mtedu333.dll was not found. I have also installed the qt4 opensource version for windows but I am not sure everything was set up correctly. When I run configure it complains about

PyQT, QProcess.readyReadStdout() problem

2005-07-01 Thread aljosa
part of code: >>> try: self.isdnlog = QProcess(self) self.isdnlog.addArgument("/usr/bin/tail") self.isdnlog.addArgument("-f") self.isdnlog.addArgument("/home/aljosa/qt/isdn.log") [...] QObject.connect(self.isdnlog, SIGNAL("readyReadStdout()"), self.onPhoneCall) self.isdnlog.start() <<< pro

Re: pyQT 4

2005-07-25 Thread Ken Godee
> My question is : does anybody know when pyqt 4 will be distributed ? > http://www.riverbankcomputing.co.uk/pyqt/roadmap.php -- http://mail.python.org/mailman/listinfo/python-list

Re: PyQt Variables

2006-01-05 Thread Diez B. Roggisch
gregarican schrieb: > I have an application I'm writing using PyQt. I'm trying to create the > various windows by subclassing Qt objects. I have a subclassed > QMainWindow as the parent, and then a series of subclassed QWidgets as > other child windows that get used. How can

Re: PyQt Variables

2006-01-05 Thread gregarican
Diez B. Roggisch wrote: > Looks (or better smells) like a design smell to me. In Qt,and especially > PyQt, you rarely subclass widgets, as that makes you lose the > possibility to use the fabulous designer. The only thing I subclass in > PyQt are the designer-generetaed top-level-clas

PyQt Access Violations

2006-01-07 Thread gregarican
I noticed that when I invoked the setCentralWidget() method using PyQt 3.13 on Python 2.3.5 opening and closing a widget associated with a main window would result in a Win32 access violation crash after a couple of times. Here's a generic snippet: class Application_Window(QMainWindow):

PyQt 4.0beta1 Released

2006-04-29 Thread Phil Thompson
Riverbank Computing is pleased to announce the release of PyQt v4.0beta1 available from http://www.riverbankcomputing.co.uk/pyqt/. PyQt is a comprehensive set of Qt bindings for the Python programming language and supports the same platforms as Qt (Windows, Linux and MacOS/X). Like Qt, PyQt is

pyqt show wizard

2006-06-07 Thread Yves Glodt
Hi, I have a mainwindow in my pyqt application, and on click of a button I want to start an assistant (wizard). I have create the wizard with the Qt Designer, generated the python code with pyuic, imported it "from assistant import *", and subclassed it as usual. To show it, t

Re: PyQt issue

2006-03-03 Thread Phil Thompson
On Friday 03 March 2006 6:39 pm, [EMAIL PROTECTED] wrote: > I'm trying to write a simple dialog with PyQt. Ive got this code as > one of the slots: > > def setFixed(self): > if len(str(self.fixed_label.displayText())) == 0: > QMessageBox.critic

Re: PyQt issue

2006-03-03 Thread Diez B. Roggisch
[EMAIL PROTECTED] schrieb: > I'm trying to write a simple dialog with PyQt. Ive got this code as > one of the slots: > > def setFixed(self): > if len(str(self.fixed_label.displayText())) == 0: > QMessageBox.critical(self, "Label Missing

Re: PyQt issue

2006-03-03 Thread dmbkiwi
Hangs head in shame. Slinks off with tail between legs. Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: PyQt issue

2006-03-04 Thread Damjan
> Because you wrote curentText - note the missing t. :) You mean the missing 'r' :) -- http://mail.python.org/mailman/listinfo/python-list

Pyqt programming question

2007-04-12 Thread Marcpp
I have a program (python + pyqt), with a button I'll would to open a new dialog window to input text, when press save or ok, this text is returned to the principal program. I've seek in internet but i don't find anything. -- http://mail.python.org/mailman/listinfo/python-list

[PyQt] windows problem

2006-11-29 Thread hankpai
Dumb question from extreme newbie. Steps so far: 1. Installed Python 2.5 2. Installed Qt 4.2.1 (with mingw) from executable 3. Installed PyQt 4.1 from executable Been trying to run the first example (t1.pyw) in the tutorials folder, but the following error pops up while running the from idle

Re: PyQt: QListviewItemIterator

2007-01-16 Thread David Boddie
On Tuesday 16 January 2007 18:57, Tina I wrote: > I have a QListView with a number of columns. In order to filter the > output I iterate using QListViewItemIterator looking for the string > entered by the user (filterString). Currently I do it this way: [Reformatted code for quoting purposes] >

Re: PyQt: QListviewItemIterator

2007-01-16 Thread Tina I
David Boddie wrote: > > When it.current() returns None. You can rewrite what you already > have like this: > > it = QListViewItemIterator(self.authListView) > while it.current(): > item = it.current() > if item.text(0).contains(filterString) or \ > item.text(1).contains(filter

PyQt install problem

2007-02-08 Thread Ron Monroig
hi Bruce, I was trying to interpret the code you wrote for xroot.sh. I saw it on pg 115 in Sitepoint's "Run Your Own Web Server Using Linux & Apache" Could you possibly consider commenting on what each line of code is doing? It works; the warning message goes away. I just don't underst

PyQT installation /configuration

2006-07-15 Thread [EMAIL PROTECTED]
Hi there. I've been trying to get PyQT working on W2K, but have not yet found a sufficiently detailed walk-through for my somewhat command-line-challenged sensibilities. I did find this page: http://www.diotavelli.net/PyQtWiki/GPLPyQtWindows , but I'm not sure about installing the whole

pyqt scrollview layout

2006-07-21 Thread Felix Steffenhagen
Hello, I have a problem with updating contents in a qscrollview. I've implementented two widgets (PremiseInput and PremiseList). You can find the source code under http://www.informatik.uni-freiburg.de/~steffenh/premiseinput.{html|py} and http://www.informatik.uni-freiburg.de/~steffenh/premiselist

PyQt on a Server

2004-11-29 Thread Bob Parnes
I have an application importing qt on a linux server and am missing something in trying to run it from a workstation via nfs. The workstation has the server /usr directory mounted to its own /usr directory, so it can access the necessary files. The error I get is Traceback (most recent call las

Any books on PyQt

2004-12-12 Thread Michael McGarry
Hi, Do any books cover PyQt? Michael -- http://mail.python.org/mailman/listinfo/python-list

Re: Problems with PyQt

2005-01-28 Thread Phil Thompson
I suggest that you post your question to the PyKDE mailing list and include a complete example that demonstrates your problem as an attachment (so the indentation is preserved). Phil On Friday 28 January 2005 9:42 pm, Michael McGarry wrote: > Hi, > > I am having a problem making a widget appear

Re: wxPython vs. pyQt

2005-03-16 Thread Scott Frankel
I have just started using wxPython. I selected it over pyQT for licensing reasons. I'm no gui app expert. But that said, I've found the toolkit approachable and the user community very helpful. Scott On Mar 16, 2005, at 9:11 PM, [EMAIL PROTECTED] wrote: I've narrowed

Re: wxPython vs. pyQt

2005-03-16 Thread Simon John
I used to be a wxPython lover, but it was mainly due to the crappy PyQt licensing terms, rather than any merits of wx (although I like the native LnF). After trying to do a large-ish project using wxPython, I found that I was limited by the lack of widgets and the layout system. My latest

Re: wxPython vs. pyQt

2005-03-17 Thread Giovanni Bajo
[EMAIL PROTECTED] wrote: > I've narrowed down my toolkit selection for my project to wxPython and > pyQt, and now i'd like to hear any opinions, war stories, peeves, etc, > about them, particularly from anyone who's used _both_toolkits_. I'm > only mildly interes

Re: wxPython vs. pyQt

2005-03-17 Thread tc
Has anyone compiled binaries for qt/pyqt/eric3. i'd really like to try it. at the moment i work with wxWindows and BoaConstructor which i'm actually not so happy with. design of gui's with wx is not very efficient... so is there already a binary for qt/pyqt/eric3 available or whe

Re: wxPython vs. pyQt

2005-03-17 Thread foobar
tc wrote: > Has anyone compiled binaries for qt/pyqt/eric3. i'd really like to try > it. at the moment i work with wxWindows and BoaConstructor which i'm > actually not so happy with. design of gui's with wx is not very > efficient... > > so is there already a b

Re: wxPython vs. pyQt

2005-03-17 Thread Ken Godee
tc wrote: Has anyone compiled binaries for qt/pyqt/eric3. i'd really like to try it. at the moment i work with wxWindows and BoaConstructor which i'm actually not so happy with. design of gui's with wx is not very efficient... so is there already a binary for qt/pyqt/eric3 availabl

Re: wxPython vs. pyQt

2005-03-17 Thread Simon John
"so is there already a binary for qt/pyqt/eric3 available or when can i excpect qt4 to be released? " I think that pyqt4 is going to be a long way off, obviously further away than qt4. i have compiled qt 3.3.3/pyqt 3.1.3 using mingw/vcc6 for windows using the instructions i linke

Re: wxPython vs. pyQt

2005-03-18 Thread RM
Of course, the licensing terms may still be too restrictive for those that want to create comercial closed source applications and can't afford the comercial license of Qt. That is why, for many, wxPython will remain the preferred choice. Being that you are inclined use Xemacs and xterm for your

Re: wxPython vs. pyQt

2005-03-18 Thread Mike P.
tp://www.trolltech.com/success/index.html For Trolltech's Qt tools, look at: http://www.trolltech.com/screenshots/tools.html Personally for ease of use Qt is the way to go. I'm really looking forward to Qt 4 coming out, and then sometime later PyQt 4. Then I'll be able to develop with

Re: wxPython vs. pyQt

2005-03-18 Thread Swaroop C H
On Sat, 19 Mar 2005 15:55:23 +1100, Mike P. <[EMAIL PROTECTED]> wrote: > Personally for ease of use Qt is the way to go. I'm really looking forward > to Qt 4 coming out, and then sometime later PyQt 4. Then I'll be able to > develop with my favourite APIs (Qt, OpenGL, an

Re: wxPython vs. pyQt

2005-03-19 Thread Jarek Zgoda
[EMAIL PROTECTED] napisał(a): I've narrowed down my toolkit selection for my project to wxPython and pyQt, and now i'd like to hear any opinions, war stories, peeves, etc, about them, particularly from anyone who's used _both_toolkits_. I'm only mildly interested in the IDEs

Re: wxPython vs. pyQt

2005-03-19 Thread Hans-Peter Jansen
[EMAIL PROTECTED] wrote: > I've narrowed down my toolkit selection for my project to wxPython and > pyQt, and now i'd like to hear any opinions, war stories, peeves, etc, > about them, particularly from anyone who's used _both_toolkits_. I'm > only mildly interes

Re: wxPython vs. pyQt

2005-03-20 Thread Andrew E
Hans-Peter Jansen wrote: .. While in PyQt world, I found these advantages: + conceptually vastly superior + powerful api/widgets/features + fast as hell due to the efficient binding of a quite efficient lib + cool tools, that are unicode/translation aware + very efficient programming

Re: wxPython vs. pyQt

2005-03-20 Thread Duncan Booth
Swaroop C H wrote: > For those who don't know, Qt 4 on Windows will be available under GPL. > So, you can write a (GPLed) app using Qt 4 and run it on Windows, Mac, > Linux and even embedded! > Yes, but the FAQ implies to me that they really don't want to encourage people to use the GPL: > Q:

Re: wxPython vs. pyQt

2005-03-20 Thread John J. Lee
Andrew E <[EMAIL PROTECTED]> writes: > Hans-Peter Jansen wrote: > > .. > > While in PyQt world, I found these advantages: > > + conceptually vastly superior > > + powerful api/widgets/features > > + fast as hell due to the efficient binding of a quite ef

Re: wxPython vs. pyQt

2005-03-20 Thread Andrew E
(s) you want to use. Read the licenses. PyQt's licensing follows Qt's very closely, so no real complications there. Note PyQt (including a Qt license for use only with PyQt) is actually far cheaper than Qt alone (if you buy Blackadder). ok, thanks. I've just had a quick browse of

Re: wxPython vs. pyQt

2005-03-21 Thread [EMAIL PROTECTED]
since I'm developing in Tkinter, I'm intrigued by your comment that: "It allowed me to do things in hours, which literally took weeks with tkinter, " please elaborate! Cheers S -- http://mail.python.org/mailman/listinfo/python-list

PyQt on Python 2.4

2005-03-30 Thread Franz Steinhäusler
Hello, I installed PyQt-win-nc-msvc-3.13.exe then complained: no, qt-mt230nc.dll, i found this and copied into system32 directory. I installed then: PyQwt_Qt333-4.2.win32-py2.4.exe Traceback (most recent call last): File "Grab.pyw", line 65, in ? from qt import * ImportError:

pyqt and Eric 3

2005-04-27 Thread ChrisH
Are there any Eric 3 users out there? I've been thinking about trying it. Also, if I write scripts for internal use only at my company, do I have to purchase a Qt or pyqt license? Thanks for the info! Chris -- http://mail.python.org/mailman/listinfo/python-list

Re: pyQt for windows

2005-12-23 Thread Phil Thompson
On Friday 23 December 2005 8:39 pm, relativity wrote: > I have downloaded and installed pyQt 3.14 educational but when I run any of > the examples I get an error saying qt-mtedu333.dll was not found. I have > also installed the qt4 opensource version for windows but I am not sure > ev

Re: pyQt for windows

2005-12-23 Thread Bill
relativity wrote: > I have downloaded and installed pyQt 3.14 educational but when I run any of > the examples I get an error saying qt-mtedu333.dll was not found. I have > also installed the qt4 opensource version for windows but I am not sure > everything was set up correctly

Re: pyQt for windows

2005-12-24 Thread relativity
"Bill" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > relativity wrote: >> I have downloaded and installed pyQt 3.14 educational but when I run any >> of >> the examples I get an error saying qt-mtedu333.dll was not found. I have >> al

Re: pyQt for windows

2005-12-24 Thread relativity
"relativity" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > "Bill" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] >> relativity wrote: >>> I have downloaded and installed pyQt 3.14 educational but when I r

Re: PyQt Access Violations

2006-01-07 Thread Phil Thompson
On Saturday 07 January 2006 1:06 pm, gregarican wrote: > I noticed that when I invoked the setCentralWidget() method using PyQt > 3.13 on Python 2.3.5 opening and closing a widget associated with a > main window would result in a Win32 access violation crash after a > couple of tim

Re: PyQt Access Violations

2006-01-08 Thread gregarican
Hope this post doesn't duplicate, as a Google Groups error happened last attempt... Phil Thompson wrote: > What version of Qt? > > Phil It's version 2.3.0 non-commerical for Windows. My OS is Windows 2000 Professional SP4. Using this same version of Qt for a Ruby-based implementation of a simila

Re: PyQt Access Violations

2006-01-09 Thread gregarican
Phil Thompson wrote: > What version of Qt? > > Phil It's version 2.3.0 non-commerical for Windows. My OS is Windows 2000 Professional SP4. Using this same version of Qt for a Ruby-based implementation of a similar app I didn't experience the access violation crashes when invoking the setCentralWi

Re: PyQt Access Violations

2006-01-09 Thread gregarican
Phil Thompson wrote: > What version of Qt? > > Phil It's version 2.3.0 non-commerical for Windows. My OS is Windows 2000 Professional SP4. Using this same version of Qt for a Ruby-based implementation of a similar app I didn't experience the access violation crashes when invoking the setCentralWi

ANN: PyQt v3.15 Released

2005-09-04 Thread Phil Thompson
Riverbank Computing is pleased to announce the release of PyQt v3.14 available from http://www.riverbankcomputing.co.uk/pyqt/. Changes since the last release include: - improved integration between Qt's ActiveQt framework and Python's win32com modules - support for QScintilla v1.6

Re: PyQt 4.0beta1 Released

2006-04-29 Thread Skink
Phil Thompson wrote: > Riverbank Computing is pleased to announce the release of PyQt v4.0beta1 > available from http://www.riverbankcomputing.co.uk/pyqt/. > > PyQt is a comprehensive set of Qt bindings for the Python programming language > and supports the same platforms as Qt

Re: PyQt 4.0beta1 Released

2006-04-29 Thread Phil Thompson
On Saturday 29 April 2006 1:27 pm, Skink wrote: > Phil Thompson wrote: > > Riverbank Computing is pleased to announce the release of PyQt v4.0beta1 > > available from http://www.riverbankcomputing.co.uk/pyqt/. > > > > PyQt is a comprehensive set of Qt bindings

pyqt v3.* and v4.*

2006-05-02 Thread Skink
Hi, Is it possible to have both versions of pyqt (in my case 3.14.1 and 4.0)? Version 3 is built using sip 4.2.1, version 4 is built using sip 4.4.3 When I run pyqt 4.0 (but with installed sip 4.2.1) I get: from PyQt4 import QtCore, QtGui TypeError: invalid argument to sipBadCatcherResult

Re: PyQt 4.0beta1 Released

2006-05-03 Thread Michael 'Mickey' Lauer
Phil Thompson <[EMAIL PROTECTED]> wrote: > On Saturday 29 April 2006 1:27 pm, Skink wrote: > > Phil Thompson wrote: > > > Riverbank Computing is pleased to announce the release of PyQt v4.0beta1 > > > available from http://www.riverbankcomputing.co.uk/pyqt/. > &

Re: pyqt show wizard

2006-06-07 Thread David Boddie
Yves Glodt wrote: > I have a mainwindow in my pyqt application, and on click of a button I > want to start an assistant (wizard). > > I have create the wizard with the Qt Designer, generated the python code > with pyuic, imported it "from assistant import *", and

Re: pyqt show wizard

2006-06-07 Thread David Boddie
Summary of the usual mess made by the Google Groups web interface: I suspect that you really want to call w.exec_loop() instead, since this will only return control to the method after the user has finished interacting with the wizard. Take a look at the QWizard documentation for more informati

Re: pyqt show wizard

2006-06-07 Thread Iain King
David Boddie wrote: > Summary of the usual mess made by the Google Groups web interface: > > > I suspect that you really want to call w.exec_loop() instead, since > this will only return control to the method after the user has finished > interacting with the wizard. > > > Take a look at the QWiza

PyQt - multiple window instances?

2006-02-24 Thread gregarican
I have an PyQt app were I need one of the windows to be able to be opened more than one at a time. When I try to open it I only get one instance at the same time. The main class is the QWidget() class with a QGridLayout() displaying the various window components. Is there a certain flag I need to

ANN: PyQt v3.16 Released

2006-03-25 Thread Phil Thompson
Riverbank Computing is pleased to announce the release of PyQt v3.16 available from http://www.riverbankcomputing.co.uk/pyqt/. The main benefit of this release is that it can be installed side by side with the soon-to-be-released PyQt v4 (for Qt v4). Other changes since the last release

ANN: PyQt v4.1 Released

2006-11-05 Thread Phil Thompson
Riverbank Computing is pleased to announce the release of PyQt v4.1 available from http://www.riverbankcomputing.co.uk/pyqt/. The highlights of this release include: - support for Qt v4.2 including QGraphicsView and related classes, the undo framework, widget stylesheets, and integration with

Re: Pyqt programming question

2007-04-12 Thread Phil Thompson
On Thursday 12 April 2007 10:23 am, Marcpp wrote: > I have a program (python + pyqt), with a button I'll would to open a > new dialog window to input text, when press save or ok, this text is > returned to the principal program. > I've seek in internet but i don

Re: Pyqt programming question

2007-04-12 Thread Marcpp
On 12 abr, 11:48, Phil Thompson <[EMAIL PROTECTED]> wrote: > On Thursday 12 April 2007 10:23 am, Marcpp wrote: > > > I have a program (python + pyqt), with a button I'll would to open a > > new dialog window to input text, when press save or ok, this text is > >

Re: Pyqt programming question

2007-04-12 Thread Phil Thompson
On Thursday 12 April 2007 11:07 am, Marcpp wrote: > On 12 abr, 11:48, Phil Thompson <[EMAIL PROTECTED]> wrote: > > On Thursday 12 April 2007 10:23 am, Marcpp wrote: > > > I have a program (python + pyqt), with a button I'll would to open a > > > new dialog wi

  1   2   3   >