<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Qt Jambi on Jython</title>
	<atom:link href="http://olliwang.com/2009/10/14/qt-jambi-on-jython/feed/" rel="self" type="application/rss+xml" />
	<link>http://olliwang.com/2009/10/14/qt-jambi-on-jython/</link>
	<description>A blog about my life and my work</description>
	<lastBuildDate>Mon, 02 Jan 2012 10:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Med Berdai</title>
		<link>http://olliwang.com/2009/10/14/qt-jambi-on-jython/#comment-168</link>
		<dc:creator><![CDATA[Med Berdai]]></dc:creator>
		<pubDate>Tue, 05 Jan 2010 11:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=280#comment-168</guid>
		<description><![CDATA[Thanks :)
I didn&#039;t spot your email address, so here is mine: stuntgp2000 [a t] gmail [d o t] com

Thank you very much! :)]]></description>
		<content:encoded><![CDATA[<p>Thanks <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I didn&#8217;t spot your email address, so here is mine: stuntgp2000 [a t] gmail [d o t] com</p>
<p>Thank you very much! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olli Wang</title>
		<link>http://olliwang.com/2009/10/14/qt-jambi-on-jython/#comment-167</link>
		<dc:creator><![CDATA[Olli Wang]]></dc:creator>
		<pubDate>Tue, 05 Jan 2010 10:09:53 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=280#comment-167</guid>
		<description><![CDATA[Signals and slots are a bit tricky when using Qt Jambi with Jython, Qt has released a project called &lt;a href=&quot;http://labs.trolltech.com/page/Projects/QtJambi/jython&quot; rel=&quot;nofollow&quot;&gt;Qt Jambi Jython Bindings&lt;/a&gt; to relax this situation. However, the project is dead and the latest release doesn&#039;t work well. I tried to fix the project and it works then. But due to its GPL license, I finally decide to give up this project. 

I also tried to write pure Java with Qt Jambi, but I&#039;m still not satisfied with it. My final choice is the native C++ Qt library. It beats any other programming language binding in my opinion.

However, if you still need my fixed version of the Qt Jambi Jython Bindings. Please give me your email address by sending an email to me.]]></description>
		<content:encoded><![CDATA[<p>Signals and slots are a bit tricky when using Qt Jambi with Jython, Qt has released a project called <a href="http://labs.trolltech.com/page/Projects/QtJambi/jython" rel="nofollow">Qt Jambi Jython Bindings</a> to relax this situation. However, the project is dead and the latest release doesn&#8217;t work well. I tried to fix the project and it works then. But due to its GPL license, I finally decide to give up this project. </p>
<p>I also tried to write pure Java with Qt Jambi, but I&#8217;m still not satisfied with it. My final choice is the native C++ Qt library. It beats any other programming language binding in my opinion.</p>
<p>However, if you still need my fixed version of the Qt Jambi Jython Bindings. Please give me your email address by sending an email to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Med Berdai</title>
		<link>http://olliwang.com/2009/10/14/qt-jambi-on-jython/#comment-165</link>
		<dc:creator><![CDATA[Med Berdai]]></dc:creator>
		<pubDate>Tue, 05 Jan 2010 00:02:36 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=280#comment-165</guid>
		<description><![CDATA[oops, the indentation was removed by wordpress :S]]></description>
		<content:encoded><![CDATA[<p>oops, the indentation was removed by wordpress :S</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Med Berdai</title>
		<link>http://olliwang.com/2009/10/14/qt-jambi-on-jython/#comment-164</link>
		<dc:creator><![CDATA[Med Berdai]]></dc:creator>
		<pubDate>Mon, 04 Jan 2010 23:58:44 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=280#comment-164</guid>
		<description><![CDATA[Hi,
I tried to play with QtJambi 4.5.2 and Jython 2.5.1 to see if I can get a simple demo up and running. unfortunately I couldn&#039;t get a QPushButton to connect to a method. I&#039;ve tried to add jython extension to QtJambi but still no way to get the connection.

This is what I&#039;ve done:

from com.trolltech.qt.gui import *
from com.trolltech.extensions.jython import *
		
class MyFirstJythonJambiApp(QWidget):	
	def __init__(self):		
		hbox = QHBoxLayout()
		hi = QPushButton(&quot;hi!&quot;, self)
		quit = QPushButton(&#039;Quit&#039;, self)		
		hbox.addWidget(hi)
		hbox.addWidget(quit)		
		
		# I can&#039;t get this oneto connect
		hi.clicked.connect(self,&quot;self.inform_user()&quot;)
	
		quit.clicked.connect(self, &quot;close()&quot;)
		
		self.setWindowTitle(&quot;Jython 2.5.1 and QtJambi 4.5.2 Demo&quot;)
		self.setLayout(hbox)
		
		self.resize(340, 30)
		
	def inform_user(self):
		QMessageBox.warning(self, &quot;Hi!&quot;, &quot;This is a Jython/QtJambi Demo :)&quot;)

		
QApplication([])
form = MyFirstJythonJambiApp()
form.show()
QApplication.exec()


Any idea how to get this working? I&#039;ll be very grateful :)]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
I tried to play with QtJambi 4.5.2 and Jython 2.5.1 to see if I can get a simple demo up and running. unfortunately I couldn&#8217;t get a QPushButton to connect to a method. I&#8217;ve tried to add jython extension to QtJambi but still no way to get the connection.</p>
<p>This is what I&#8217;ve done:</p>
<p>from com.trolltech.qt.gui import *<br />
from com.trolltech.extensions.jython import *</p>
<p>class MyFirstJythonJambiApp(QWidget):<br />
	def __init__(self):<br />
		hbox = QHBoxLayout()<br />
		hi = QPushButton(&#8220;hi!&#8221;, self)<br />
		quit = QPushButton(&#8216;Quit&#8217;, self)<br />
		hbox.addWidget(hi)<br />
		hbox.addWidget(quit)		</p>
<p>		# I can&#8217;t get this oneto connect<br />
		hi.clicked.connect(self,&#8221;self.inform_user()&#8221;)</p>
<p>		quit.clicked.connect(self, &#8220;close()&#8221;)</p>
<p>		self.setWindowTitle(&#8220;Jython 2.5.1 and QtJambi 4.5.2 Demo&#8221;)<br />
		self.setLayout(hbox)</p>
<p>		self.resize(340, 30)</p>
<p>	def inform_user(self):<br />
		QMessageBox.warning(self, &#8220;Hi!&#8221;, &#8220;This is a Jython/QtJambi Demo <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8221;)</p>
<p>QApplication([])<br />
form = MyFirstJythonJambiApp()<br />
form.show()<br />
QApplication.exec()</p>
<p>Any idea how to get this working? I&#8217;ll be very grateful <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twitter Trackbacks for Qt Jambi on Jython « OLLI WANG PRODUCTIONS [olliwang.com] on Topsy.com</title>
		<link>http://olliwang.com/2009/10/14/qt-jambi-on-jython/#comment-27</link>
		<dc:creator><![CDATA[Twitter Trackbacks for Qt Jambi on Jython « OLLI WANG PRODUCTIONS [olliwang.com] on Topsy.com]]></dc:creator>
		<pubDate>Fri, 16 Oct 2009 09:50:38 +0000</pubDate>
		<guid isPermaLink="false">http://olliwang.com/?p=280#comment-27</guid>
		<description><![CDATA[[...] Qt Jambi on Jython « OLLI WANG PRODUCTIONS  olliwang.com/2009/10/14/qt-jambi-on-jython &#8211; view page &#8211; cached  A blog about my life and my work &#8212; From the page [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Qt Jambi on Jython « OLLI WANG PRODUCTIONS  olliwang.com/2009/10/14/qt-jambi-on-jython &ndash; view page &ndash; cached  A blog about my life and my work &mdash; From the page [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

