Re: [PyQt] A good PyQt “Primer”?

2012-12-11 Thread šãñ
I want this book but I don't have cash to buy it. On Tue, Dec 11, 2012 at 4:30 PM, Tony Lynch wrote: > We have this book and have found it to be an excellent guide, > > Tony > > > -Original Message- > > From: pyqt-boun...@riverbankcomputing.com [mailto:pyqt- > > boun...@riverbankcomputi

Re: [PyQt] A good PyQt “Primer”?

2012-12-11 Thread šãñ
; Joseph David Borġ > http://www.jdborg.com > > > > On 11 December 2012 11:08, šãñ wrote: > >> I want this book but I don't have cash to buy it. >> >> >> On Tue, Dec 11, 2012 at 4:30 PM, Tony Lynch wrote: >> >>> We have this book and have found i

Re: [PyQt] A good PyQt “Primer”?

2012-12-11 Thread šãñ
mp;url=http%3A%2F%2Fwodepics.googlecode.com%2Ffiles%2Frapid_gui_programming_with_python_and_qt.pdf&ei=ryPHUKHOBOSg0QXAuID4BQ&usg=AFQjCNFx8WHD7QPD3Kj-SdUpl3pJFlJDcw > > > > > > Regards, > Joseph David Borġ > http://www.jdborg.com > > > > On 11 December 201

[PyQt] how do I reorder items of QListWidget

2012-12-11 Thread šãñ
so far I came up with this script i am not sure why it is not giving me desired result ** *def changePriority(self,*args): crntRow = self.listWidget.currentRow() total=self.listWidget.count() print "Total no. of items %s, and selected item number is %s"%(total,crn

Re: [PyQt] A good PyQt “Primer”?

2012-12-11 Thread šãñ
n Tue, Dec 11, 2012 at 3:08 AM, šãñ wrote: > >> I want this book but I don't have cash to buy it. >> >> >> On Tue, Dec 11, 2012 at 4:30 PM, Tony Lynch wrote: >> >>> We have this book and have found it to be an excellent guide, >>> >>

Re: [PyQt] SyntaxError when byte-compiling PyQT

2012-12-28 Thread šãñ
you have to put path in brackets.. , however I hope you know py2app means version of Python 2x and you are using python 3. On Fri, Dec 28, 2012 at 4:26 PM, Nicolas Jouanin wrote: > Hi, > > I develop a PyQT (4.9.6) application on MacOS (10.8.2) and I have problem > when packaging with py2app. > I

Re: [PyQt] A good PyQt “Primer”?

2013-01-10 Thread šãñ
Guess what the book doesnt talks about QFileSystemModel anywhere at all :( On Wed, Dec 12, 2012 at 12:43 AM, šãñ wrote: > I have started with this very basic stuff to begin with... > > > > On Wed, Dec 12, 2012 at 12:41 AM, Nico Dufort wrote: > >> This one is fairly ea

Re: [PyQt] A good PyQt “Primer”?

2013-01-11 Thread šãñ
are you planning to come with next version of this book, and if u r consider PySide differences and some apps example based on Pyside too.. On Fri, Jan 11, 2013 at 1:58 PM, Mark Summerfield wrote: > On Thu, 10 Jan 2013 23:50:05 +0530 > šãñ wrote: > > Guess what the book doesnt

Re: [PyQt] [PySide] same Pyside app doesnt dispays result as in Ubuntu like it is working fine in Windows

2013-01-12 Thread šãñ
as of now I just have access to Ubuntu [?] On Sat, Jan 12, 2013 at 7:34 PM, Lucas Tanure wrote: > Have you tried some other distributions ? > Like Arch Linux, Suse , fedora? > > > -- > Lucas Tanure > -- ** [image: San's personal blog] * * <<323.g

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

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] QMainWindow freezes

2013-04-15 Thread šãñ
make sure u have something like this when u call QMainwindow def main(argv): app = QtGui.QApplication(argv) yourMainWin = MainWindUI() yourMainWin.show() app.exec_() if __name__ == "__main__": sys.exit(main(sys.argv)) On Mon, Apr 15, 2013 at 4:27 PM, wrote: > Hey guys, >

Re: [PyQt] how many users

2013-04-19 Thread šãñ
PySide rocks!!! On Fri, Apr 19, 2013 at 8:33 PM, John Fabiani wrote: > Hi folks, > I realize questions like "how many downloads" and "how many users of > 'pyqt" are often asked and never answered to anyone's satisfaction. But I > need to justify the use of pyqt and the question comes up in disc

[PyQt] how to install Pyqt4 on OS X ?

2013-04-23 Thread šãñ
I have downloaded the tar for mac osx ... I am totally new to OSx migrating from Windows OS .. so pls guide... -- ** [image: San's personal blog] * * ___ PyQt mailing listPyQt@riverbankcomputing.com http

Re: [PyQt] how to install Pyqt4 on OS X ?

2013-04-23 Thread šãñ
i am using python 2.6 so probably Python2 and is this really required - Install the latest Qt 5.0.2 for Mac (binary install) from qt-project.org if yes i would need Qt4 i am just going to use it to make apps in PyQt4 as of now... On Wed, Apr 24, 2013 at 3:03 AM, James Ross wrote: > > > Refe

Re: [PyQt] how to install Pyqt4 on OS X ?

2013-04-27 Thread šãñ
PyQtX is only available for 2.7 & 3.x On Wed, Apr 24, 2013 at 12:11 PM, James Ross wrote: > > i am using python 2.6 so probably Python2 > > > > and is this really required - Install the latest Qt 5.0.2 for Mac > > (binary install) from qt-project.org > > > > if yes i

Re: [PyQt] regarding report generation

2013-06-15 Thread šãñ
use windows compatible Python API... On Thu, Jun 13, 2013 at 5:05 PM, mohit sarla wrote: > Hi, > I have written code for generate report(.pdf) in PyQt4 in linux > plateform, report is generated. But the same code is not working on > windows, what is the problem and what is the solution for