<?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>anselmolsm.org &#187; Work</title>
	<atom:link href="http://anselmolsm.org/blog/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://anselmolsm.org</link>
	<description></description>
	<lastBuildDate>Fri, 13 Apr 2012 18:10:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Qt 5 UiHelpers</title>
		<link>http://anselmolsm.org/blog/qt-5-uihelpers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=qt-5-uihelpers</link>
		<comments>http://anselmolsm.org/blog/qt-5-uihelpers/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 18:10:37 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[GPSL]]></category>
		<category><![CDATA[INdT]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[openBossa]]></category>
		<category><![CDATA[Qt5]]></category>
		<category><![CDATA[uihelpers]]></category>

		<guid isPermaLink="false">http://anselmolsm.org/?p=1567</guid>
		<description><![CDATA[In my previous post I mentioned one of the experiments we are currently working on. Now it is time to introduce the Qt 5 playground project called UiHelpers &#8211; Fortunately, this name will change ;) Those who follow the Qt development mailing list already read about it, the idea about this … <a href="http://anselmolsm.org/blog/qt-5-uihelpers/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://anselmolsm.org/blog/working-in-the-open-again/" target="_blank">my previous post</a> I mentioned one of the experiments <a href="http://www.indt.org/?lang=en" target="_blank">we</a> are currently working on.<br />
Now it is time to introduce the Qt 5 playground project called UiHelpers &#8211; Fortunately, this name will change ;)<br />
Those who follow the <a href="http://lists.qt-project.org/pipermail/development" target="_blank">Qt development mailing list</a> already read about it, the idea about this post is to reach more people from the community in general.</p>
<p><strong>Context</strong></p>
<p>If you are already familiar with the structure of Qt 5 code, feel free to jump to the next section.</p>
<p>In Qt 4, the whole source code is in the same git repository. The traditional widgets derived from QWidget are part of the QtGui module and represent a central piece for the GUI application development.</p>
<p>In Qt 5, things changed. Qt code were splitted in many repositories which group Qt libraries depending on their functionalities.<br />
Examples of repositories are qtbase, qtdeclarative, qtjsbackend, qtxmlpatterns, qtsvg, qttools, etc.<br />
As you may know, QtQuick 2 became a first class citizen in Qt 5, which means qtdeclarative is one of the main repositories, house of QtQuick and QtQml classes.</p>
<p>But, there are classes that provide the base for QtQuick 2 work properly &#8211; they are part of the qtbase repo. There you find QtCore,<br />
QtGui, QtNetwork, QtOpenGL, QtPlatformSupport, QtXml, QtWidgets, etc.</p>
<p>Wait: What&#8217;s the difference between QtGui and QtWidgets?</p>
<p>As part of the changes of Qt 5, QtGui is now focused in the basic infrastructure for GUI work on different platforms. For example, it is the place for the platform abstraction layer, window management, image handling, etc.</p>
<p>QtWidgets, as you can conclude based on its name, contains the children of QWidget: QPushButton, QSpinBox, QMainWindow, etc. Also, there are non-widgets classes in QtWidgets, some of them because they are internally too coupled to QWidget classes.</p>
<p><strong>Origins</strong></p>
<p>In this <a href="http://lists.qt-project.org/pipermail/development/2011-December/000932.html" target="_blank">thread</a> it was mentioned the case of QUndoStack, QUndoCommand that are in QtWidgets but can be useful in other contexts where developers do not want to link against QtWidgets just because of this kind of helper classes.<br />
Later, in the <a href="http://codereview.qt-project.org/#change,15857" target="_blank">change 15857</a> (with the help of ogoffart), we discussed about moving QUndo* out of QtWidgets. First, we moved these classes to QtGui what as not considered correct given the new motivation of this lib. Then, another idea was to move the classes to a new lib, inside qtbase. It was not considered ideal and the decision was to create a separated repo for these classes, leaving QtWidgets untouched (since the Qt community do not want to introduce new bugs in this lib).</p>
<p><strong>Current status</strong></p>
<p>We set a <a href="http://qt-project.org/wiki/Qt-5-Ui-Helpers" target="_blank">wiki page</a> where it is possible to check the classes made available out of QtWidgets. Also, there are instructions about where to download the source code, build, test and contact us.</p>
<p>Besides moving classes out of QtWidgets, some prototypes of convenience APIs were created for QtQuick 2 developers and we are very interested in receiving feedback about them. It&#8217;s worth mentioning the QML API for UndoStack and the CompletionModel which is based on the internals of QCompleter and was made available in a QML friendly way.</p>
<p>The following example shows a possible use case for the CompletionModel. Improving the models supported by <em>sourceModel</em> is part of the ToDo list. The ListView is going to show the updated list that currently satisfies what is written in the TextInput.</p>
<pre class="brush:js">TextInput {
    id: input
}

CompletionModel {
    id: completionModel
    sourceModel: ["Ascension Island", "Andorra", "Afghanistan"]
    completionPrefix: input.text
    caseSensitivity: Qt.CaseInsensitive
}

ListView {
    model: completionModel
    delegate: Text { text: modelData }
}</pre>
<p>The two examples bellow show the UndoStack and two items that represent commands. The idea of UndoPropertyCommand is to enable track the changes of some properties. In the example, we are going to track x and y when myRect is moved.</p>
<pre class="brush:js">UndoStack {
    id: stack
    undoLimit: 5
}

UndoPropertyCommand {
    id: moveCommand
    properties: ["x", "y"]
}

Rectangle {
    id: myRect

    (...)

    MouseArea {
        (...)
        drag.target: parent
        onPressed: stack.push(moveCommand, myRect);
    }
}</pre>
<p>UndoCommand is another element used to represent commands. The difference here is that it allows the customization of the actions onUndo and onRedo the command.</p>
<pre class="brush:js">UndoCommand {
    id: aCommand

    onUndo: doAThing(target);
    onRedo: undoAThing(target);
}

Button {
    onClicked: stack.push(aCommand, target);
}</pre>
<p><strong>Future</strong></p>
<p>Maybe one day this playground project gets promoted and become a Qt Add-on, but there is no expectation it will happen before 5.0. In the meanwhile, there is a ToDo list with some topics we consider important to handle, like better examples, more tests, docs, etc.</p>
<p>We are looking forward receiving more opinions about this work and, as always, contributors are welcome!</p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/qt-5-uihelpers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working in the open again</title>
		<link>http://anselmolsm.org/blog/working-in-the-open-again/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=working-in-the-open-again</link>
		<comments>http://anselmolsm.org/blog/working-in-the-open-again/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 12:40:01 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[GPSL]]></category>
		<category><![CDATA[INdT]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[aKademy]]></category>
		<category><![CDATA[iceberg]]></category>
		<category><![CDATA[icemon]]></category>
		<category><![CDATA[Qt5]]></category>

		<guid isPermaLink="false">http://anselmolsm.org/?p=1556</guid>
		<description><![CDATA[Long time since my last post (it&#8217;s sad to realize how often I start posts writing this). Since last year&#8217;s Qt Contributors&#8217; Summit, our team at INdT worked on a closed source project &#8211; the main reason of the low activity here. At least, I could write some posts for … <a href="http://anselmolsm.org/blog/working-in-the-open-again/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p>Long time since my last post (it&#8217;s sad to realize how often I start posts writing this).<br />
Since last year&#8217;s <a href="http://qt-project.org/groups/qt-contributors-summit-2011" target="_blank">Qt Contributors&#8217; Summit</a>, our team at <a href="http://www.indt.org/?lang=en" target="_blank">INdT</a> worked on a closed source project &#8211; the main reason of the low activity here. At least, I could write some posts for the <a href="http://blog.qtlabs.org.br/" target="_blank">Qt Labs Blog Brazil</a>, most of them introducing basic concepts about Qt programming and the Qt ecossystem (buzzword++).<br />
The good part is: This project we were working on was developed using Qt and QML for a desktop application. Besides promoting Qt among Brazilian developers and companies, this project helped us to think about improvements for future releases of QtQuick aiming desktop applications. I am looking forward to see a release of this product soon! (However, when it is going to happen is a client decision).</p>
<p>Then, after the end of this project, I <strong>finally</strong> managed to contribute to Qt5! :-)</p>
<p>Also, in the end of the last year some coworkers started a kind of pet project: It&#8217;s called Iceberg, a fork of the Icecream Monitor.</p>
<p><strong>&#8220;Why a fork?&#8221;</strong> Here we use <a href="http://en.opensuse.org/Icecream" target="_blank">icecream</a> for distributed compilation, many colleagues used to complain about icemon depending on kdelibs. In fact, the code did not use the additional features compared to the equivalent Qt classes. Then, after <a href="http://hugoparente.blogspot.com.br/" target="_blank">hugopl</a> <a href="http://hugoparente.blogspot.com.br/2011/10/iceberg.html" target="_blank">started the project</a>, we fixed some issues and added new stuff. The code is <a href="https://github.com/hugopl/Iceberg" target="_blank">here</a>.</p>
<p>I am writing another post to introduce one of our current research projects, which is also part of the proposal I sent to <a href="http://akademy.kde.org/">Akademy 2012</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/working-in-the-open-again/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Qt Contributors&#8217; Summit</title>
		<link>http://anselmolsm.org/blog/qt-contributors-summit/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=qt-contributors-summit</link>
		<comments>http://anselmolsm.org/blog/qt-contributors-summit/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 12:22:07 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[GPSL]]></category>
		<category><![CDATA[INdT]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[devnet]]></category>
		<category><![CDATA[openBossa]]></category>
		<category><![CDATA[qcs]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[qtsummit]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=1346</guid>
		<description><![CDATA[&#160;]]></description>
			<content:encoded><![CDATA[<div class="wp-caption aligncenter" style="width: 206px"><a href="http://developer.qt.nokia.com/groups/qt_contributors_summit/wiki"><img title="Qt Contributors' Summit" src="http://get.qt.nokia.com/marketing/summit_01.png" alt="I'm going to the Qt Contributors' Summit" width="196" height="121" /></a></dt>
</dl>
</div>
<p>&nbsp;</p>
<p>We are in Berlin, attending the Qt Contributor&#8217;s Summit. 265 people are discussing very important (and interesting) topics for Qt 5 and the open governance. You can follow what&#8217;s happening here using the hash code #qtcs on several social networks. And of course, you can check the <a href="http://developer.qt.nokia.com/groups/qt_contributors_summit/wiki" target="_blank">wiki page of the event</a>.</p>
<p>Personally, I am attending sessions related with QML, Qt-Components, <a href="http://developer.qt.nokia.com">DevNet</a> and open governance.</p>
<p>And yesterday was Thursday, also known as the &#8220;Yellow Day&#8221;:</p>
<div class="mceTemp mceIEcenter">
<dl id="attachment_1358" class="wp-caption aligncenter" style="width: 650px;">
<dt class="wp-caption-dt"><a href="http://anselmolsm.org/wp-content/uploads/2011/06/diaamarelo.jpg"><img class="size-full wp-image-1358" title="Dia do amarelo" src="http://anselmolsm.org/wp-content/uploads/2011/06/diaamarelo.jpg" alt="" width="640" height="480" /></a><p class="wp-caption-text">Ok, Ademar was not wearing yellow t-shirt. Well, imagine him as the goalkeeper of the team ;)</p></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/qt-contributors-summit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meego Conf 2011 &#8211; San Francisco</title>
		<link>http://anselmolsm.org/blog/meego-conf-2011-san-francisco/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=meego-conf-2011-san-francisco</link>
		<comments>http://anselmolsm.org/blog/meego-conf-2011-san-francisco/#comments</comments>
		<pubDate>Mon, 23 May 2011 13:00:25 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[GPSL]]></category>
		<category><![CDATA[INdT]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[MeeGo]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[meegoconf]]></category>
		<category><![CDATA[openBossa]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[talk]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=1338</guid>
		<description><![CDATA[I am in San Francisco (again! =), now for the MeeGo Conference 2011. The event is about to begin with the keynote &#8220;The Future of MeeGo Starts Now&#8221; presented by the president of Linux Foundation, Jim Zemlin. This time, I&#8217;m going to present a talk in the event too! The … <a href="http://anselmolsm.org/blog/meego-conf-2011-san-francisco/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p>I am in San Francisco (<a href="http://www.anselmolsm.org/blog/if-youre-going-to-san-francisco/" target="_blank">again</a>! =), now for the MeeGo Conference 2011.</p>
<p>The event is about to begin with the keynote &#8220;The Future of MeeGo Starts Now&#8221; presented by the president of Linux Foundation, Jim Zemlin.</p>
<p>This time, I&#8217;m going to present a talk in the event too! The talk is today and the topic is &#8220;Writing applications for multiple MeeGo devices&#8221;.</p>
<p>There are other talks by openBossa/INdT guys, <a href="http://sf2011.meego.com/program/session-schedule">check the schedule</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/meego-conf-2011-san-francisco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MeeGo Conference and the Mobile Sprint</title>
		<link>http://anselmolsm.org/blog/meego-conference-and-the-mobile-sprint/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=meego-conference-and-the-mobile-sprint</link>
		<comments>http://anselmolsm.org/blog/meego-conference-and-the-mobile-sprint/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 14:41:46 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[GPSL]]></category>
		<category><![CDATA[INdT]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Maemo]]></category>
		<category><![CDATA[MeeGo]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[meegoconf]]></category>
		<category><![CDATA[mobile sprint]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=1310</guid>
		<description><![CDATA[Then November became a very busy month. After the Qt Dev Days San Francisco, I went quickly to Natal to present a talk about Qt and KDE on mobile devices. It&#8217;s time to say thank you for the ENSL organizers &#8211; As always, I am late with my posts&#8230; So, … <a href="http://anselmolsm.org/blog/meego-conference-and-the-mobile-sprint/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p>Then November became a very busy month.</p>
<p><a href="http://www.anselmolsm.org/blog/if-youre-going-to-san-francisco/" target="_blank">After the Qt Dev Days San Francisco</a>, I went quickly to <a href="http://en.wikipedia.org/wiki/Natal,_Rio_Grande_do_Norte" target="_blank">Natal</a> to present a talk about Qt and KDE on mobile devices. It&#8217;s time to say thank you for the <a href="http://ensl.org.br/2010/" target="_blank">ENSL</a> organizers &#8211; As always, I am late with my posts&#8230;</p>
<p>So, last week we went to <a href="http://en.wikipedia.org/wiki/Dublin" target="_blank">Dublin</a>, for the <a href="http://conference2010.meego.com/" target="_blank">MeeGo Conference 2010</a>. As more people already posted, it was a really nice event. The good surprise was the limit of the number of Intel and Nokia people, leaving space for the growing community meet &#8211; more than a thousand people attended, very well accommodated in the place chosen (the conference rooms in the <a href="http://en.wikipedia.org/wiki/Aviva_Stadium" target="_blank">Aviva Stadium</a>) with a good work of the organization which managed to keep things working nicely.</p>
<p>Although the short time of the presentations, it was good to have a whole ideaof how the project is being conduced, and it looks promising. Unfortunately I left Dublin on Wednesday morning, so I lost the last day which was reserved for the &#8216;<a href="http://wiki.meego.com/MeeGo_Conference_2010/Unconference" target="_blank">unconference</a>&#8216; sections and the <a href="http://www.fifa.com/worldfootball/news/newsid=1265722.html?cid=rssfeed&amp;att=" target="_blank">football match</a>, but I managed to go to the <a href="http://www.guinness-storehouse.com/en/Index.aspx" target="_blank">Guinness Storehouse</a> in Tuesday night, a really good choice for the conference after hours.</p>
<p>With the <a href="http://en.wikipedia.org/wiki/IdeaPad" target="_blank">Lenovo ideapad</a> received from the MeeGo Conference guys (thanks! :-)) in my backpack, I traveled to <a href="http://en.wikipedia.org/wiki/Berlin" target="_blank">Berlin</a> for the <a href="http://community.kde.org/KDE_Mobile/Sprints/November2010-Planning" target="_blank">KDE Mobile Sprint</a>, kindly hosted by <a href="http://www.kdab.net" target="_blank">KDAB</a> in its office.</p>
<p>I must say, we had fun with the new devices. :-)<br />
During the sprint, interesting discussions about MeeGo, new opportunities, QML and Qt-components. Some of the guys dedicated their time to KDE packaging for MeeGo while in parallel other ones worked in QML based widgets for plasma, tested how some applications work on the ideapad&#8217;s touchscreen, and tested plasma-mobile and plasma-tablet shells on it. The results of this sprint are being listed in <a href="http://community.kde.org/KDE_Mobile/Sprints/November2010-Results" target="_blank">this wiki page</a>.</p>
<div id="attachment_1325" class="wp-caption aligncenter" style="width: 490px"><a href="http://anselmolsm.org/wp-content/uploads/2010/11/plasma-netbook.jpg"><img class="size-full wp-image-1325 " title="plasma-netbook" src="http://anselmolsm.org/wp-content/uploads/2010/11/plasma-netbook.jpg" alt="" width="480" height="360" /></a><p class="wp-caption-text">The first steps :-)</p></div>
<p>Check the videos in <a href="http://www.notmart.org/index.php/BlaBla/Meego_summit_and_Mobile_sprint_" target="_blank">Marco&#8217;s</a> and <a href="http://blog.morpheuz.cc/21/11/2010/kde-mobile-sprint-and-meego/" target="_blank">Artur&#8217;s</a> posts about the sprint. Also, Till Adam showing <a href="http://www.youtube.com/watch?v=SsWnfny61oI" target="_blank">Kontact Mobile on MeeGo</a>.</p>
<p>Of course there is more work to do, but considering how things worked without special attention to this device (and for MeeGo), we can expect good news in the future.</p>
<p>And here a screenshot of the gallery to test the Plasma QML widgets, with a FlashingLabel, some BusyWidgets and a PushButton. It&#8217;s just the beginning.</p>
<div id="attachment_1324" class="wp-caption aligncenter" style="width: 349px"><a href="http://anselmolsm.org/wp-content/uploads/2010/11/gallery.png"><img class="size-full wp-image-1324" title="gallery" src="http://anselmolsm.org/wp-content/uploads/2010/11/gallery.png" alt="" width="339" height="372" /></a><p class="wp-caption-text">I know, the gallery is, let&#39;s say, weird... :-P</p></div>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/meego-conference-and-the-mobile-sprint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>“If you’re going to San Francisco…”</title>
		<link>http://anselmolsm.org/blog/if-youre-going-to-san-francisco/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=if-youre-going-to-san-francisco</link>
		<comments>http://anselmolsm.org/blog/if-youre-going-to-san-francisco/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 11:44:57 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[GPSL]]></category>
		<category><![CDATA[INdT]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Viagem]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[DevDays]]></category>
		<category><![CDATA[devnet]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=1285</guid>
		<description><![CDATA[&#8220;&#8230;You&#8217;re gonna meet some gentle people there&#8221; This part of the Scott Mackenzie&#8217;s famous song is definitely true. I&#8217;m in San Francisco since last Friday and I&#8217;m enjoying the city. The true reason for this trip is the Qt Developer Days, which started yesterday with the training sections and the demo area, where I … <a href="http://anselmolsm.org/blog/if-youre-going-to-san-francisco/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<div>
<div id="_mcePaste">&#8220;&#8230;You&#8217;re gonna meet some gentle people there&#8221;</div>
<div>This part of the Scott Mackenzie&#8217;s famous song is definitely true. I&#8217;m in <a href="http://en.wikipedia.org/wiki/San_Francisco" target="_blank">San Francisco</a> since last Friday and I&#8217;m enjoying the city.</div>
<div>The true reason for this trip is the <a href="http://qt.nokia.com/qtdevdays2010" target="_blank">Qt Developer Days</a>, which started yesterday with the training sections and the demo area, where I could see different kind of applications, products and ideas using <a href="http://qt.nokia.com" target="_blank">Qt</a> or created to ease the development with Qt.</div>
<div id="_mcePaste">It&#8217;s just a short post, in a few minutes there will be the first keynote and I have to go downstairs. :-)</div>
<div>This is my first DevDays, special thanks to the <a href="http://developer.qt.nokia.com/">Qt Developer Network</a> guys who decided to <a href="http://developer.qt.nokia.com/blog/view/qt_devnet_at_qt_devdays" target="_blank">bring some of the contributors</a>!</div>
<div><a href="http://anselmolsm.org/wp-content/uploads/2010/11/gondengate.jpg"><img class="aligncenter size-full wp-image-1303" title="The Golden Gate Bridge" src="http://anselmolsm.org/wp-content/uploads/2010/11/gondengate.jpg" alt="The Golden Gate Bridge" width="449" height="337" /></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/if-youre-going-to-san-francisco/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Qt 4.6 &amp; mobile-demos also on desktop</title>
		<link>http://anselmolsm.org/blog/qt-4-6-mobile-demos-also-on-desktop/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=qt-4-6-mobile-demos-also-on-desktop</link>
		<comments>http://anselmolsm.org/blog/qt-4-6-mobile-demos-also-on-desktop/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 14:27:06 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[INdT]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[demos]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mobile-demos]]></category>
		<category><![CDATA[openBossa]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=1200</guid>
		<description><![CDATA[You may have seen these posts about mobile demos , this nice video showing the making of the weather demo and also the last video released yesterday. To celebrate the new version of Qt, the first with the S60 port, we thought it would be nice if people could also … <a href="http://anselmolsm.org/blog/qt-4-6-mobile-demos-also-on-desktop/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p>You may have seen <a href="http://blog.morpheuz.cc/02/11/2009/how-is-the-weather-in-qt-4-6/" target="_blank">these</a> <a href="http://blog.morpheuz.cc/01/12/2009/qt-4-6-ow/">posts</a> <a href="http://www.marceloeduardo.com/blog/design/user-interface-design/the-cross-platform-qt-era-is-coming" target="_blank">about</a> <a href="http://patifa.wordpress.com/2009/11/03/changing-the-weather/" target="_blank">mobile</a> <a href="http://wouwlabs.com/blogs/jeez/?p=135" target="_blank">demos</a> , <a href="http://vimeo.com/7380069" target="_blank">this nice video</a> showing the making of the weather demo and also the <a href="http://www.youtube.com/watch?v=PCx8RfNhhXk" target="_blank">last video released yesterday</a>.</p>
<p>To celebrate the new version of Qt, the first with <a href="http://labs.trolltech.com/blogs/2009/12/01/a-brief-history-of-qt-for-symbian-and-a-look-ahead/" target="_blank">the S60 port</a>, we thought it would be nice if people could also check those demos on desktop platforms. You know, Qt is everywhere =)</p>
<p>As the release was yesterday, probably there are people without Qt 4.6 installed in their desktops yet&#8230; so we prepared binaries with <strong>Qt 4.6.0 statically linked</strong> =)</p>
<p style="text-align: center;"><a href="http://www.anselmolsm.org/public/qt/mobile-demos_static-linux.tar.bz2" target="_self">Linux version</a></p>
<p style="text-align: center;"><a href="http://www.anselmolsm.org/public/qt/mobile-demos_static-win32.zip">Windows version</a></p>
<p style="text-align: center;"><span style="text-decoration: line-through;">Mac version</span> (Unfortunately I don&#8217;t have a Mac available here right now. Contributions are welcome =)</p>
<p>It&#8217;s worth a mention. The source code for all platforms is basically the same, the only difference are due to different screen sizes, different connections methods.  This code is still available in the same place: <a href="http://gitorious.org/qt-labs/mobile-demos" target="_blank">http://gitorious.org/qt-labs/mobile-demos</a></p>
<p>And again, owners of  either S60 devices or N900 find packages at: <a href="http://qtlabs.openbossa.org/mobile-demos">http://qtlabs.openbossa.org/mobile-demos</a> .</p>
<p>&#8212;</p>
<p>TODO: Fix the bug in the weather demo when there&#8217;s no connection&#8230;</p>
<p>PS1: As an extra activity, support for keypads is work in progress (I have a N85 =P )</p>
<p>PS2:  Now that Qt 4.6.0 is out, it&#8217;s a good moment to make <a href="http://www.anselmolsm.org/blog/a-script-to-configure-qt-s60-environment-on-linux/" target="_blank">it work again</a> &#8230;</p>
<p>PS3: Hello planet KDE! o/</p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/qt-4-6-mobile-demos-also-on-desktop/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Qt 4.6 &amp; mobile-demos (pt_BR)</title>
		<link>http://anselmolsm.org/blog/qt-4-6-mobile-demos-pt_br/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=qt-4-6-mobile-demos-pt_br</link>
		<comments>http://anselmolsm.org/blog/qt-4-6-mobile-demos-pt_br/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 16:11:46 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[pt_BR]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[demos]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mobile-demos]]></category>
		<category><![CDATA[openBossa]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=1198</guid>
		<description><![CDATA[Hoje foi lançado o Qt 4.6.0! Também lançada a versão 1.3 do Qt Creator. Downloads em http://qt.nokia.com/downloads Além das novidades desta versão, confira também os mobile-demos! (Código Aqui) Pausa! &#8220;O que é Qt?&#8221; -&#62; Veja um resumo aqui (embora esse artigo em português da Wikipedia precise dumas atualizações). &#8220;Qt Creator?&#8221; … <a href="http://anselmolsm.org/blog/qt-4-6-mobile-demos-pt_br/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p>Hoje foi lançado o Qt 4.6.0! Também lançada a versão 1.3 do Qt Creator. Downloads em <a href="http://qt.nokia.com/downloads" target="_blank">http://qt.nokia.com/downloads</a></p>
<p>Além das novidades <a href="http://qt.nokia.com/products/whats-new-in-qt" target="_blank">desta versão</a>, confira também os <a href="http://qtlabs.openbossa.org/mobile-demos/" target="_blank">mobile-demos!</a> (<a href="http://qt.gitorious.org/qt-labs/mobile-demos" target="_blank">Código Aqui</a>)</p>
<p>Pausa!</p>
<p>&#8220;O que é <strong>Qt</strong>?&#8221; -&gt; Veja um <a href="http://pt.wikipedia.org/wiki/Qt" target="_blank">resumo aqui</a> (embora esse artigo em português da Wikipedia precise dumas atualizações).</p>
<p>&#8220;<strong>Qt Creator</strong>?&#8221; -&gt; É uma IDE para desenvolvimento em Qt.</p>
<p><strong>mobile-demos</strong>? Tá, esse explico aqui =)</p>
<p>São alguns conceitos de aplicações criados pelos designers e desenvolvedores do openBossa visando principalmente dispositivos de telefonia móvel (vulgo &#8221;celulares&#8217;) Symbian / S60 &#8211; Plataforma que move cerca de vários celulares em todo o mundo, notoriamente (mas não exclusivamente) aparelhos Nokia.</p>
<p>Se você tem um celular S60 5th edition (N97, 5800), você encontra os pacotes em: <a href="http://qtlabs.openbossa.org/mobile-demos/" target="_blank">http://qtlabs.openbossa.org/mobile-demos/</a></p>
<p>Quem tem celulares S60 3rd (por exemplo N95, N85), também podem rodar esses demos! Claro que com restrições, já que eles foram pensados para telas sensíveis a toque. Existem alguns branchs no gitorious com algum suporte ao teclado, quem sabe num futuro próximo teremos novidades =)</p>
<p>Se você já é um dos felizes proprietários de um N900, também <a href="http://qtlabs.openbossa.org/mobile-demos/" target="_blank">temos pacotes para você</a>!</p>
<p>Se você está querendo ver do que se trata isso tudo, está rodando Windows e não quer se envolver com compilação, instalação de bibliotecas, etc, <span style="text-decoration: line-through;">aguarde que se possível ainda hoje haverá algo para você</span> veja os links abaixo do vídeo =)</p>
<p>Enquanto isso, confira o vídeo:</p>
<p style="text-align: center;">
<p><a href="http://www.youtube.com/watch?v=PCx8RfNhhXk">http://www.youtube.com/watch?v=PCx8RfNhhXk</a></p>
</p>
<p style="text-align: center;">
<p><strong>Update:</strong></p>
<p>Aqui estão as versões para você que quer brincar com os demos no seu desktop. São binários com Qt 4.6.0 linkados estaticamente, para você que ainda está com uma versão anterior do Qt ou nem tem instalado.</p>
<p style="text-align: center;"><a href="http://www.anselmolsm.org/public/qt/mobile-demos_static-linux.tar.bz2" target="_self">Versão para Linux<br />
</a></p>
<p style="text-align: center;"><a href="http://www.anselmolsm.org/public/qt/mobile-demos_static-win32.zip">Versão para Windows</a></p>
<p style="text-align: center;">
<p style="text-align: center;">Mac: Estou sem mac no momento, contribuições são bem-vindas =)</p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/qt-4-6-mobile-demos-pt_br/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fisl10</title>
		<link>http://anselmolsm.org/blog/fisl10/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fisl10</link>
		<comments>http://anselmolsm.org/blog/fisl10/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 05:22:02 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[pt_BR]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[aKademy]]></category>
		<category><![CDATA[fisl]]></category>
		<category><![CDATA[gcds]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[openBossa]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=541</guid>
		<description><![CDATA[OBS: Este post deveria ter sido publicado em 1 de Julho mas não ficou pronto a tempo. Só consegui terminá-lo hoje, 5 de Julho. Acabei publicando sem estar todo terminado para não perder de vez o contexto. &#8212;- De 24 a 27 de junho aconteceu a décima edição do Fórum … <a href="http://anselmolsm.org/blog/fisl10/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p>OBS: Este post deveria ter sido publicado em <strong>1 de Julho</strong> mas não ficou pronto a tempo. Só consegui terminá-lo hoje, 5 de Julho. Acabei publicando sem estar todo terminado para não perder de vez o contexto.</p>
<p>&#8212;-</p>
<p>De 24 a 27 de junho aconteceu a décima edição do Fórum Internacional de Software Livre &#8211; fisl, em Porto Alegre-RS. Foi a primeira vez que compareci ao evento e tive a oportunidade de colaborar com o pessoal da <a href="http://www.qtsoftware.com" target="_blank">Qt Software</a> no estande no evento, montado em conjunto com o <a href="http://www.openbossa.org" target="_blank">openBossa</a>/<a href="http://www.indt.org.br">INdT</a>.</p>
<p>Houve bastante interesse (e também curiosidade) a respeito do framework Qt. Muitas pessoas procurando informações técnicas, treinamentos, esclarecendo dúvidas sobre o uso do Qt, sobre licenças, o que mudou desde que a Nokia comprou a Trolltech (agora Qt Software) e sobre as novidades que estarão disponíveis, ainda este ano, com o lançamento da versão 4.6.</p>
<p>Claro que também foi um trabalho de divulgação para os que não conheciam a ferramenta. Curiosamente alguns destes são usuários do <a href="http://www.kde.org" target="_blank">KDE</a>, que é o grande exemplo de uso do Qt (por ser bem maior e mais complexo que <a href="http://www.skype.com" target="_blank">Skype</a>, <a href="http://earth.google.com/" target="_blank">Google Earth</a>, <a href="http://www.qtsoftware.com/qt-in-use" target="_blank">entre outros</a>).</p>
<p>O <a href="http://www.openbossa.org/fisl" target="_blank">desafio Qt/openBossa</a>, realizado pouco antes e durante o evento, teve como vencedor Paulo Cesar Ferreira com o projeto QuickSocial &#8211; já fazendo uso de uma das novidades em desenvolvimento no Qt, a <a href="http://labs.trolltech.com/blogs/author/qtdeclarative/" target="_blank">Declarative UI</a>, disponível nos repositórios em <a href="http://qt.gitorious.org" target="_blank">qt.gitorious.org</a>. O primeiro colocado ganhou um Internet Tablet <a href="http://en.wikipedia.org/wiki/Nokia_N810" target="_blank">Nokia N810</a>, um exemplar do livro &#8220;<a href="http://www.amazon.com/Programming-Prentice-Source-Software-Development/dp/0132354160" target="_blank">C++ GUI Development with Qt4</a>&#8220; além de uma viagem de uma semana para o Recife onde participará de um pequeno treinamento de Qt no INdT. Também ganharam exemplares deste livro o segundo colocado, Rafael Floriano da Silva (PyRSS) e o terceiro Caio Ariede (Qtaxy).</p>
<p>Houve também o encontro da comunidade <a href="http://br.kde.org" target="_blank">KDE Brasil</a>. Muitas idéias foram levantadas, espero que consigamos aumentar a integração dos usuários e desenvolvedores brasileiros e melhorar a divulgação.</p>
<p>De volta ao Recife, uma certa pressa para concluir algumas tarefas antes de partirmos para o <a href="http://www.grancanariadesktopsummit.org/" target="_blank">Gran Canaria Desktop Summit</a>, evento que reunirá pela primeira vez aKademy (evento anual do KDE) e  GUADEC (evento do GNOME) e acontecerá em <a href="http://pt.wikipedia.org/wiki/Las_Palmas" target="_blank">Las Palmas</a> de <a href="http://pt.wikipedia.org/wiki/Gran_Can%C3%A1ria" target="_blank">Gran Canária</a>, na Espanha. Será uma grande experiência junto aos desenvolvedores do KDE assim como teremos novamente a chance de conversar pessoalmente com os desenvolvedores da Qt Software que também estarão lá. Meus colegas de trabalho (um tanto &#8220;Silvio Santos&#8221; essa frase) Artur (aka <a href="http://blog.morpheuz.cc" target="_blank">MoRpHeUz</a>) , <a href="http://cmarcelo.wordpress.com" target="_blank">Caio Marcelo</a> e <a href="http://blog.eduardofleury.com" target="_blank">Eduardo Fleury</a> (estes em dupla) tiveram palestras aceitas e falarão sobre o <a href="http://www.grancanariadesktopsummit.org/node/119" target="_blank">desenvolvimento de interfaces voltadas para netbooks</a> e sobre como <a href="http://www.grancanariadesktopsummit.org/node/136" target="_blank">o uso de diferentes  layouts</a> podem enriquecer a experiência dos usuários de software, respectivamente.</p>
<p><a href="http://anselmolsm.org/wp-content/uploads/2009/07/gcds_summit_badge.serendipityThumb.png"><img class="aligncenter size-full wp-image-543" title="gcds_summit_badge.serendipityThumb" src="http://anselmolsm.org/wp-content/uploads/2009/07/gcds_summit_badge.serendipityThumb.png" alt="gcds_summit_badge.serendipityThumb" width="300" height="154" /></a></p>
<p>Agora algumas horas de vôo pela frente =)</p>
<p>&#8211;</p>
<p>PS: Sim, virei um semi-analfabeto com as mudanças na Língua Portuguesa. Velha ortografia++.</p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/fisl10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canola2 menu layout with Qt Kinetic</title>
		<link>http://anselmolsm.org/blog/canola2-menu-layout-with-qt-kinetic/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=canola2-menu-layout-with-qt-kinetic</link>
		<comments>http://anselmolsm.org/blog/canola2-menu-layout-with-qt-kinetic/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 21:56:58 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[GPSL]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[examples]]></category>
		<category><![CDATA[INdT]]></category>
		<category><![CDATA[Kinetic]]></category>
		<category><![CDATA[openBossa]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=520</guid>
		<description><![CDATA[Welcome back dear readers. This is my second post of the day talking about what is happening in the development of animated layouts in Qt Kinetic. As I said in my previous post, we discussed about new good examples that could show use cases of this new API. In the … <a href="http://anselmolsm.org/blog/canola2-menu-layout-with-qt-kinetic/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p><!--:pt-->Welcome back dear readers. This is my second post of the day talking about what is happening in the development of animated layouts in <a href="http://labs.trolltech.com/page/Projects/Graphics/Kinetic" target="_blank">Qt Kinetic</a>.</p>
<p>As I said in my <a href="http://www.anselmolsm.org/blog/qt-state-machine-and-animated-layouts-integration/" target="_blank">previous post</a>, we discussed about new good examples that could show use cases of this new API. In the end, only one example was created, but it&#8217;s really cool =) .</p>
<p>Maybe some of you will recognize this interface, it looks like <a href="http://openbossa.indt.org.br/canola/index.html" target="_blank">canola2</a>&#8216;s main menu, another software developed by <a href="http://www.indt.org.br/" target="_blank">INdT</a> for Nokia <a href="http://en.wikipedia.org/wiki/Internet_Tablet" target="_blank">internet tablets</a> (e.g. <a href="http://en.wikipedia.org/wiki/N810" target="_blank">N810</a>) &#8211; and as you can read <a href="http://etrunko.blogspot.com/2009/03/canola-is-free.html" target="_blank">here</a>, an <a href="https://bugs.maemo.org/show_bug.cgi?id=3881" target="_blank">old bug was fixed</a> and canola2 is now a <a href="http://en.wikipedia.org/wiki/Free_software" target="_blank">free software</a>, released under <a href="http://en.wikipedia.org/wiki/Gplv3#Version_3" target="_blank">GPLv3</a>. In <a href="http://wouwlabs.com/blogs/jeez/?p=99" target="_blank">this post</a> you can read more about the development of that interface.</p>
<p>So, we wrote an example based on that concept. During the development we had nice discussions regarding the algorithm for the engine that controls the icons distribution on the screen.</p>
<p>Check it out:</p>
<p style="text-align: center;">
<p><a href="http://www.youtube.com/watch?v=eJcTBJaPRZg">http://www.youtube.com/watch?v=eJcTBJaPRZg</a></p>
</p>
<p style="text-align: center;">http://www.youtube.com/watch?v=eJcTBJaPRZg</p>
<p>The source code is not available yet, but it will be published soon in a git repository near you, then you will be able to check how animated layouts were used and also see that algorithm I&#8217;ve just mentined. So, stay tuned!<!--:--><!--:en--><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/canola2-menu-layout-with-qt-kinetic/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

