<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>esdrasbeleza.com &#187; Desktop</title>
	<atom:link href="http://www.esdrasbeleza.com/category/desktop/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.esdrasbeleza.com</link>
	<description>Só mais um blog do WordPress</description>
	<lastBuildDate>Fri, 13 Jan 2012 14:14:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using Automator to make your life with Transmission easier</title>
		<link>http://www.esdrasbeleza.com/2011/07/09/using-automator-to-make-your-life-with-transmission-easier/</link>
		<comments>http://www.esdrasbeleza.com/2011/07/09/using-automator-to-make-your-life-with-transmission-easier/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 19:50:49 +0000</pubDate>
		<dc:creator>Esdras Beleza</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Automator]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[Transmission]]></category>

		<guid isPermaLink="false">http://www.esdrasbeleza.com/?p=294</guid>
		<description><![CDATA[I have two computers: a Macbook with Snow Leopard, that sometimes I carry with me, and a computer at home with an Atom processor and running Linux that is my media server and downloader. If I need to download something that will take too much time, I put this second computer to download: it has [...]]]></description>
			<content:encoded><![CDATA[<p>I have two computers: a Macbook with Snow Leopard, that sometimes I carry with me, and a computer at home with an Atom processor and running Linux that is my media server and downloader. If I need to download something that will take too much time, I put this second computer to download: it has a good connection and it&#8217;s always online.</p>
<p><a href="http://www.esdrasbeleza.com/wp-content/uploads/2011/07/transmission.jpg"><img class="aligncenter size-medium wp-image-295" title="Transmission web interface" src="http://www.esdrasbeleza.com/wp-content/uploads/2011/07/transmission-300x200.jpg" alt="" width="300" height="200" /></a></p>
<p>It has Transmission running with its great web interface activated. If I need to download some torrent file, I open its web interface and upload the .torrent file. Good, but&#8230; it could be easier.</p>
<p>If you download torrent files very often, the easiest way is to use the watch-dir feature from Transmission: every torrent that you put at some directory is automatically downloaded by Transmission. So, all I needed to do was copying the torrent files from my Macbook to my home server, using SFTP.</p>
<p>To configure your Transmission watch-dir, you must stop the Transmission service (I&#8217;m running the transmission-daemon version) and edit the <strong>settings.json</strong> file, inserting the following settings:</p>
<pre class="brush: jscript; title: ; notranslate">
&quot;watch-dir&quot;: &quot;/home/mediaserver/transmission/watch&quot;,
&quot;watch-dir-enabled&quot;: true
</pre>
<p>Remember: you must stop Transmission service, edit the file and start it again!</p>
<p>It works, but&#8230; <strong>It can be even easier</strong>, I thought. And I remembered of <strong>Automator</strong>, a good piece of software that comes with Snow Leopard, and that I knew but never used before.</p>
<p><img class="aligncenter size-full wp-image-299" title="Automator Icon" src="http://www.esdrasbeleza.com/wp-content/uploads/2011/07/Automator_Icon.png" alt="" width="297" height="297" /></p>
<p>The idea was: <em>every time a new .torrent file is written at my laptop&#8217;s download directory, it should be copied to my home server</em>.</p>
<p>So I opened Automator and created a new <strong>Folder Action:</strong></p>
<p><strong></strong><a href="http://www.esdrasbeleza.com/wp-content/uploads/2011/07/Screen-shot-2011-07-09-at-16.24.05.png"><img class="aligncenter size-medium wp-image-300" title="Folder action" src="http://www.esdrasbeleza.com/wp-content/uploads/2011/07/Screen-shot-2011-07-09-at-16.24.05-300x278.png" alt="" width="300" height="278" /></a></p>
<p>At the top of the new workflow, I selected my Downloads folder:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-301" title="Select folder" src="http://www.esdrasbeleza.com/wp-content/uploads/2011/07/select_folder.png" alt="" width="467" height="36" /></p>
<p style="text-align: left;"> The next step in our flow is to create a script to copy our files via SSH to the computer that&#8217;s running Transmission. Use <strong>Utilities -&gt; Run Shell Script</strong> to make it:</p>
<p style="text-align: center;"><a href="http://www.esdrasbeleza.com/wp-content/uploads/2011/07/run_script.png"><img class="aligncenter size-full wp-image-302" style="border: 1px solid black;" title="Run Shell Script" src="http://www.esdrasbeleza.com/wp-content/uploads/2011/07/run_script.png" alt="" width="380" height="506" /></a></p>
<p style="text-align: left;">Now add the following content as the script&#8217;s source code. To make it work automatically, <a title="SSH without password!" href="http://www.thegeekstuff.com/2008/11/3-steps-to-perform-ssh-login-without-password-using-ssh-keygen-ssh-copy-id/" target="_blank">I allow my SSH server to receive connections using keys, not passwords</a>. Don&#8217;t forget to change the scp&#8217;s destination to your computer&#8217;s host and directory:</p>
<pre class="brush: bash; title: ; notranslate">
for f in &quot;$@&quot;
do
	ext=`basename &quot;$f&quot; | awk -F &quot;.&quot; '{ print $NF }'`
	if [ &quot;$ext&quot; == &quot;torrent&quot; ]; then
		scp &quot;$f&quot; root@myhostname.asdf.com:/home/transmission/watch
	fi
done
</pre>
<p>That&#8217;s it! Save your workflow and test it. Now, every time you click at a torrent file and download it, Transmission will download it automatically.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esdrasbeleza.com/2011/07/09/using-automator-to-make-your-life-with-transmission-easier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool tools to avoid suffering with Windows</title>
		<link>http://www.esdrasbeleza.com/2010/10/11/cool-tools-to-avoid-suffering-with-windows/</link>
		<comments>http://www.esdrasbeleza.com/2010/10/11/cool-tools-to-avoid-suffering-with-windows/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 18:11:43 +0000</pubDate>
		<dc:creator>Esdras Beleza</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[classic shell]]></category>
		<category><![CDATA[notepad++]]></category>
		<category><![CDATA[pidgin]]></category>
		<category><![CDATA[Screenshots]]></category>
		<category><![CDATA[text editor]]></category>
		<category><![CDATA[vídeo]]></category>
		<category><![CDATA[vlc]]></category>
		<category><![CDATA[winamp]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.esdrasbeleza.com/?p=248</guid>
		<description><![CDATA[After two years working only with Linux and Mac OS, I received a new task that requires using Windows for two months (only two months, happily). It&#8217;s hard to get back to this bugful, unstable and confusing world: I do believe Linux and Mac OS are easier to use than Windows, that big world of [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">After two years working only with Linux and Mac OS, I received a new task that requires using Windows for two months (only two months, happily). It&#8217;s hard to get back to this bugful, unstable and confusing world: I do believe Linux and Mac OS are easier to use than Windows, that big world of icons that lead to icons that lead to icons that lead to nowhere, but I&#8217;m doing my best.</p>
<p style="text-align: justify;">I tried to find a set of useful and free (as in &#8220;free beer&#8221; and/or as in &#8220;free speech&#8221;) tools to make my work easier. They are:</p>
<p style="text-align: justify;"><strong><a href="http://classicshell.sourceforge.net/" target="_blank">Classic Shell Setup</a></strong></p>
<p style="text-align: justify;">I don&#8217;t know why Microsoft removed the toolbar from Windows Explorer since Windows Vista, but this application tries to put it back there. It also allows you to get some customisation of Start Menu, and get a simple, fast and useful menu like the Windows 9x/ME/2000 times.</p>
<p><a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/10/classic_shell.png"><img class="aligncenter size-medium wp-image-249" title="Windows 7 with Classic Shell" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/10/classic_shell-300x245.png" alt="" width="300" height="245" /></a></p>
<p style="text-align: justify;"><strong><a href="http://notepad-plus-plus.org/" target="_blank">Notepad++</a></strong></p>
<p style="text-align: justify;">I like <a href="http://projects.gnome.org/gedit/" target="_blank">gedit</a> and <a href="http://kate-editor.org/" target="_blank">kate</a>, and the native alternative for Windows is Notepad++: a good editor for plain text files, like source code.</p>
<p><a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/10/notepad++.png"><img class="aligncenter size-medium wp-image-252" title="Notepad++" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/10/notepad++-300x179.png" alt="" width="300" height="179" /></a></p>
<p style="text-align: justify;"><strong><a href="http://pidgin.im" target="_blank">Pidgin</a></strong></p>
<p style="text-align: justify;">With support for MSN/Live/whatever network, Google Talk, ICQ, etc. Pidgin is one of the best chat clients. I&#8217;d rather use it than the fancy MSN Live Messenger.</p>
<p style="text-align: justify;"><strong><a href="http://www.winamp.com" target="_blank">Winamp</a></strong></p>
<p style="text-align: justify;">Why use iTunes or the suffering Windows Media Player if you can use Winamp? It has a clean interface, a good way to organise library (although it&#8217;s a little bit <em>iTunesy</em>) and a simple playlist, everything in the same screen. I really love the good and old Winamp.</p>
<p><a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/10/winamp.png"><img class="aligncenter size-medium wp-image-251" title="Winamp" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/10/winamp-300x179.png" alt="" width="300" height="179" /></a></p>
<p style="text-align: justify;"><strong><a href="http://www.videolan.org/">VLC</a></strong></p>
<p style="text-align: justify;">Winamp can play some videos, but I think VLC is a better tool for this job. Besides, it has a great support for a huge range  of video formats and features for users with any needs and all experience levels.</p>
<p><a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/10/vlc.png"><img class="aligncenter size-medium wp-image-250" title="VLC" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/10/vlc-300x262.png" alt="" width="300" height="262" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.esdrasbeleza.com/2010/10/11/cool-tools-to-avoid-suffering-with-windows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox 4.0 pre-beta released</title>
		<link>http://www.esdrasbeleza.com/2010/07/04/firefox-4-0-pre-beta-released/</link>
		<comments>http://www.esdrasbeleza.com/2010/07/04/firefox-4-0-pre-beta-released/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 02:41:00 +0000</pubDate>
		<dc:creator>Esdras Beleza</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Preview]]></category>

		<guid isPermaLink="false">http://www.esdrasbeleza.com/?p=231</guid>
		<description><![CDATA[Lifehacker shown a screenshot of the new Firefox 4.0 pre-beta for Windows. Here it is (Mozilla names Firefox beta versions &#8220;Minefield&#8221;): Nice, isn&#8217;t it? So, I downloaded the new beta for Linux, and it looks like the screenshot below. I had to set the tabs to be on top; Windows version brings this for default [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Lifehacker <a href="http://lifehacker.com/5575931/firefox-4-pre+beta-candidate-brings-tabs-and-top-and-other-changes-to-the-fox">shown a screenshot of the new Firefox 4.0 pre-beta for Windows</a>. Here it is (Mozilla names Firefox beta versions &#8220;Minefield&#8221;):</p>
<p><img class="aligncenter size-full wp-image-233" title="Lifehacker's Minefield Screenshot" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/06/lifehacker_minefield.jpg" alt="" width="500" height="321" /></p>
<p style="text-align: justify;">Nice, isn&#8217;t it? So, I downloaded the new beta for Linux, and it looks like the screenshot below. I had to set the tabs to be on top; Windows version brings this for default (at least the one that I installed using Wine).</p>
<p><a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/06/firefox-4.0b2pre1.png"><img class="aligncenter size-medium wp-image-235" title="Firefox 4.0 pre-beta on Linux" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/06/firefox-4.0b2pre1-300x220.png" alt="Firefox 4.0 pre-beta on Linux" width="300" height="220" /></a></p>
<p style="text-align: justify;">Compare. The screenshot below is Firefox 3.6.4.</p>
<p><a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/06/firefox-3.6.4.png"><img class="aligncenter size-medium wp-image-234" title="Firefox 3.6.4 on Linux" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/06/firefox-3.6.4-300x203.png" alt="Firefox 3.6.4 on Linux" width="300" height="203" /></a></p>
<p style="text-align: justify;">It&#8217;s a little far from <a href="https://wiki.mozilla.org/Firefox/4.0_Linux_Theme_Mockups">the mockups of Firefox for Linux at Mozilla&#8217;s site</a>. I hope I can see it soon. <img src='http://www.esdrasbeleza.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.esdrasbeleza.com/2010/07/04/firefox-4-0-pre-beta-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 95: someone still loves you</title>
		<link>http://www.esdrasbeleza.com/2010/05/28/windows-95-someone-still-loves-you/</link>
		<comments>http://www.esdrasbeleza.com/2010/05/28/windows-95-someone-still-loves-you/#comments</comments>
		<pubDate>Fri, 28 May 2010 11:00:24 +0000</pubDate>
		<dc:creator>Esdras Beleza</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[archeology]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.esdrasbeleza.com/?p=173</guid>
		<description><![CDATA[Or at least uses you. I use StatPress to get statistics of the last readers of this blog. One of the informations I have access to are the operating systems that the last visitors were using. And how surprising it was to discover that I still have a visitor that was using Windows 95: I [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Or at least uses you.</p>
<p style="text-align: justify;">I use <a href="http://wordpress.org/extend/plugins/statpress/">StatPress</a> to get statistics of the last readers of this blog. One of the informations I have access to are the operating systems that the last visitors were using. And how surprising it was to discover that I still have a visitor that was using Windows 95:</p>
<p><img class="aligncenter size-medium wp-image-174" title="Windows 95" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/05/windows95_visitor-174x300.png" alt="" width="174" height="300" /></p>
<p style="text-align: justify;">I really hope this person is using <a href="https://addons.mozilla.org/en-US/firefox/addon/59/">some extension to change his/her browser&#8217;s user agent header</a> or just woke up from a sleep of 10 years or more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.esdrasbeleza.com/2010/05/28/windows-95-someone-still-loves-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix ugly fonts in Qt-based applications</title>
		<link>http://www.esdrasbeleza.com/2010/05/20/how-to-fix-ugly-fonts-in-qt-based-applications/</link>
		<comments>http://www.esdrasbeleza.com/2010/05/20/how-to-fix-ugly-fonts-in-qt-based-applications/#comments</comments>
		<pubDate>Thu, 20 May 2010 17:30:48 +0000</pubDate>
		<dc:creator>Esdras Beleza</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Qt Creator]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://www.esdrasbeleza.com/?p=153</guid>
		<description><![CDATA[I was using Qt Creator and tried to change the editor&#8217;s font to Monaco, 9. But hey, Monaco is not that ugly: So I googled a way to fix for this problem, and found the fix at Arch Linux forums. You&#8217;ll need to create a file called .fonts.conf in your home directory with this content: I [...]]]></description>
			<content:encoded><![CDATA[<p>I was using Qt Creator and tried to change the editor&#8217;s font to <a href="http://en.wikipedia.org/wiki/Monaco_(typeface)">Monaco, 9</a>. But hey, Monaco is not that ugly:</p>
<p><img class="aligncenter size-full wp-image-154" title="Monaco before fix" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/05/monaco-qt-before.png" alt="Monaco before fix" width="150" height="150" /></p>
<p>So I googled a way to fix for this problem, and found the fix at <a href="http://bbs.archlinux.org/viewtopic.php?pid=705548#p705548">Arch Linux forums</a>. You&#8217;ll need to create a file called <em>.fonts.conf</em> in your home directory with this content:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;?xml version='1.0'?&gt;
&lt;!DOCTYPE fontconfig SYSTEM 'fonts.dtd'&gt;
&lt;fontconfig&gt;
   &lt;match target=&quot;font&quot; &gt;
      &lt;edit mode=&quot;assign&quot; name=&quot;rgba&quot; &gt;
         &lt;const&gt;rgb&lt;/const&gt;
      &lt;/edit&gt;
   &lt;/match&gt;
   &lt;match target=&quot;font&quot; &gt;
      &lt;edit mode=&quot;assign&quot; name=&quot;hinting&quot; &gt;
         &lt;bool&gt;true&lt;/bool&gt;
      &lt;/edit&gt;
   &lt;/match&gt;
   &lt;match target=&quot;font&quot; &gt;
      &lt;edit mode=&quot;assign&quot; name=&quot;hintstyle&quot; &gt;
         &lt;const&gt;hintslight&lt;/const&gt;
      &lt;/edit&gt;
   &lt;/match&gt;
   &lt;match target=&quot;font&quot; &gt;
      &lt;edit mode=&quot;assign&quot; name=&quot;antialias&quot; &gt;
         &lt;bool&gt;true&lt;/bool&gt;
      &lt;/edit&gt;
   &lt;/match&gt;
&lt;/fontconfig&gt;
</pre>
<p>I closed Qt Creator and reopened it. The result was this:</p>
<p><img class="aligncenter size-full wp-image-156" title="Monaco after fix" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/05/monaco-qt-after.png" alt="Monaco after fix" width="150" height="150" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.esdrasbeleza.com/2010/05/20/how-to-fix-ugly-fonts-in-qt-based-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I chose Qt</title>
		<link>http://www.esdrasbeleza.com/2010/05/13/why-i-chose-qt/</link>
		<comments>http://www.esdrasbeleza.com/2010/05/13/why-i-chose-qt/#comments</comments>
		<pubDate>Thu, 13 May 2010 14:14:39 +0000</pubDate>
		<dc:creator>Esdras Beleza</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[GTK]]></category>
		<category><![CDATA[gtkmm]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Qt Creator]]></category>

		<guid isPermaLink="false">http://www.esdrasbeleza.com/?p=137</guid>
		<description><![CDATA[A few months ago, I planned to learn some graphic toolkit. As a GNOME user, GTK was my natural choice. Although I&#8217;m a Python lover, I chose C++ because I just wanted to learn a new language and stop being afraid of pointers. So I started to read the gtkmm documentation, like tutorials and API, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">A few months ago, I planned to learn some graphic toolkit. As a GNOME user, GTK was my natural choice. Although I&#8217;m a Python lover, I chose C++ because I just wanted to learn a new language and stop being afraid of pointers. So I started to read the <a href="http://www.gtkmm.org/">gtkmm</a> documentation, like tutorials and API, and to program a simple music player. I was learning gtkmm and it all seemed okay.</p>
<p style="text-align: center;"><img class="aligncenter" title="Qt" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/05/qt.png" alt="" width="200" height="238" /></p>
<p style="text-align: justify;">But I read a little about Qt and, after talking with some friends about the pros and cons of GTK and Qt, I decided to do with Qt the same things that I&#8217;ve already done with GTK up to that point. So I would know <strong>what choice was better for me</strong>. Notice that I&#8217;m not saying that Qt is better for everybody and that GTK must die, but that Qt looked better <strong>for me and my personal project</strong>. After this disclaimer, and can tell my reasons:</p>
<ul style="text-align: justify;">
<li><strong>Look &amp; feel.</strong> I&#8217;m a look&amp;feel fanatic, and sometimes I move from GNOME to KDE only to check its new features. But I hate how GTK applications look in KDE. You can use <a href="http://code.google.com/p/gtk-qt-engine/">gtk-qt-engine</a>, but you&#8217;ll still notice the differences. You can set GTK to use the excellent <a href="http://kde-look.org/content/show.php/QtCurve+(KDE4,+KDE3,+%26+Gtk2+Theme)?content=40492">QtCurve</a> theme, that have identical versions to Qt and GTK, but you&#8217;ll get tied to a theme. But look what you have if you run a Qt application in GNOME (<a href="http://projects.gnome.org/gedit/">gedit</a> is a GTK-based application and <a href="http://musicbrainz.org/doc/PicardTagger">Picard</a> is a Qt-based application):<br />
<a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/05/gtk_qt_look_and_feel.png"><img class="aligncenter" style="margin-top: 15px; margin-bottom: 15px;" title="GTK vs QT look &amp; feel in GNOME" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/05/gtk_qt_look_and_feel-300x231.png" alt="" width="300" height="231" /></a><br />
Thanks to <a href="http://labs.trolltech.com/blogs/2008/05/13/introducing-qgtkstyle/">QGtkStyle</a>, Qt applications detect if you are in GNOME and your Qt application gets an almost perfect GTK look &amp; feel. And yeah, it includes open and save dialogs.</li>
<li><strong>Documentation. </strong>Qt has a very, very rich and well-organised documentation, with <a href="http://doc.qt.nokia.com/4.6/tutorials.html">tutorials</a>, <a href="http://doc.qt.nokia.com/4.6/index.html">API references</a>, and <a href="http://doc.qt.nokia.com/4.6/examples.html">examples</a>. gtkmm also have all these items, but they didn&#8217;t look very friendly to me. And the documentation of Qt 4.7, still in development, <a href="http://doc.qt.nokia.com/4.7-snapshot/">will be even better</a>.</li>
<li><strong>A simple, but good IDE.</strong> A good programmer must not be dependent on IDEs, but they really help you. I tried to use Anjuta (unstable sometimes), MonoDevelop (very good for .NET platform, but not a good IDE for C/C++ development) and Netbeans as IDE when I was using gtkmm, and I was not satisfied with them. But Qt has its official IDE, <strong>Qt Creator</strong>:<br />
<a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/05/qtcreator.png"><img class="aligncenter size-medium wp-image-139" style="margin-top: 15px; margin-bottom: 15px;" title="Qt Creator" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/05/qtcreator-300x177.png" alt="" width="300" height="177" /></a><br />
Qt Creator is clean, simple, and complete. It has quick access to documentation, breakpoints, project configuration, native support for CVS, Subversion and Git, good code completion, a good GUI designer (like the GTK&#8217;s <a href="http://glade.gnome.org/">Glade</a>), among other features.</li>
<li><strong>Runs well on many platforms.</strong> Qt is smart enough to run well &#8211; and with native look &amp; feel, I really like this &#8211; in Linux, Mac, Windows, and others.</li>
</ul>
<p style="text-align: justify;">But Qt still has some cons:</p>
<ul>
<li>Users should have it installed to run Qt applications, and this is not very usual in Linux environments based on GNOME, neither on Windows systems.</li>
<li>Qt is free only if you&#8217;re using it in a free project. For commercial applications, <a href="http://qt.nokia.com/products/licensing">you must obtain a commercial Qt licence</a>. <strong>Update: </strong>this is not exactly a con. You still can use Qt under LGPL in commercial applications, but if you make any change to Qt you must publish them or purchase a commercial Qt licence <em>(thanks, krok, for the comment)</em>.</li>
</ul>
<p style="text-align: justify;">If you&#8217;re beginning to learn to program for graphical environments or you&#8217;re looking for a good graphical library to use in your project, you really should give Qt a try, implement some examples and feel which option is better for you.</p>
<p style="text-align: justify;"><a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/05/gtk_qt_look_and_feel.png"><br />
</a></p>
<p style="text-align: justify;">
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://www.esdrasbeleza.com/2010/05/13/why-i-chose-qt/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>GNOME 2.30</title>
		<link>http://www.esdrasbeleza.com/2010/04/02/gnome-2-30/</link>
		<comments>http://www.esdrasbeleza.com/2010/04/02/gnome-2-30/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 06:28:16 +0000</pubDate>
		<dc:creator>Esdras Beleza</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[nautilus]]></category>
		<category><![CDATA[Screenshots]]></category>
		<category><![CDATA[tema]]></category>

		<guid isPermaLink="false">http://www.esdrasbeleza.com/?p=98</guid>
		<description><![CDATA[O GNOME 2.30 foi lançado nesse 1º de abril, e os pacotes rapidamente foram disponibilizados pro Arch Linux. Assim que atualizei o sistema, aproveitei pra conferir algumas das novidades. A maioria delas, na minha opinião, foram discretas. Talvez a maior exceção seja o Nautilus, de interface renovada. Agora é possível dividir a visualização em duas, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">O <a href="http://library.gnome.org/misc/release-notes/2.30/" target="_blank">GNOME 2.30 foi lançado nesse 1º de abril</a>, e os pacotes rapidamente foram disponibilizados pro <a href="http://www.archlinux.org/" target="_blank">Arch Linux</a>. <img src='http://www.esdrasbeleza.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Assim que atualizei o sistema, aproveitei pra conferir algumas das novidades. A maioria delas, na minha opinião, foram discretas.</p>
<p style="text-align: justify;">Talvez a maior exceção seja o Nautilus, de interface renovada. Agora é possível dividir a visualização em duas, o que facilita muito a troca de arquivos entre dois locais diferentes. O Konqueror faz isso há alguns anos, e era uma funcionalidade que fazia falta no Nautilus.</p>
<p><a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/04/nautilus.png"><img class="aligncenter size-large wp-image-99" title="Nautilus com 2 pastas abertas" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/04/nautilus-1024x583.png" alt="" width="450" height="256" /></a></p>
<p style="text-align: justify;">Dois bugs que me enchiam o saco há algum tempo também parecem ter sido resolvidos. Ao usar dois monitores, alguns applets trocavam de lugar ao iniciar o GNOME e o papel de parede da área de trabalho era esticado entre os dois monitores. Agora o papel de parede é simplesmente replicado para os dois monitores.</p>
<p style="text-align: justify;"><a href="http://library.gnome.org/misc/release-notes/2.30/" target="_blank">Mais detalhes das mudanças na nova versão </a>estão presentes no site do GNOME. Como todo mundo gosta de screenshots, aqui vai um da minha área de trabalho:</p>
<p><a href="http://www.esdrasbeleza.com/wp-content/uploads/2010/04/desktop_gnome_230.png"><img class="aligncenter size-large wp-image-100" title="desktop_gnome_230" src="http://www.esdrasbeleza.com/wp-content/uploads/2010/04/desktop_gnome_230-1024x640.png" alt="" width="450" height="281" /></a></p>
<ul>
<li>Tema GTK: <a href="http://gnome-look.org/content/show.php/Equinox+Radiance?content=121883" target="_blank">Equinox Radiance</a></li>
<li>Tema do gerenciador de janelas (Metacity): <a href="http://gnome-look.org/content/show.php/Karmic+Lucy+D.?content=120409" target="_blank">karmic Lucy D.</a></li>
<li>Ícones: <a href="http://gnome-look.org/content/show.php/nuoveXT?content=26448">nuoveXT 1.7</a></li>
<li>Painel inferior: <a href="https://launchpad.net/docky">Docky</a></li>
<li>Papel de parede: <a href="http://www.socwall.com/browse/wpDL.php?wp_id=013208" target="_blank">Stop that t-rain</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.esdrasbeleza.com/2010/04/02/gnome-2-30/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.746 seconds -->

