[PyQt] QWebView.page() and setPage()

2013-02-03 Thread Jiangcheng Bao
I am trying to store a current page held by QWebView away, then after loading and processing a different page, restore the previous page, without having to actually request it again, but it seems that by doing the following, the application lost my original page, and still gives me back the new one

[PyQt] ANN: 64-bit Installer for PyQt v4.10-rc1, Qt v5.0.1, Python v3.3

2013-02-03 Thread Phil Thompson
I've created a 64-bit Windows installer containing current PyQt, SIP and QScintilla snapshots and Qt v5.0.1. This is for Python v3.3. It includes QWebKit, support for OpenSSL and the usual collection of SQL drivers. It also includes accessibility support. I'd appreciate it if people could try it

[PyQt] [BUG] No exception reports in a QThread with Python 3

2013-02-03 Thread Richie Ward
If you run the following code with Python 3, you will not recieve a exception; dispite it being blatently wrong. import sys from PyQt4 import QtGui, QtCore class FooThread(QtCore.QThread): def run(self): beeswax return if __name__ == "__main__": app = QtGui.QApplication(

[PyQt] ANN: eric 5.3.0 released

2013-02-03 Thread Detlev Offenbach
Hi, I just uploaded eric 5.3.0. It is a new major release fixing some bugs and adding these new features. - General -- introduced a "workspace" directory that is used as the default for opening or saving new files or projects (configurable on Multiproject config page) -- added sup

Re: [PyQt] Texturing using PyQt/PySide

2013-02-03 Thread Vincent Vande Vyvre
Le 03/02/13 11:20, the lily a écrit : > > thanks but I do not wanna show the image on button I wanna show it on > a window > > > From: niceguy...@gmail.com > Date: Sun, 3 Feb 2013 15:35:56 +0530 > Subject: Re: [PyQt] Texturin

Re: [PyQt] Texturing using PyQt/PySide

2013-02-03 Thread šãñ
you can use QImage !!! or QScene or I have not played with it yet.. On Sun, Feb 3, 2013 at 3:50 PM, the lily wrote: > > thanks but I do not wanna show the image on button I wanna show it on a > window > > -- > From: niceguy...@gmail.com > Date: Sun, 3 Feb 2013 15:35:

Re: [PyQt] Texturing using PyQt/PySide

2013-02-03 Thread the lily
thanks but I do not wanna show the image on button I wanna show it on a window From: niceguy...@gmail.com Date: Sun, 3 Feb 2013 15:35:56 +0530 Subject: Re: [PyQt] Texturing using PyQt/PySide To: the.1.l...@hotmail.com CC: pyqt@riverbankcomputing.com Do you mean Image ? if so , you can display a

Re: [PyQt] Texturing using PyQt/PySide

2013-02-03 Thread šãñ
Do you mean Image ? if so , you can display an image like this *self.btn1 = QtGui.QPushButton("") img_mIcon = QtGui.QPixmap(":images/icon_maya-small.png") self.btn1.setIcon(QtGui.QIcon(img_mIcon))* On Sun, Feb 3, 2013 at 3:26 PM, the lily wrote: > Hi > > I'm new to pyside/pyqt > I would like

[PyQt] Texturing using PyQt/PySide

2013-02-03 Thread the lily
Hi I'm new to pyside/pyqt I would like to apply a texture and displays it into a window using one of themI found only one example that is listed in the Qt website but it is complicated since I got lost between the different functions I just want to know if I have an image called A for example ho