Re: [PyQt] Create an installer package

2012-04-05 Thread Tony Peña
hi, sorry by my english your better option is make an egg python installer with setup.py enviroment.. and the rest of process... in the internet exist many examples about it how to make it ... the way as you say like windows with similars wizard setup can use installjammer.. to make a .bin

Re: [PyQt] Couldn't find PyQt 4.8.x with Qt 4.7 to download

2012-04-03 Thread Tony Peña
Here can found it! http://www.lfd.uci.edu/~gohlke/pythonlibs/ El 3 de abril de 2012 05:28, Adil Güneş Akbaş a...@ozguryazilim.com.trescribió: Hi, I had some problems on converting a Python script into an .exe(Windows) package. I could convert it successfully but it didn't work as expected.

[PyQt] Fwd: question about image on QWebKit

2012-01-24 Thread Tony Peña
Hi, again.. i send this twice because the image not exist i update URL to can see my trouble... i´m working over linux, and when i try to execute on windows i get this image bug on QWebKit check the image and take a look of the airplane between the 2 green-red lines http://imagebin.org/195291

Re: [PyQt] ui gives different look in Designer than when loaded

2012-01-16 Thread Tony Peña
You can set this enviroment of the GUI to any plataform fixing the theme with this like when you see in the Qt-Designer with View-Form adding this lines as example in the def main(): QApplication.setStyle(QStyleFactory.create(Cleanlooks))

[PyQt] new widget?

2011-11-27 Thread Tony Peña
Hi list Just for ask... If someone extra want to add new widgets components to can use into Qt4-Designer... how or where can read about it? if exist that way... could be possible to make one with pyqt4 and not using C++? in my case prefers pyqt4 because don´t know anything about it C/C++

Re: [PyQt] Android support?

2011-11-26 Thread Tony Peña
Well... maybe this help http://www.pyside.org/ 2011/11/26 Albert Cervera i Areny alb...@nan-tic.com ** A Dissabte, 26 de novembre de 2011 13:11:48, Phil Thompson va escriure: On Sat, 26 Nov 2011 19:50:08 +0800, zw g pekingmas...@gmail.com wrote: Thanks for your quick reply, Phil.

[PyQt] Fwd: Android support?

2011-11-26 Thread Tony Peña
sorry . this one is my link not before http://thp.io/2011/pyside-android/ explain how use python with qt bindings for android cheers -- Forwarded message -- From: Tony Peña emperor...@gmail.com Date: 2011/11/26 Subject: Re: [PyQt] Android support? To: pyqt

[PyQt] Print with PyQt4 at Windows

2011-10-01 Thread Tony Peña
Hi i need to devel an app ... and i guess i have all about develop with python + qt4 + use qtsql for the backend of database, a little designer but... how can i use data stored to print at Windows Printer?... exist some like QuickReport for Delphi? but for PyQt4? or some widget or module ...

[PyQt] qwebview into qtabwidget

2011-08-27 Thread Tony Peña
hi, i want some like this but not adding new tab http://stackoverflow.com/questions/4766186/qwebview-auto-tabs i have the tab and have 6 pages... i need said in the page(2, loadURL) thanxs for all -- Antonio Peña Secure email with PGP 0x8B021001 available at http://pgp.mit.edu

[PyQt] how aim same function to other tables

2011-08-24 Thread Tony Peña
hi I want to use same function to other tables like this tablename = Searchtable but could be table1 table2 table3 ... table n addAction.triggered.connect(self.addFriend) - This works ok def addFriend( self, event): tablename = 'SearchtableWidget' table_obj = getattr(self.ui, tablename)

Re: [PyQt] Adding a table to GUI in QT Designer

2011-08-22 Thread Tony Peña
yes it's possible to do that... read about QMenu classes to do the right click and maybe visit here to other examples http://www.rkblog.rk.edu.pl/w/p/python/#3 2011/8/22 Nader Abedrabbo aenad...@yahoo.com Greetings, I am new to PyQt. I am creating a GUI for a program I created in Python

[PyQt] Trying insert image into QTableWidget

2011-08-04 Thread Tony Peña
Hi i trying set logoimage into cell of QtableWidget all code runs ok but can't see the image in the table i try with .gif and .png files any idea? heres the code: ./airlines/ (many logosfiles in ABC.gif and ABC.png) if exist show up ifnot just say the code of aircraft

Re: [PyQt] Trying insert image into QTableWidget

2011-08-04 Thread Tony Peña
Ohh.. about errors.. ok it is for try excep pass.. sorry for that.. and yes i have use Qlabel with Pixmap in other QWIdgetTab and works.. i try it with QLabel again thanxs 2011/8/4 Vincent Vande Vyvre vincent.vandevy...@swing.be ** Le 04/08/11 18:06, Tony Peña a écrit : Hi i trying set

Re: [PyQt] Trying insert image into QTableWidget

2011-08-04 Thread Tony Peña
= '-' col_airline = QtGui.QTableWidgetItem(code_airline, 0) self.ui.PILOT_FullList.setItem(startrow, 0, col_airline) except: pass someone can made simple table 1x1 with a simple .gif, .png or .jpg example??? regards 2011/8/4 Tony Peña emperor...@gmail.com

[PyQt] problems with populate qtablewidget

2011-08-03 Thread Tony Peña
hi, some can help me with my little bit code http://pastebin.com/uyiiEYTvin this i have 2 problems... 1st. when i populate qtablewidget inthe debugger i can read all rows and columns value, 1 by 1.. but just show me out in the application 3 columns 2,3 and 4 with all rows values .. and 2nd

[PyQt] populate Qcombobox

2011-07-28 Thread Tony Peña
Hi. I have some data into DB and i want to populate that into Combobox and get some errors for countries in cursor.execute(SELECT Country FROM iata_icao_codes;): self.connect(self.ui.country_list.addItem(0, str(countries))) error: TypeError: arguments did not match any

Re: [PyQt] populate Qcombobox

2011-07-28 Thread Tony Peña
self.ui.country_list.addItem(country) thanxs any way for all :) 2011/7/28 Vincent Vande Vyvre vincent.vandevy...@swing.be ** Le 28/07/11 20:22, Tony Peña a écrit : Hi. I have some data into DB and i want to populate that into Combobox and get some errors for countries in cursor.execute(SELECT Country FROM