<?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; openBossa</title>
	<atom:link href="http://anselmolsm.org/blog/tag/openbossa/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>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>Qt Mobile Demos in extras-devel</title>
		<link>http://anselmolsm.org/blog/qt-mobile-demos-in-extras-devel/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=qt-mobile-demos-in-extras-devel</link>
		<comments>http://anselmolsm.org/blog/qt-mobile-demos-in-extras-devel/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 20:30:54 +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[demos]]></category>
		<category><![CDATA[maemo5]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mobile-demos]]></category>
		<category><![CDATA[n900]]></category>
		<category><![CDATA[openBossa]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=1246</guid>
		<description><![CDATA[A small post. In the first season, the focus was S60 devices. After the holidays, the new season is about Maemo. =) Qt Mobile Demos are in Maemo 5 extras-devel, so now it&#8217;s easier to check them in a N900 near you. First, you need to enable the extras-devel repository/catalogue … <a href="http://anselmolsm.org/blog/qt-mobile-demos-in-extras-devel/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p>A small post.</p>
<p>In the first season, the focus was S60 devices. After the holidays, the new season is about Maemo. =)</p>
<p>Qt Mobile Demos are in Maemo 5 extras-devel, so now it&#8217;s easier to check them in a N900 near you. First, you need to <a href="http://maemo-freak.com/index.php/hacks/1334-how-to-activate-extras-extras-testing-and-extras-devel-catalogues" target="_blank">enable the extras-devel repository/catalogue</a> and the demos should appear if you search for &#8220;qtmobile&#8221;.</p>
<p>The packages are:</p>
<p style="text-align: center;">hyperui -&gt; <strong>qtmobiledemo-hyperui</strong></p>
<p style="text-align: center;">mybudget -&gt; <strong>qtmobiledemo-mybudget</strong></p>
<p style="text-align: center;">shoplist -&gt;<strong> qtmobiledemo-shoplist</strong></p>
<p style="text-align: center;">weather -&gt; <strong>qtmobiledemo-weather</strong></p>
<p>Future? <span style="text-decoration: line-through;">Well, soon <a href="http://qt.nokia.com/doc/qt-maemo-4.6/qabstractkineticscroller.html" target="_blank">QAbstractKineticScroller</a> will replace our kinetic list implementation.</span> (Read the comments).</p>
<p>And yes, we have a list of known issues to solve in our free time&#8230;</p>
<p>The code still in the same place, <a href="http://qt.gitorious.org/qt-labs/mobile-demos" target="_blank">http://qt.gitorious.org/qt-labs/mobile-demos</a></p>
<p>That&#8217;s all for today.</p>
<p>PS: Thanks to Etrunko, who helped a lot with packaging stuff =)</p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/qt-mobile-demos-in-extras-devel/feed/</wfw:commentRss>
		<slash:comments>9</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>Latinoware 2009</title>
		<link>http://anselmolsm.org/blog/latinoware-2009-ptbr/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=latinoware-2009-ptbr</link>
		<comments>http://anselmolsm.org/blog/latinoware-2009-ptbr/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 01:53:40 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[pt_BR]]></category>
		<category><![CDATA[INdT]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[openBossa]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=1163</guid>
		<description><![CDATA[Na próxima Quinta-feira, 22 de Outubro, começa a edição deste ano da Conferência Latino Americana de Software Livre &#8211; Latinoware 2009, e nós estaremos lá! =) Cerca de 3800 pessoas estão inscritas para o evento e acredito que será um grande encontro com outros desenvolvedores, pessoas que conheço apenas por … <a href="http://anselmolsm.org/blog/latinoware-2009-ptbr/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p>Na próxima Quinta-feira, 22 de Outubro, começa a edição deste ano da Conferência Latino Americana de Software Livre &#8211; Latinoware 2009, e nós estaremos lá! =)</p>
<p>Cerca de 3800 pessoas estão inscritas para o evento e acredito que será um grande encontro com outros desenvolvedores, pessoas que conheço apenas por IRC ou e-mail, chance de conseguir parceiros para o  <a href="http://qtlabs.openbossa.org/" target="_blank">Qt Labs Americas</a> em outros países da América Latina, e claro, aprender e conhecer novas coisas.</p>
<p>Aprender e também ensinar! =) Se você olhar a programação do evento, notará que alguns colegas farão apresentações lá. Entre eles, Artur de Souza (<a href="http://blog.morpheuz.cc/" target="_blank">MoRpHeuz</a>) apresentará uma atualizada versão de sua palestra sobre Plasma Netbook (incluindo uma demonstração bem legal =). Já <a href="http://blog.cmarcelo.org/" target="_blank">Caio Marcelo </a>e <a href="http://blog.eduardofleury.com/" target="_blank">Eduardo Fleury</a> tratarão sobre novas possibilidades para o desenvolvimento de interfaces gráficas em Qt e KDE. Ainda temos nosso colega importado <a href="http://codeposts.blogspot.com/" target="_blank">Kenneth Christiansen</a>, que falará sobre QtWebkit.</p>
<p>No último dia  (Sábado, 24 de Outubro) <a href="http://wouwlabs.com/blogs/jeez" target="_blank">Jesus Sanchez-Palencia</a> e eu ministraremos um minicurso sobre o que há de novidade no Qt 4.6. Assim, pessoas interessadas no desenvolvimento com Qt e também KDE terão uma grande oportunidade de aprendizado, pois existem outros 2 cursos no programa, ministrados pelos colegas do <a href="http://liveblue.wordpress.com/" target="_blank">Live Blue</a>, além é claro de poder ter contato com outros membros da comunidade KDE que estarão por lá =)</p>
<p>Além dos já mencionados, destaco também a apresentação que Ana Cecília (annieC) fará sobre um estudo de usabilidade em projetos de software livre.</p>
<p>Aos que forem para o Latinoware, nos vemos lá! Aos que não puderem comparecer, fiquem atentos que em breve teremos notícias.</p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/latinoware-2009-ptbr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latinoware 2009</title>
		<link>http://anselmolsm.org/blog/latinoware-2009-en/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=latinoware-2009-en</link>
		<comments>http://anselmolsm.org/blog/latinoware-2009-en/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 23:46:41 +0000</pubDate>
		<dc:creator>anselmolsm</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[INdT]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[openBossa]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://www.anselmolsm.org/blog/?p=1161</guid>
		<description><![CDATA[Next Thursday, October 22nd begins the 6th edition of the Latin American Free Software Conference &#8211; Latinoware and we are going to be there =) About 3900 people are already registered for the event and personally I expect a great opportunity to meet people, some of them I only know … <a href="http://anselmolsm.org/blog/latinoware-2009-en/"> Continue reading <span class="meta-nav">&#8594; </span></a>]]></description>
			<content:encoded><![CDATA[<p>Next Thursday, October 22nd begins the 6th edition of the <a href="http://www.latinoware.org" target="_blank">Latin American Free Software Conference &#8211; Latinoware</a> and we are going to be there =)</p>
<p>About 3900 people are already registered for the event and personally I expect a great opportunity to meet people, some of them I only know from IRC or mailing lists, maybe new partners for <a href="http://qtlabs.openbossa.org/" target="_blank">Qt Labs Americas</a> in other countries of Latin America =) and also a chance  to learn new things.</p>
<p>Learn and teach a little! =) If you take a look in the conference&#8217;s program you will see that some colleages are going to speak there. Artur de Souza (<a href="http://blog.morpheuz.cc/" target="_blank">MoRpHeuz</a>) will present an updated version of his talk about Plasma Netbook (including a cool demonstration =). In <a href="http://blog.cmarcelo.org/" target="_blank">Caio Marcelo</a>&#8216;s and <a href="http://blog.eduardofleury.com/" target="_blank">Eduardo Fleury&#8217;</a>s talk, the attendants will see what are the new possibilities in graphical interfaces development with Qt (and for KDE). Another openBossa speaker is <a href="http://codeposts.blogspot.com/" target="_blank">Kenneth Christiansen</a> with a presentation about QtWebkit.</p>
<p>People interested in learn how to develop with Qt and KDE will have a great opportunity because there are 2 courses by the guys of <a href="http://liveblue.wordpress.com/" target="_blank">Live Blue</a>. In the last day (Saturday October,24th) <a href="http://wouwlabs.com/blogs/jeez" target="_blank">Jesus Sanchez-Palencia</a> and me are going to head a course on the new  Qt  4.6 APIs .</p>
<p>Besides the mentioned ones, Ana Cecília (<a href="http://www.wouwlabs.com/blogs/anniec/" target="_blank">annieC</a>) will talk about an usability study on FOSS.</p>
<p>So, if you are going to Foz do Iguaçú, see you there! =) And if you won&#8217;t go, stay tuned for the news.</p>
]]></content:encoded>
			<wfw:commentRss>http://anselmolsm.org/blog/latinoware-2009-en/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>

