<?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"
	>
<channel>
	<title>Comments on: Writing a Custom Widget Using PyGTK</title>
	<atom:link href="http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/</link>
	<description>one man's journey into python...</description>
	<pubDate>Sun, 06 Jul 2008 23:26:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>By: openfish</title>
		<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/#comment-84848</link>
		<dc:creator>openfish</dc:creator>
		<pubDate>Tue, 20 May 2008 19:10:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=28#comment-84848</guid>
		<description>all ur tuts rule this site is brill if a littel small so keep up the brilliant work!!
lol

i know this is slighly off topic but its not that far off

is there a maxemum number of times u can
.connect("a_event",self.aeventhandle)

self.DrawArea = gtk.DrawingArea()
self.DrawArea.connect("expose_event", self.expose) # this works well
self.DrawArea.connect("configure_event",self.conf)   # and this one
self.DrawArea.connect("button_release_event",self.moton) # but this dosnt do a thing
self.DrawArea.connect("motion_notify_event",self.moton)   # nor this one

p.s they will eventually point to different places!! and are in side a class mydisplay(gtk.VBox ): in side a vbox in a window most of the program works v well but i want to add a bit of polish and hit this wall when i added the connect's 
thank u very much
any ideas</description>
		<content:encoded><![CDATA[<p>all ur tuts rule this site is brill if a littel small so keep up the brilliant work!!<br />
lol</p>
<p>i know this is slighly off topic but its not that far off</p>
<p>is there a maxemum number of times u can<br />
.connect(&#8221;a_event&#8221;,self.aeventhandle)</p>
<p>self.DrawArea = gtk.DrawingArea()<br />
self.DrawArea.connect(&#8221;expose_event&#8221;, self.expose) # this works well<br />
self.DrawArea.connect(&#8221;configure_event&#8221;,self.conf)   # and this one<br />
self.DrawArea.connect(&#8221;button_release_event&#8221;,self.moton) # but this dosnt do a thing<br />
self.DrawArea.connect(&#8221;motion_notify_event&#8221;,self.moton)   # nor this one</p>
<p>p.s they will eventually point to different places!! and are in side a class mydisplay(gtk.VBox ): in side a vbox in a window most of the program works v well but i want to add a bit of polish and hit this wall when i added the connect&#8217;s<br />
thank u very much<br />
any ideas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shikhar</title>
		<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/#comment-64271</link>
		<dc:creator>shikhar</dc:creator>
		<pubDate>Thu, 06 Mar 2008 03:51:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=28#comment-64271</guid>
		<description>thanks, i am new to pygtk, this was a great tutorial</description>
		<content:encoded><![CDATA[<p>thanks, i am new to pygtk, this was a great tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: selsine</title>
		<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/#comment-58337</link>
		<dc:creator>selsine</dc:creator>
		<pubDate>Thu, 17 Jan 2008 16:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=28#comment-58337</guid>
		<description>Hi Homer,

To be honest I've never looked at gtk.Builder so I really don't know. If I get a chance I'll take a look.</description>
		<content:encoded><![CDATA[<p>Hi Homer,</p>
<p>To be honest I&#8217;ve never looked at gtk.Builder so I really don&#8217;t know. If I get a chance I&#8217;ll take a look.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Homer</title>
		<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/#comment-54464</link>
		<dc:creator>Homer</dc:creator>
		<pubDate>Mon, 03 Dec 2007 16:39:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=28#comment-54464</guid>
		<description>Is there a way to make custom widgets like this "buildable" with gtk.Builder? It would be trivial to implement the Buildable interface but then how does one get access to the widget from within gtk.Builder?</description>
		<content:encoded><![CDATA[<p>Is there a way to make custom widgets like this &#8220;buildable&#8221; with gtk.Builder? It would be trivial to implement the Buildable interface but then how does one get access to the widget from within gtk.Builder?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: selsine</title>
		<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/#comment-53241</link>
		<dc:creator>selsine</dc:creator>
		<pubDate>Wed, 21 Nov 2007 01:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=28#comment-53241</guid>
		<description>Hi Mahdi,

So all you want to do is display an image to the user? Do you want a window in anyway? Or just a window floating there? I would take a look at PyGame or the Python Imaging Library (PIL) .</description>
		<content:encoded><![CDATA[<p>Hi Mahdi,</p>
<p>So all you want to do is display an image to the user? Do you want a window in anyway? Or just a window floating there? I would take a look at PyGame or the Python Imaging Library (PIL) .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahdi Pishguy</title>
		<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/#comment-50255</link>
		<dc:creator>Mahdi Pishguy</dc:creator>
		<pubDate>Sun, 28 Oct 2007 11:59:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=28#comment-50255</guid>
		<description>hi , In (pygtk) , how can I create a popup window and attach a picture (such az PNG or GIF formats ) to it. I want to hide window's titlebar and borders. Actually, I want to show only the picture and nothing else.</description>
		<content:encoded><![CDATA[<p>hi , In (pygtk) , how can I create a popup window and attach a picture (such az PNG or GIF formats ) to it. I want to hide window&#8217;s titlebar and borders. Actually, I want to show only the picture and nothing else.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: selsine</title>
		<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/#comment-27189</link>
		<dc:creator>selsine</dc:creator>
		<pubDate>Sat, 19 May 2007 15:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=28#comment-27189</guid>
		<description>Well keep up the great work!  I really think that this will be a large help for anyone who speaks Spanish and is interested in these tutorials...plus you are helping me to find bugs!</description>
		<content:encoded><![CDATA[<p>Well keep up the great work!  I really think that this will be a large help for anyone who speaks Spanish and is interested in these tutorials&#8230;plus you are helping me to find bugs!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lord Taran</title>
		<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/#comment-25575</link>
		<dc:creator>Lord Taran</dc:creator>
		<pubDate>Sun, 13 May 2007 01:56:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=28#comment-25575</guid>
		<description>Thanks for you, of course! I want to translate all of your Glade-PyGTK by the next week..</description>
		<content:encoded><![CDATA[<p>Thanks for you, of course! I want to translate all of your Glade-PyGTK by the next week..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: selsine</title>
		<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/#comment-25484</link>
		<dc:creator>selsine</dc:creator>
		<pubDate>Sat, 12 May 2007 15:16:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=28#comment-25484</guid>
		<description>Great job!

Man, you are translating these way faster then I can ever write them!

Thanks again!</description>
		<content:encoded><![CDATA[<p>Great job!</p>
<p>Man, you are translating these way faster then I can ever write them!</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Las Noyas de Taran</title>
		<link>http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/#comment-23142</link>
		<dc:creator>Las Noyas de Taran</dc:creator>
		<pubDate>Mon, 07 May 2007 23:53:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=28#comment-23142</guid>
		<description>[...] Un nuevo tutorial traducido de Learning Python, esta vez sobre cómo crear un widget propio. El artículo original está un poco modificado, ya que la versión original no terminaba de funcionar bien, pero en los comentarios el mismo Mark colgaba una segunda versión con un par de arreglos que no parecen gustarle demasiado, pero bueno, el caso es que funciona y funciona bien. El artículo original se titula Writing a Custom Widget Using PyGTK:  Una de las cosas que quería añadir a mi simple aplicación PyWine era una forma sencilla de que la gente pudiera puntuar su vino. Había muchas maneras de hacerlo pero como estaba buscando un tutorial que escribir decidí que quería hacerlo del modo en que puntúas canciones en iTunes. Si no has usado iTunes nunca, puedes puntar las canciones en una escala deslizante de cero a cinco usando estrellas. Básicamente funciona como un deslizador o una Escala Horizontal excepto que lo que dibuja no es una línea, sino una fila de estrellas. [...]</description>
		<content:encoded><![CDATA[<p>[...] Un nuevo tutorial traducido de Learning Python, esta vez sobre cómo crear un widget propio. El artículo original está un poco modificado, ya que la versión original no terminaba de funcionar bien, pero en los comentarios el mismo Mark colgaba una segunda versión con un par de arreglos que no parecen gustarle demasiado, pero bueno, el caso es que funciona y funciona bien. El artículo original se titula Writing a Custom Widget Using PyGTK:  Una de las cosas que quería añadir a mi simple aplicación PyWine era una forma sencilla de que la gente pudiera puntuar su vino. Había muchas maneras de hacerlo pero como estaba buscando un tutorial que escribir decidí que quería hacerlo del modo en que puntúas canciones en iTunes. Si no has usado iTunes nunca, puedes puntar las canciones en una escala deslizante de cero a cinco usando estrellas. Básicamente funciona como un deslizador o una Escala Horizontal excepto que lo que dibuja no es una línea, sino una fila de estrellas. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
