<?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: PyGObject: A Guide to Creating Python GUI Applications on Linux	</title>
	<atom:link href="https://www.tecmint.com/pygobject-create-python-gui-application-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/pygobject-create-python-gui-application-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 03 Oct 2024 06:34:24 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: David Henderson		</title>
		<link>https://www.tecmint.com/pygobject-create-python-gui-application-linux/comment-page-1/#comment-1245034</link>

		<dc:creator><![CDATA[David Henderson]]></dc:creator>
		<pubDate>Sun, 15 Sep 2019 21:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=9817#comment-1245034</guid>

					<description><![CDATA[I appreciate the start of using glade. I found that there were few syntax errors in the &quot;Glade the Designer Way&quot; causing the program to crash.  

I found that:

Handler &quot;button_1click&quot; should be &quot;button1_click&quot;

The file &quot;test.py&quot; should read the following:
&lt;pre&gt;
#!/usr/bin/python
# -*- coding: utf-8 -*-

import gi
gi.require_version(&#039;Gtk&#039;, &#039;3.0&#039;) 

from gi.repository import Gtk
   
class Handler:
    def button1_clicked(self, button):
     print &quot;Hello World!&quot;

builder = Gtk.Builder()
builder.add_from_file(&quot;myprogram.glade&quot;)
builder.connect_signals(Handler())

ournewbutton = builder.get_object(&quot;button1&quot;)
ournewbutton.set_label(&quot;Hello, World!&quot;)

window = builder.get_object(&quot;window1&quot;)

window.connect(&quot;delete-event&quot;, Gtk.main_quit)
window.show_all()
Gtk.main()
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>I appreciate the start of using glade. I found that there were few syntax errors in the &#8220;Glade the Designer Way&#8221; causing the program to crash.  </p>
<p>I found that:</p>
<p>Handler &#8220;button_1click&#8221; should be &#8220;button1_click&#8221;</p>
<p>The file &#8220;test.py&#8221; should read the following:</p>
<pre>
#!/usr/bin/python
# -*- coding: utf-8 -*-

import gi
gi.require_version('Gtk', '3.0') 

from gi.repository import Gtk
   
class Handler:
    def button1_clicked(self, button):
     print "Hello World!"

builder = Gtk.Builder()
builder.add_from_file("myprogram.glade")
builder.connect_signals(Handler())

ournewbutton = builder.get_object("button1")
ournewbutton.set_label("Hello, World!")

window = builder.get_object("window1")

window.connect("delete-event", Gtk.main_quit)
window.show_all()
Gtk.main()
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: xABBAAA		</title>
		<link>https://www.tecmint.com/pygobject-create-python-gui-application-linux/comment-page-1/#comment-1075213</link>

		<dc:creator><![CDATA[xABBAAA]]></dc:creator>
		<pubDate>Sat, 01 Dec 2018 18:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=9817#comment-1075213</guid>

					<description><![CDATA[Need some help with that snake thing, I don&#039;t I like &lt;strong&gt;C++&lt;/strong&gt;.]]></description>
			<content:encoded><![CDATA[<p>Need some help with that snake thing, I don&#8217;t I like <strong>C++</strong>.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: MJZ2325		</title>
		<link>https://www.tecmint.com/pygobject-create-python-gui-application-linux/comment-page-1/#comment-1055622</link>

		<dc:creator><![CDATA[MJZ2325]]></dc:creator>
		<pubDate>Sun, 04 Nov 2018 10:37:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=9817#comment-1055622</guid>

					<description><![CDATA[I&#039;m finding this very interesting. I used to program years ago - mainly in &lt;strong&gt;BASIC&lt;/strong&gt;, and small dalliances with &lt;strong&gt;C&lt;/strong&gt; &#038; &lt;strong&gt;COBOL&lt;/strong&gt; (a very elegant language, essentially like writing English sentences). 

I become fed up with &lt;strong&gt;Windows 10&lt;/strong&gt;, which has basically ruined my &lt;strong&gt;HP Pavilion dv7&lt;/strong&gt; (the &lt;strong&gt;Windows 7&lt;/strong&gt; it originally came with ran far better), so I bought a second hand &lt;strong&gt;MacBook Pro&lt;/strong&gt;, which I love and is perfect for all my everyday uses, especially media - I&#039;m a keen photographer and also getting into film-making. I would have bought a new MacBook, but if I&#039;m honest I couldn&#039;t afford it, and they&#039;ve stopped doing the 17&quot; screens anyway - big mistake, Apple - but I digress. 

Being loathed to get rid of the HP, whose hardware is of a similarly high spec to the MacBook, I&#039;ve decided to use it for a very different purpose, effectively restoring my HP with &lt;strong&gt;Linux Mint Tara&lt;/strong&gt;, which looks like a really elegant system, and and using it to get back into programming with this impressive &lt;strong&gt;Python&lt;/strong&gt; language, so I basically wanted to say thank you to the author for writing these tutorials, and to ask the community for any tips you may have for someone who, while reasonably well-versed with computers generally, is very much out of date on the nuts &#038; bolts side, and basically a beginner where Linux &#038; Python are concerned. 

Thank you in advance for any helpful replies.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m finding this very interesting. I used to program years ago &#8211; mainly in <strong>BASIC</strong>, and small dalliances with <strong>C</strong> &amp; <strong>COBOL</strong> (a very elegant language, essentially like writing English sentences). </p>
<p>I become fed up with <strong>Windows 10</strong>, which has basically ruined my <strong>HP Pavilion dv7</strong> (the <strong>Windows 7</strong> it originally came with ran far better), so I bought a second hand <strong>MacBook Pro</strong>, which I love and is perfect for all my everyday uses, especially media &#8211; I&#8217;m a keen photographer and also getting into film-making. I would have bought a new MacBook, but if I&#8217;m honest I couldn&#8217;t afford it, and they&#8217;ve stopped doing the 17&#8243; screens anyway &#8211; big mistake, Apple &#8211; but I digress. </p>
<p>Being loathed to get rid of the HP, whose hardware is of a similarly high spec to the MacBook, I&#8217;ve decided to use it for a very different purpose, effectively restoring my HP with <strong>Linux Mint Tara</strong>, which looks like a really elegant system, and and using it to get back into programming with this impressive <strong>Python</strong> language, so I basically wanted to say thank you to the author for writing these tutorials, and to ask the community for any tips you may have for someone who, while reasonably well-versed with computers generally, is very much out of date on the nuts &amp; bolts side, and basically a beginner where Linux &amp; Python are concerned. </p>
<p>Thank you in advance for any helpful replies.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: george codestanza		</title>
		<link>https://www.tecmint.com/pygobject-create-python-gui-application-linux/comment-page-1/#comment-969236</link>

		<dc:creator><![CDATA[george codestanza]]></dc:creator>
		<pubDate>Tue, 13 Feb 2018 16:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=9817#comment-969236</guid>

					<description><![CDATA[Nice indentation there. Must be some real code experts on this site]]></description>
			<content:encoded><![CDATA[<p>Nice indentation there. Must be some real code experts on this site</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: itimilli süt		</title>
		<link>https://www.tecmint.com/pygobject-create-python-gui-application-linux/comment-page-1/#comment-964112</link>

		<dc:creator><![CDATA[itimilli süt]]></dc:creator>
		<pubDate>Thu, 25 Jan 2018 18:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=9817#comment-964112</guid>

					<description><![CDATA[BaCon (Basic to C Convertor) is an easy programming tool.]]></description>
			<content:encoded><![CDATA[<p>BaCon (Basic to C Convertor) is an easy programming tool.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
