On 7 Jun 2011 16:27:32 GMT, Peter Pearson
wrote:
> On Tue, 07 Jun 2011 16:55:28 +0200, Alain Ketterlin wrote:
>> Chris Gonnerman writes:
>>
>>> On the 30th of May, I received an email from a man (I'll leave out his
>>> name, but it was properly male) offering to translate the docs for the
>>> gdm
On Fri, 19 Aug 2011 10:15:20 -0700 (PDT), Edgar Fuentes
wrote:
> Dear friends,
>
> I need execute an external program from a gui using PyQt4, to avoid
> that hang the main thread, i must connect the signal "finished(int)"
> of a QProcess to work properly.
>
> for example, why this program don't
On Fri, 19 Aug 2011 14:32:12 -0700 (PDT), Edgar Fuentes
wrote:
> On Aug 19, 4:21 pm, Carl Banks wrote:
>> On Friday, August 19, 2011 12:55:40 PM UTC-7, Edgar Fuentes wrote:
>> > On Aug 19, 1:56 pm, Phil Thompson
>> > wrote:
>> > > On Fri, 19 Aug 2
On 3 Oct 2016, at 4:29 am, John Ladasky wrote:
>
> On Sunday, October 2, 2016 at 7:21:15 PM UTC-7, blue wrote:
>> You have here a PyQt5 Reference Guide
>> http://pyqt.sourceforge.net/Docs/PyQt5/index.html
>> Some example can be found here 4 and 5
>> http://codeprogress.com/python/libraries/pyqt
On 4 Oct 2016, at 5:57 am, John Ladasky wrote:
>
> On Monday, October 3, 2016 at 1:30:29 AM UTC-7, Phil Thompson wrote:
>> On 3 Oct 2016, at 4:29 am, John Ladasky wrote:
>
>>> And as you can see: trying to call versionFunctions() is exactly where my
>>> pro
On 19 Oct 2016, at 11:07 am, Paul Moore wrote:
>
> I'm looking to write a GUI application in Python (to run on Windows, using
> Python 3.5). The application is just a relatively thin wrapper around a
> browser - it's presenting an existing web application, just in its own window
> rather than
On 26 Oct 2016, at 10:36 am, luca72 via Python-list
wrote:
>
> Hello i hope that yo can reply to this question also if the argument is pyqt
>
> i have a simple test:
> def start_timer(self):
>self.timer = QTimer()
>testo = 'pressed'
>self.timer.singleShot(1000, self.mett
On 26 Oct 2016, at 1:29 pm, luca72 via Python-list
wrote:
>
> I get () missing 1 required positional argument: 's'
Sorry, it should have been...
lambda: self.metto_testo(testo)
Phil
--
https://mail.python.org/mailman/listinfo/python-list
On 12 Dec 2016, at 7:38 pm, Bob Gailer wrote:
>
> On Dec 12, 2016 2:30 PM, "Xristos Xristoou" wrote:
>>
>>
>> hello i want to install sip on windows bit using python
>> 32 bit.
>> i download sip from this link https://www.riverbankcomputing.com
>> i try to install from cmd line :
>>
>> C:\WIN
On 12 Dec 2016, at 7:29 pm, Xristos Xristoou wrote:
>
>
> hello i want to install sip on windows bit using python
> 32 bit.
> i download sip from this link https://www.riverbankcomputing.com
> i try to install from cmd line :
>
> C:\WINDOWS\system32>cd C:\Users\username\Desktop\sip-4.17
>
> C
be installed.
Source packages and more information can be found at
https://www.riverbankcomputing.com/.
Phil Thompson
--
https://mail.python.org/mailman/listinfo/python-list
On 10 Feb 2019, at 12:08 pm, Barry Scott wrote:
>
> After calling PyObject_GetAttrString() I expected to get a PyObject string
> back but I found that I had been given a instead.
>
> (gdb) p *args_o
> $4 =
>
> What is going on and how do I get from the to the object
> I
> want?
The "Str
On Thursday 17 November 2005 2:56 pm, Volker Lenhardt wrote:
> For a QApplication (PyQt) on the small screen of my Zaurus 5500 PDA I
> try to layout my data output in a QScrollView as the central widget. I'd
> prefer to use QGridLayout, but cannot add it to the scroll view.
>
> sc=QScrollView(self)
On Friday 02 December 2005 3:31 pm, [EMAIL PROTECTED] wrote:
> I am a newcomer to using Python and Qt and the main problem that I have
> is the dearth of any example code or books describing the use of Python
> and Qt together.
>
> My current problem is that I want to create a custom cursor, from m
> I have a collection of multi-threaded command line tools which I want wrap
> a
> PyQt gui around. I'm using queues to route messages from the command line
> tools to the PyQt gui. The command line tools use python threads to do
> their work. The gui uses a QThread object to read incoming messag
> Hi,
>
> can someone provide me with a running example for subclassing QWidget (or
> something similarly simple) in C++ and then creating SIP (4.x+) bindings
> for in for Python (2.3+)?
>
> I am looking for something I can start of with and work my way towards
> more
> complicated stuff (with Qt).
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
So have you created the library you are trying to wrap? The documentation is
describing how to wrap a library and describes a fictional library as the
basis for the example.
Phil
On Friday 28 January 2005 11:02 pm, Uwe Mayer wrote:
> Friday 28 January 2005 23:39 pm Uwe Mayer wrote:
> > Friday 2
> hello
> I have QT 3.1.1 educational on my computer (Win XP)
That doesn't sound like you are conforming to Trolltech's Educational
License. To quote:
" The product may only be used on school hardware and on the school's
premises."
> I tried to install several version of pyQt (PyQt edu 3.13 Edu,
> Hi
>
> Two questions :
>
> 1. Is it possible to use an import command in a qt3 designer code ? (I
> know
> that it is possible to write python inside the braces -- but is it
> possible
> to use an import command for some rather large libraries I wrote that I
> need to access ?).
You can include
On Thursday 11 August 2005 6:36 pm, Madhusudan Singh wrote:
> Hi
>
> Some of the functions I defined inside Qt Designer need to have some values
> passed to them.
>
> For instance :
>
> Code :
>
> void Form3::runningplot(n,plottitle,xname,x,y1name,y1,y2name,y2)
>
> is translated by pyuic to
>
> Pyt
> Decide your self:
>
> http://seal.web.cern.ch/seal/snapshot/work-packages/scripting/evaluation-report.html
A shame that it's so out of date.
Phil
--
http://mail.python.org/mailman/listinfo/python-list
Riverbank Computing is pleased to announce the release of SIP v4.3 available
from http://www.riverbankcomputing.co.uk/sip/.
SIP is a tool for generating Python modules that wrap C or C++ libraries. It
is similar to SWIG. It is used to generate PyQt and PyKDE. Full
documentation is available
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
- support for
> After quite a while of wxPython I'm getting back into PyQt, mainly due
> to the announcement by Trolltech that they will make a GPL version of
> Qt4 for Windows (and Phil-T said he will make a PyQt to go with it
> eventually!)
>
> I'm currently using PyQt 3.12 that comes with the BlackAdder demo,
> I have a third-party DLL and it's associated .h file. The DLL was written
> in C. I have neither the associated .c files nor the .obj files for the
> DLL. Can I use SWIG or SIP to build something that will allow me to use
> the
> DLL with Python? And what is that something, an .obj file, anot
Riverbank Computing is pleased to announce the release of PyQt v3.14 available
from http://www.riverbankcomputing.co.uk/.
Changes since the last release include support for QScintilla v1.5.
PyQt is a comprehensive set of Qt bindings for the Python programming language
and supports the same plat
On Sunday 20 February 2005 8:42 pm, Simon John wrote:
> All looks like good news, especially PyQt4 - one question, if it's
> statically linked with Qt4, will it still work with things like py2exe?
Should do.
> I guess it just won't need qt-mt4.dll?
The binary will be provided for the Windows GPL
> Phil Thompson napisa³(a):
>
>> Riverbank Computing is pleased to announce the release of PyQt v3.14
>> available
>> from http://www.riverbankcomputing.co.uk/.
>
> Classes generated by puyic 3.13 are not compatible with PyQt 3.14 (some
> method signature incompat
This is likely to be a Qt/X setup problem - PyQt doesn't explicitly call
Xrender.
Does your workstation /etc/ld.so.conf contain a line for /usr/X11R6/lib?
Phil
> 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
>
What versions of Python, PyQt, SIP, Qt?
Qt imposes restrictions on which parts of the API can be called in
different threads - check the Qt documentation.
Python has bugs in its thread implementation. These (the ones that affect
PyQt anyway) are fixed in Python 2.4.
Also see the "Support for Thr
On Friday 03 December 2004 2:50 pm, Fabio wrote:
> Hi all,
> I'm about to write an application, and I'd like to use PyQt, but before
> choosing this toolkit I would like to clarify some particular licensing
> issues; if some user has already touched these, I would like to hear from
> his experience
On Saturday 04 December 2004 10:30 am, Michael Sparks wrote:
> On Fri, 3 Dec 2004, Phil Thompson wrote:
> ...
>
> > The key is access to the Qt API. If your applications gives the users
> > access to the API then those users are developers and need their own
> > license
On Sunday 12 December 2004 4:11 pm, Michael McGarry wrote:
> Hi,
>
> Do any books cover PyQt?
>
> Michael
http://www.opendocs.org/pyqt/
Phil
--
http://mail.python.org/mailman/listinfo/python-list
> Hi,
>
> I'm trying to get PyQt up and running under Mac OS X 10.2.8, but
> can't get past configuring sip.
>
> I installed fink's qt3-3.2.3-2 and restarted my shells to get
> qt3's environment variables QTDIR and QMAKESPEC.
>
> I downloaded sip-4.1 from
> http://www.river-bank.demon.co.uk,
> unpa
> Michael McGarry wrote:
>> Hi,
>>
>> How do I convert from a qt.QString to a Python string?
>>
>> Michael
> Apparently the ascii() method of QString does this. (I answered my own
> question).
Or use the str() builtin.
Phil
--
http://mail.python.org/mailman/listinfo/python-list
> Here is another question, are you deploying in Linux, Windows, Mac, or
> some combination of these? I think that may be a big factor to
> consider. I do like the look of Qt under Linux, however, I have never
> seen it under Windows. Qt seems to be very focused in Linux, with Mac
> and Windows
> I admit that I don't know much about Qt in Windows. As, I said, I've
> never seen it. The fact that they don't offer a GPLed version for
> Windows is a deterrent for me.
>
> I have heard very nice things about Qt's api. I even bought a book on
> it, but since the apps I've needed to write, had
On Thursday 30 December 2004 1:27 am, Nanoscalesoft wrote:
> hello all,
> I am planning to start coding a nanoscale design software in
> python with QT interface.I have to do this in windows or linux.Intially
> windows would be fine.
> I have struggled almost full day today trying to make
> from im
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 work. Python
2.4 (and later) wil
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
> 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 *
> I
> Hello NG,
>
> (Win XP)
>
> I have successfully installed pyqt, but not
> qtext, which I need to run Eric3.
> The PyQT demo files run fine.
>
> I've downloaded QScintilla, compiled via MS-VC,
> but (I suppose I need the SIG), to translate or provide
> the Python interface with pyd Files.
>
> Eric
> On Tue, 5 Apr 2005 09:17:05 +0100 (BST), "Phil Thompson"
> <[EMAIL PROTECTED]> wrote:
>
>>> Hello NG,
>>>
>>> (Win XP)
>>>
>>> I have successfully installed pyqt, but not
>>> qtext, which I need to run Eric3.
>&g
> On Tue, 5 Apr 2005 10:14:48 +0100 (BST), "Phil Thompson"
> <[EMAIL PROTECTED]> wrote:
>
>>> On Tue, 5 Apr 2005 09:17:05 +0100 (BST), "Phil Thompson"
>>> <[EMAIL PROTECTED]> wrote:
>>>
>>> What steps are missing?
>&
> On Tue, 5 Apr 2005 11:43:38 +0100 (BST), "Phil Thompson"
> <[EMAIL PROTECTED]> wrote:
>
>>>[...]
>>> Or doesn't it fit with "Qt 3.3.4 Evaluation"
>>>
>>> Any hints?
>>
>>What version of Python do you hav
that the support matches that of
Qt 3.
> Also, somebody outside Trolltech was also doing a port of Qt 3 GPL to
> Windows which apparently got quite a long way. Whether that effort
> continues, and whether PyQt will support that 'unofficial' port, I
> don't know (n
On Thursday 28 April 2005 3:46 am, ChrisH wrote:
> In article <[EMAIL PROTECTED]>,
> [EMAIL PROTECTED] says...
>
> > 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
PyQt5 v5.2 has been released and is available from
http://www.riverbankcomputing.com/software/pyqt/download5.
PyQt5 is a comprehensive set of bindings for v5 of Digia's Qt
cross-platform application framework. It supports Python v3, v2.7 and
v2.6.
The highlights of this release include full sup
On 21/02/2016 3:43 pm, Arie van Wingerden wrote:
Python 3.5.1 installed in default Windows folder here:
C:\Users\Arie\AppData\Local\Programs\Python\Python35-32
PyQt5 installed - it creates a folder c:\Python34
In the Python REPL i try:
from PyQt5 import QtCore
Traceback (most recent call l
On 14/11/2014 2:18 pm, maurog wrote:
I looked at the newsgroup, but I didn't find recent infos on this
topic.
On the other side I went lost by looking for this topic with google. So
I'm asking you my question, if I want to develop or run some code with
python on android, what are the resources t
PyQt5 v5.4 has been released and is available from
http://www.riverbankcomputing.com/software/pyqt/download5.
PyQt5 is a comprehensive set of bindings for v5 of Digia's Qt
cross-platform application framework. It supports Python v3, v2.7 and
v2.6.
The highlights of this release include support
PyQt5 v5.3 has been released and is available from
http://www.riverbankcomputing.com/software/pyqt/download5.
PyQt5 is a comprehensive set of bindings for v5 of Digia's Qt
cross-platform application framework. It supports Python v3, v2.7 and
v2.6.
The highlights of this release include support
On Wed, 21 Aug 2013 21:04:47 -0500, Michael Staggs
wrote:
> I'm learning Python and I have a problem. I've asked the question
> everywhere
> and no one helps me, so I'm hoping someone here will. I am making a
> program
> that shows album covers and you click on the album cover in the top
> windo
On Thu, 22 Aug 2013 18:08:14 -0700 (PDT), tausc...@gmail.com wrote:
> On Thursday, August 22, 2013 3:26:17 AM UTC-5, Phil Thompson wrote:
>
>> It looks like you aren't using a layout to arrange your widgets.
>>
>> Explicitly specifying geometries is a bad idea.
>&
On Fri, 23 Aug 2013 08:00:29 -0500, Michael Staggs
wrote:
> I tried that this morning and it destroyed my form. So, right now,
that's
> probably not what I'm looking for.
>
> But, if you look at that picture, the app isn't resized to 800x600 like
it
> says in the ui file. The pixmaps aren't on th
On Fri, 23 Aug 2013 12:30:41 -0500, Michael Staggs
wrote:
> Right. I know that if I redesign it I have to run pyuic4 again and that
I
> shouldn't change that file...let qt designer do its job.
>
> But, that's exactly what I'm having the problem with...incorporating the
> file pyuic4 gave me... an
PyQt5 v5.1 has been released and is available from
http://www.riverbankcomputing.com/software/pyqt/download5.
PyQt5 is a comprehensive set of bindings for v5 of Digia's Qt
cross-platform application framework. It supports Python v3, v2.7 and
v2.6.
The highlights of this release include full supp
On 05/03/2015 5:31 pm, Mehdi wrote:
Hi
I know there are tools like cx_freeze or nuitka for making a linux
standalone python app. but i couldn't find a good tutorial about how
to making a portable gui-enabled python3 app in linux. by gui-enabled
i mean application which use any gui libs like pygob
PyQt5 v5.5 has been released and is available from
http://www.riverbankcomputing.com/software/pyqt/download5.
PyQt5 is a comprehensive set of bindings for v5 of The Qt Company's Qt
cross-platform application framework. It supports Python v3, v2.7 and
v2.6.
The highlights of this release include
On 21 Sep 2015, at 3:00 pm, Robin Becker wrote:
>
>
>>
>> The most reported problem trying to build anything on Windows that is Python
>> related.
>>
> .
>>
>> I'd be inclined to go for the reinstall, painful as that might be. I've
>> tried
>> finding the batch file as a sep
On Tue, 11 Oct 2011 11:57:28 +0200, Vincent Vande Vyvre
wrote:
> Le 11/10/11 10:39, luca72 a �crit�:
> helo i have this form how i can install the event filter:
> Class Form(QWidget, Ui_Form):
> """
> Class documentation goes here.
> """
> def __init__(self, parent = None):
> """
> Constru
PyQt v4.9 has been released and is available from
http://www.riverbankcomputing.com/software/pyqt/.
PyQt is a comprehensive set of bindings for the Qt application and UI
framework from Nokia. It supports the same platforms as Qt (Windows,
Linux and MacOS/X).
PyQt supports Python v3 and Python v2
On Wed, 20 Feb 2013 10:34:50 +0100, Roland Koebler
...
> [q] In Qt, it's also possible to generate such flexible layouts. But
> it's unfortunately not the default way in Qt, and the Qt designer only
> supports it rudimentarily, and in a much less obvious way. And Qt does
> not have such a "conta
On Wed, 20 Feb 2013 11:42:48 +0100, Roland Koebler
wrote:
> Hi,
>
>> > [q] In Qt, it's also possible to generate such flexible layouts. But
>> > it's unfortunately not the default way in Qt, and the Qt designer
only
>> > supports it rudimentarily, and in a much less obvious way. And Qt
does
>> >
On Wed, 20 Mar 2013 02:09:06 -0700 (PDT), jmfauth
wrote:
> On 20 mar, 01:12, "D. Xenakis" wrote:
>> Hi there,
>> Im searching for an installation guide for PyQt toolkit.
>> To be honest im very confused about what steps should i follow for a
>> complete and clean installation. Should i better cho
On Wed, 20 Mar 2013 03:29:35 -0700 (PDT), jmfauth
wrote:
> On 20 mar, 10:30, Phil Thompson wrote:
>> On Wed, 20 Mar 2013 02:09:06 -0700 (PDT), jmfauth
>> wrote:
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> > On 20 mar, 01:12, &qu
On Sunday 18 December 2005 10:21 pm, jelle wrote:
> Hi, I'm trying to run a python program which requires PyQt, which is
> installed properly on my machine, but unfortuanately it doesn't come
> with the required .dll to run the .pyd's, I'm missing qt-mtedu333.dll.
> This version is no longer availa
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
> everything was s
On Tuesday 27 December 2005 5:10 pm, Siraj Kutlusan wrote:
> I heard that you can use .ui files with python or something of the likes.
> Could anyone help me with telling me how to do this?
You can either convert the .ui file to Python code using pyuic or you can load
the .ui file directly using
On Wednesday 04 January 2006 9:18 am, Heiko Wundram wrote:
> Terry Hancock wrote:
> > Given that Google has been using this fact extensively, and
> > they have not been sued over it, I think it's a fairly
> > clearly established interpretation, whether it is popular or
> > not (but of course it's n
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 times. Here's a gene
On Thursday 12 January 2006 4:55 pm, Edward C. Jones wrote:
> Do any of the Python GUIs have a super-high-level widget that displays a
> directory tree? Most file managers or editors have this type of window.
Below is the dirview.py example from the soon-to-be-released PyQt4. Snapshots
are availa
On Saturday 15 July 2006 9:25 am, [EMAIL PROTECTED] wrote:
> 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/GPLPy
On Sunday 16 July 2006 1:09 am, [EMAIL PROTECTED] wrote:
> [EMAIL PROTECTED] wrote:
> > Phil Thompson wrote:
> > > For Qt4 use the binary installer from...
> > >
> > > http://www.trolltech.com/developer/downloads/qt/windows
> > >
> > > For P
On Wednesday 19 July 2006 3:12 pm, rony steelandt wrote:
> Imagine I have x projects and they all use util.py
>
> What would be the best way to organise this
>
> 1.
> c --\project1\*.py
>
> |-\project2\*.py
>
> --\globals\util.py
>
> This organisation has the problem that if I have to modify so
On Thursday 03 August 2006 9:54 pm, Vincent Delporte wrote:
> Hello
>
> I'd like to use Python under Linux to write a business application,
> and I'll need a good grid/spreadsheet editable widget, maybe not on
> par with eg. ComponentOne's excellent VSFlexGrid
> (http://www.componentone.com/newimag
On Friday 04 August 2006 2:24 am, Vincent Delporte wrote:
> On Thu, 3 Aug 2006 22:07:04 +0100, Phil Thompson
>
> <[EMAIL PROTECTED]> wrote:
> >PyQt4 has QTableWidget...
>
> Thx for the two pointers. Are those widgets more than just tables, ie.
> can I edit the co
On Friday 04 August 2006 11:52 am, Bart Ogryczak wrote:
> Diez B. Roggisch wrote:
> > Bart Ogryczak schrieb:
> > > Hi,
> > > Rigth now I'm using two IDEs for Python, KDevelop and Eric. Both have
> > > drawbacks. KDevelop is a multilanguage IDE, and doesn't really have
> > > anything special for Pyt
On Wednesday 16 August 2006 4:43 pm, Vojta Drbohlav wrote:
> Hello,
> Can I get all text from first column in QListView? How?
>
> PS. Sorry for my bad English ;)
>
> Than you, Vojta
Assuming you are talking about PyQt v3 rather than v4 then use the
columnText() method.
Phil
--
http://mail.pytho
On Wednesday 16 August 2006 5:29 pm, Vojta Drbohlav wrote:
> Oh, sorry. I explained it bad.
>
> I use PyQt3 and I need text from all rows.
row = listView.firstChild()
while row:
for col in range(listView.columns()):
text = row.text(col)
row = row.nextSibling()
..
Riverbank Computing is pleased to announce the release of SIP v4.5 available
from http://www.riverbankcomputing.co.uk/sip/.
SIP is a tool for generating Python modules that wrap C or C++ libraries. It
is similar to SWIG. It is used to generate PyQt and PyKDE. Full
documentation is available
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 G
On Sunday 05 November 2006 7:19 pm, Tool69 wrote:
> Thanks Phil,
> Can you put some hints about how to build QScintilla2 on Windows please
> ?
You mean something other than the installation instructions?
Phil
--
http://mail.python.org/mailman/listinfo/python-list
On Sunday 05 November 2006 6:00 pm, vj wrote:
> > Riverbank Computing is pleased to announce the release of PyQt v4.1
> > available from http://www.riverbankcomputing.co.uk/pyqt/.
>
> What's the best way to learn pyqt. Do the examples from the book GUI
> Programming with Python: QT Edition still wo
Riverbank Computing is pleased to announce the release of PyQt v4.0 available
from http://www.riverbankcomputing.co.uk/pyqt/.
The main change from v4.0beta1 is the inclusion of comprehensive HTML
documentation based on the Qt documentation.
PyQt is a comprehensive set of Qt bindings for the Pyt
On Saturday 18 November 2006 5:44 pm, krishnakant Mane wrote:
> hello all.
> after finishing a project in record time using python we have taken up
> one more project.
> this time however, we need to do a gui based project which will run
> on windows xp and 2000.
> now My question is which gui too
On Saturday 18 November 2006 6:22 pm, krishnakant Mane wrote:
> On 18/11/06, Phil Thompson <[EMAIL PROTECTED]> wrote:
> > You have to install Qt first. You only need to install the run-time
> > elements (ie. the DLLs) on the client's machine. Unless your application
>
On Wednesday 22 November 2006 12:37 pm, anders wrote:
> I am writing a plugin for a piece of software in python, and I want to
> start up a PyQt GUI in the plugin, without stalling the main thread
> while the gui is running (later i will want to pass messages between
> the main thread and the gui t
On Wednesday 22 November 2006 2:06 pm, anders wrote:
> Phil Thompson wrote:
> > On Wednesday 22 November 2006 12:37 pm, anders wrote:
> > > I am writing a plugin for a piece of software in python, and I want to
> > > start up a PyQt GUI in the plugin, without stalling
On Wednesday 29 November 2006 8:12 am, [EMAIL PROTECTED] wrote:
> 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 tuto
On Wednesday 06 December 2006 4:46 am, borntonetwork wrote:
> I am creating a simple form using designer (qt4) on Ubuntu. I use pyuic
> to create a python script from the form. I run the script and the form
> shows up fine. The idiosyncrasy occurs when I try to type text into a
> QTextEntry widget.
On Thursday 02 February 2006 9:25 pm, Fabian Steiner wrote:
> Hi!
>
> Sorry for adopting your post for my own question, but since it is
> related to PyQT I think it's ok: Does anybody of you know where the
> openbook »GUI Programming with Python: QT Edition« has gone? It's not
> available any more:
On Monday 13 February 2006 12:33 am, John J. Lee wrote:
> Kevin Walzer <[EMAIL PROTECTED]> writes:
> [...]
>
> > Commercial Qt is a little out of my price range.
>
> Commercial *PyQt* (including a license for Qt for use only with PyQt)
> is $400 (USD) per developer (plus an extra $300/year if you w
On Monday 20 February 2006 10:07 pm, Fabian Steiner wrote:
> Hello!
>
> I have just written a MyDialog class which is derived from the orginial
> QDialog class. MyDialog only possesses a QLabel and a QPushButton. Now I
> would like to get the QLabel updated every second so that it displays
> the cu
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.critical(self, "Label Missing", "You
> this is a Qt app. app should watch for changes in /var/log/isdn.log and
> on file change (like new line was added to isdn.log) it should activate
> event in my app.
>
> i'm trying to fetch last line in file whenever isdnlog logs something
> so that i can parse that line for a number and store it
On Thursday 09 June 2005 8:07 pm, Tim Jarman wrote:
> Hi Kenneth!
>
> In article <[EMAIL PROTECTED]>,
>
> Kenneth McDonald <[EMAIL PROTECTED]> wrote:
> > If this is not an appropriate newsgroup for this type of posting,
> > please let me know and (if possible) suggest an alternative. I've
> > done
On Wednesday 06 June 2007 9:32 am, luca72 wrote:
> hello again
> i have another stupid question.
> How i can set a qpushbutton invisible?
> thanks Luca
Call its hide() method.
Phil
--
http://mail.python.org/mailman/listinfo/python-list
On Monday 11 June 2007 10:24 am, Frank Millman wrote:
> Hi all
>
> I have a small problem. I have come up with a solution, but I don't
> know if it is a) safe, and b) optimal.
>
> I have a class with a number of attributes, but for various reasons I
> cannot assign values to all the attributes at _
1 - 100 of 192 matches
Mail list logo