<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: An Introduction to PyQt: creating GUIs with Python&#8217;s QT bindings</title>
	<atom:link href="http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/</link>
	<description>one man's journey into python...</description>
	<lastBuildDate>Fri, 03 Feb 2012 23:11:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: george</title>
		<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/comment-page-1/#comment-196600</link>
		<dc:creator>george</dc:creator>
		<pubDate>Fri, 01 Jul 2011 19:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=88#comment-196600</guid>
		<description>hi, many thanks for this tutorial. I want to have a few simple dialogs and then continue with processing in my script. Is it possible to exit the main loop and return the values i got from the gui?</description>
		<content:encoded><![CDATA[<p>hi, many thanks for this tutorial. I want to have a few simple dialogs and then continue with processing in my script. Is it possible to exit the main loop and return the values i got from the gui?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Helen Neely</title>
		<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/comment-page-1/#comment-193360</link>
		<dc:creator>Helen Neely</dc:creator>
		<pubDate>Thu, 26 May 2011 07:29:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=88#comment-193360</guid>
		<description>Hi, I just checked as well, looks like the link is dead on the PyQT4 site. Could check that you&#039;re pointing to the right documentation?</description>
		<content:encoded><![CDATA[<p>Hi, I just checked as well, looks like the link is dead on the PyQT4 site. Could check that you&#8217;re pointing to the right documentation?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandeep</title>
		<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/comment-page-1/#comment-193196</link>
		<dc:creator>Sandeep</dc:creator>
		<pubDate>Tue, 24 May 2011 08:46:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=88#comment-193196</guid>
		<description>Hi Mark,
The links to the documentation for PyQt4 aren&#039;t working. They&#039;re still there, only the URL has changed (you have to add a /static somewhere in the URL).

Also, it&#039;s a really good tutorial! Thanks a lot for taking the time to make this simple introduction to PyQt4!</description>
		<content:encoded><![CDATA[<p>Hi Mark,<br />
The links to the documentation for PyQt4 aren&#8217;t working. They&#8217;re still there, only the URL has changed (you have to add a /static somewhere in the URL).</p>
<p>Also, it&#8217;s a really good tutorial! Thanks a lot for taking the time to make this simple introduction to PyQt4!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dave cortesi</title>
		<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/comment-page-1/#comment-191333</link>
		<dc:creator>dave cortesi</dc:creator>
		<pubDate>Sat, 30 Apr 2011 19:40:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=88#comment-191333</guid>
		<description>I&#039;ll ask this here -- I&#039;m part of the new wave of readers since the Query7 post was noted in reddit/r/python, and hopefully comments here are still being monitored. 

Regarding listing 2, it is not clear to me why you take pains to make the widgets label, hello_edit and hello_button, properties of the Hello_window (&quot;self.label =...&quot; etc) while just a few lines later, you do not make hbox and central_widget so. If I understand the scope rules (doubtful), they are effectively locals of define_widgets()? Presumably they continue to exist after define_widgets() exits, because there is a reference to hbox in central_widget and a reference to central_widget in self. But they can&#039;t be named in later code.

Is that why you make self.label etc properties, because there might be need to name it in some other code?</description>
		<content:encoded><![CDATA[<p>I&#8217;ll ask this here &#8212; I&#8217;m part of the new wave of readers since the Query7 post was noted in reddit/r/python, and hopefully comments here are still being monitored. </p>
<p>Regarding listing 2, it is not clear to me why you take pains to make the widgets label, hello_edit and hello_button, properties of the Hello_window (&#8220;self.label =&#8230;&#8221; etc) while just a few lines later, you do not make hbox and central_widget so. If I understand the scope rules (doubtful), they are effectively locals of define_widgets()? Presumably they continue to exist after define_widgets() exits, because there is a reference to hbox in central_widget and a reference to central_widget in self. But they can&#8217;t be named in later code.</p>
<p>Is that why you make self.label etc properties, because there might be need to name it in some other code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Learning Python Qt Programming with PyQt &#38; PySide &#124; Query7</title>
		<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/comment-page-1/#comment-190994</link>
		<dc:creator>Learning Python Qt Programming with PyQt &#38; PySide &#124; Query7</dc:creator>
		<pubDate>Mon, 25 Apr 2011 10:00:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=88#comment-190994</guid>
		<description>[...] An Introduction to PyQt by Mark Mruss of LearningPython is an excellent beginners introduction to PyQt. It assumes no prior knowledge of PyQt or GUI programming and walks you through creating a basic hello world window. [...]</description>
		<content:encoded><![CDATA[<p>[...] An Introduction to PyQt by Mark Mruss of LearningPython is an excellent beginners introduction to PyQt. It assumes no prior knowledge of PyQt or GUI programming and walks you through creating a basic hello world window. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shadyabhi</title>
		<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/comment-page-1/#comment-171585</link>
		<dc:creator>shadyabhi</dc:creator>
		<pubDate>Fri, 15 Oct 2010 07:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=88#comment-171585</guid>
		<description>@frispete
So, whats basically the differnece between what you said and what he did?</description>
		<content:encoded><![CDATA[<p>@frispete<br />
So, whats basically the differnece between what you said and what he did?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frispete</title>
		<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/comment-page-1/#comment-171478</link>
		<dc:creator>frispete</dc:creator>
		<pubDate>Wed, 13 Oct 2010 14:02:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=88#comment-171478</guid>
		<description>The connect line shoud read:

self.hello_button.clicked.connect(self.on_hello_clicked)</description>
		<content:encoded><![CDATA[<p>The connect line shoud read:</p>
<p>self.hello_button.clicked.connect(self.on_hello_clicked)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gavranha</title>
		<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/comment-page-1/#comment-154361</link>
		<dc:creator>gavranha</dc:creator>
		<pubDate>Thu, 03 Dec 2009 22:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=88#comment-154361</guid>
		<description>Thanks a lot for your time writing so useful tutorial. I&#039;m just starting and the big trouble for a newbie is to be able to see the whole thing in the first steps. You do that. Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks a lot for your time writing so useful tutorial. I&#8217;m just starting and the big trouble for a newbie is to be able to see the whole thing in the first steps. You do that. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shraddha</title>
		<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/comment-page-1/#comment-153487</link>
		<dc:creator>Shraddha</dc:creator>
		<pubDate>Sat, 21 Nov 2009 22:20:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=88#comment-153487</guid>
		<description>Thanks a ton for this post!
You saved so much of my time.</description>
		<content:encoded><![CDATA[<p>Thanks a ton for this post!<br />
You saved so much of my time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brian N.</title>
		<link>http://www.learningpython.com/2008/09/20/an-introduction-to-pyqt/comment-page-1/#comment-152908</link>
		<dc:creator>brian N.</dc:creator>
		<pubDate>Sun, 08 Nov 2009 01:49:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=88#comment-152908</guid>
		<description>hey nice tutorial..Altough..where in the code does it say to put in: self.create_widgets()

in the :

def __init__(self,win_parent = None):
                # Init the base claas
                QtGui.QMainWindow.__init__(self,win_parent)
                self.create_widgets()

i cant seem to find where its put in.

PS.im a newbie to python trying to learn,so maybe its just me...;)</description>
		<content:encoded><![CDATA[<p>hey nice tutorial..Altough..where in the code does it say to put in: self.create_widgets()</p>
<p>in the :</p>
<p>def __init__(self,win_parent = None):<br />
                # Init the base claas<br />
                QtGui.QMainWindow.__init__(self,win_parent)<br />
                self.create_widgets()</p>
<p>i cant seem to find where its put in.</p>
<p>PS.im a newbie to python trying to learn,so maybe its just me&#8230;;)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

