<?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>Enrico Ros &#187; graphicsview</title>
	<atom:link href="http://www.enricoros.com/blog/tag/graphicsview/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.enricoros.com/blog</link>
	<description>Focused ideas, bleeding edge madness and code recipes.</description>
	<lastBuildDate>Mon, 19 Apr 2010 07:54:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>AddiQted to 4.6</title>
		<link>http://www.enricoros.com/blog/2009/10/addiqted/</link>
		<comments>http://www.enricoros.com/blog/2009/10/addiqted/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 18:15:51 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Computer Graphics]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[amarok]]></category>
		<category><![CDATA[avanguardia]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[planetkde]]></category>
		<category><![CDATA[planetqt]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[qtsoftware]]></category>

		<guid isPermaLink="false">http://www.enricoros.com/blog/?p=354</guid>
		<description><![CDATA[note for planetkde readers: check the original article to see the video! I confess, I&#8217;m addiQted. You obviously think it&#8217;s normal (you&#8217;re not reading this blog by accident, aren&#8217;t you?) but it wasn&#8217;t always like this: I&#8217;ve liked some previous versions, but the upcoming Qt 4.6 really rocks! The Fotowall case As I shown previosly, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>note for <a href="http://www.planetkde.org">planetkde</a> readers: check the <a href="http://www.enricoros.com/blog/2009/10/addiqted/">original article</a> to see the video!</strong></p>
<p>I confess, I&#8217;m addi<em>Qt</em>ed. You obviously think it&#8217;s normal (you&#8217;re not reading this blog by <em>accident</em>, aren&#8217;t you?) but it wasn&#8217;t always like this: I&#8217;ve liked some previous versions, but the upcoming Qt <strong>4.6</strong> really <a href="http://www.missouri-vacations.com/images/elephant-rocks-body.jpg">rocks</a>!</p>
<h4>The Fotowall case</h4>
<p>As I shown <a href="http://www.enricoros.com/blog/2009/09/cuteness-4-6/">previosly</a>, <a href="http://www.enricoros.com/opensource/fotowall">Fotowall</a> already uses some features of Qt 4.6. How much?<br />
Qt 4.6 is referenced in <em>32 places</em>, for example in snippets like this:</p>
<pre class="brush: cpp; collapse: false;">
    // center the path
    QPointF pathCenter = path.boundingRect().center();
    #if QT_VERSION &gt;= 0x040600
        path.translate(-pathCenter);
    #elif QT_VERSION &gt;= 0x040500
        path = QTransform::fromTranslate(-pathCenter.x(), -pathCenter.y()).map(path);
    #else
        QTransform tx;
        tx.translate(-pathCenter.x(), -pathCenter.y());
        path = tx.map(path);
    #endif
</pre>
<p>From simple <a href="http://doc.trolltech.com/4.6-snapshot/qpainterpath.html#translate">path translations</a> to more complex <a href="http://doc.trolltech.com/4.6-snapshot/qmetaproperty.html#notifySignalIndex">property manipulations</a>, everything got better. See this code snipped about extending QGraphicsObject in 4.6 versus 4.5 and 4.4.</p>
<pre class="brush: cpp; collapse: false;">
    #if QT_VERSION &gt;= 0x040600
    class AbstractContent : public QGraphicsObject
    #else
    class AbstractContent : public QObject, public QGraphicsItem
    #endif
    {
        Q_OBJECT
    #if QT_VERSION &lt; 0x040600
        Q_PROPERTY(QPointF pos READ pos WRITE setPos)
        Q_PROPERTY(qreal rotation READ rotation WRITE setRotation NOTIFY rotationChanged)
    #endif
    #if QT_VERSION &lt; 0x040600 &amp;&amp; QT_VERSION &gt;= 0x040500
        Q_PROPERTY(qreal opacity READ opacity WRITE setOpacity)
    #endif
</pre>
<p><em>Do you feel the pain</em>?</p>
<h4>I Need it</h4>
<p>I need a world with Qt 4.6 only, because:</p>
<ul>
<li>It&#8217;s too much of a <strong>pain to support older versions</strong> in the same codebase</li>
<li>It&#8217;s not even fair, because <strong>non-4.6 users won&#8217;t enjoy the program as it&#8217;s meant to be</strong></li>
<li><strong>I can&#8217;t use A TON of new features</strong> because they&#8217;ll either <strong>simplify too much the code</strong>, or just because they don&#8217;t have a pre-4.6 equivalent</li>
<li>and because I&#8217;d like to finally use
<ul>
<li><a href="http://doc.qt.nokia.com/4.6-snapshot/qgraphicseffect.html">QGraphicsEffect</a> for Fotowall&#8217;s content</li>
<li><a href="http://doc.qt.nokia.com/4.6-snapshot/qvector3d.html">QVector3D</a> to say goodbye to <a href="http://github.com/enricoros/fotowall/raw/master/3rdparty/enricomath.h"><em>enricomath.h</em></a></li>
<li><a href="http://doc.qt.nokia.com/4.6-snapshot/qgesture.html">QGesture</a> for multi-finger interaction</li>
<li><a href="http://doc.qt.nokia.com/4.6-snapshot/qpropertyanimation.html">QPropertyAnimation</a> to its full potential!</li>
</ul>
</li>
</ul>
<h4>More 4.6 TEASING</h4>
<ol>
<li>As <a href="http://www.enricoros.com/blog/2009/09/cuteness-4-6/">you seem to like videos</a>, here is a preview of something we&#8217;re working on for <a href="http://amarok.kde.org">Amarok</a> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  <span style="text-decoration: underline;">Qt 4.6 only!!</span><br />
<p><a href="http://www.enricoros.com/blog/2009/10/addiqted/"><em>Click here to view the embedded video.</em></a></p></li>
<li>Also, since I&#8217;m <em>soooo much a giver</em>, see the new Fotowall&#8217;s <a href="http://www.enricoros.com/opensource/fotowall/assets/screenshots/teaser-wordcloud-1.png">Word Cloud</a> feature, coming in 0.9 <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </li>
</ol>
<h4>See you  @ Munich</h4>
<p>I&#8217;m packing for the <a href="http://qt.nokia.com/qtdevdays2009">DevDays 2009</a> Munich. See you there <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/10/addiqted/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/10/addiqted/&amp;title=AddiQted+to+4.6" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/10/addiqted/&amp;title=AddiQted+to+4.6" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/10/addiqted/&amp;title=AddiQted+to+4.6&amp;desc=note%20for%20planetkde%20readers%3A%20check%20the%20original%20article%20to%20see%20the%20video%21%0D%0A%0D%0AI%20confess%2C%20I%27m%20addiQted.%20You%20obviously%20think%20it%27s%20normal%20%28you%27re%20not%20reading%20this%20blog%20by%20accident%2C%20aren%27t%20you%3F%29%20but%20it%20wasn%27t%20always%20like%20this%3A%20I%27ve%20liked%20some%20previous%20versions%2C%20but%20the%20upcoming%20Qt%204.6%20really%20rocks%21%0D%0AThe%20F" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/10/addiqted/&amp;t=AddiQted+to+4.6" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/10/addiqted/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/10/addiqted/&amp;title=AddiQted+to+4.6&amp;srcUrl=http://www.enricoros.com/blog/2009/10/addiqted/&amp;srcTitle=AddiQted+to+4.6&amp;snippet=note%20for%20planetkde%20readers%3A%20check%20the%20original%20article%20to%20see%20the%20video%21%0D%0A%0D%0AI%20confess%2C%20I%27m%20addiQted.%20You%20obviously%20think%20it%27s%20normal%20%28you%27re%20not%20reading%20this%20blog%20by%20accident%2C%20aren%27t%20you%3F%29%20but%20it%20wasn%27t%20always%20like%20this%3A%20I%27ve%20liked%20some%20previous%20versions%2C%20but%20the%20upcoming%20Qt%204.6%20really%20rocks%21%0D%0AThe%20F" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/10/addiqted/&amp;title=AddiQted+to+4.6" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/10/addiqted/&amp;title=AddiQted+to+4.6" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/10/addiqted/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=AddiQted+to+4.6+-+http://b2l.me/kcnt6&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/10/addiqted/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Cuteness 4.6</title>
		<link>http://www.enricoros.com/blog/2009/09/cuteness-4-6/</link>
		<comments>http://www.enricoros.com/blog/2009/09/cuteness-4-6/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 05:01:34 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Computer Graphics]]></category>
		<category><![CDATA[Interests]]></category>
		<category><![CDATA[avanguardia]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[figosità]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[planetkde]]></category>
		<category><![CDATA[planetqt]]></category>
		<category><![CDATA[qt]]></category>

		<guid isPermaLink="false">http://www.enricoros.com/blog/?p=319</guid>
		<description><![CDATA[Seven days after the release of the Tech Preview 1, we released the latest stable Windows build of Fotowall [1] that was based on Qt 4.6. Somebody could argue that this is a bit imprudent. We did that because the benefits of the 4.6 release are worth the risk of the move! Indirect Benefits, or [...]]]></description>
			<content:encoded><![CDATA[<p>Seven days after the release of the <a href="http://labs.qt.nokia.com/blogs/2009/09/09/qt-460-tech-preview-1/">Tech Preview 1</a>, we released the latest stable Windows build of <a href="http://www.enricoros.com/opensource/fotowall/">Fotowall</a> [1] that was based on Qt 4.6. Somebody could argue that this is a bit <em>imprudent</em>. We did that because <strong>the benefits of the 4.6 release are worth the risk of the move</strong>!</p>
<h4>Indirect Benefits, or &#8216;what you get for free&#8217;</h4>
<ul>
<li><em>Improved quality</em> and <em>better speed</em> in the OpenGL QPainter</li>
<li><em>Better speed </em>in <a href="http://doc.trolltech.com/4.6-snapshot/graphicsview.html">the GraphicsView framework</a></li>
</ul>
<h4>Direct Benefits</h4>
<ul>
<li><a href="http://qt.nokia.com/doc/4.6-snapshot/animation-overview.html"><em>Animation Framework</em></a>: this simply r0cks! I don&#8217;t know about the whole Kinetic stuff, I just mean the ability to create <em>simple property animations</em>.<br />
I don&#8217;t have a video to show you but just take a look at the Fotowall&#8217;s Top-Bar, the tabs appear and disappear with a nice and smooth grow-shrink animation, that make the program look soo 2009-ish! finally!</li>
<li><a href="http://doc.trolltech.com/4.6-snapshot/qnetworkreply.html#isFinished"><em>QNetworkReply::isFinished</em>()</a>: thanks to this method I could implement a smart time-saver: when the user starts to drag a flickr picture, Fotowall starts downloading it. It can happen that, upon drop, the content has already been completely downloaded (so it can be placed in the canvas) or partially downloaded (so the used only needs to wait for the missing percent)</li>
</ul>
<h4>Drawbacks</h4>
<ul>
<li>There are some<em> graphics glitches</em> when animating the opacity property of a QGaphicsProxyWidget (in OpenGL)</li>
<li>Even by setting the <a href="http://doc.trolltech.com/4.6-snapshot/qgraphicsitem.html#GraphicsItemFlag-enum">QGraphicsItem::ItemSendsGeometryChanges</a> flag, the previous <em>behavior</em> is <em>not perfectly restored</em> (we used itemChange, and the new behavior doesn&#8217;t allow Fotowall&#8217;s mirrors to sync properly to the objects)</li>
</ul>
<h4>Movie Time!</h4>
<p>I&#8217;ve tried hard to record a screencast about the <em>Cuteness &amp; Performance</em> of Qt 4.6, but in the end I had to use my camera.</p>
<p><a href="http://www.enricoros.com/blog/2009/09/cuteness-4-6/"><em>Click here to view the embedded video.</em></a></p>
<p style="text-align: center;">Thanks Nokia for this great release! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>[1] <a href="http://www.enricoros.com/opensource/fotowall/">Fotowall</a> is a creative program to mix local and online graphics content and build original work.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/09/cuteness-4-6/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6&amp;desc=Seven%20days%20after%20the%20release%20of%20the%20Tech%20Preview%201%2C%20we%20released%20the%20latest%20stable%20Windows%20build%20of%20Fotowall%20%5B1%5D%20that%20was%20based%20on%20Qt%204.6.%20Somebody%20could%20argue%20that%20this%20is%20a%20bit%20imprudent.%20We%20did%20that%20because%20the%20benefits%20of%20the%204.6%20release%20are%20worth%20the%20risk%20of%20the%20move%21%0D%0AIndirect%20Benefits%2C%20or%20%27wha" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;t=Cuteness+4.6" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6&amp;srcUrl=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;srcTitle=Cuteness+4.6&amp;snippet=Seven%20days%20after%20the%20release%20of%20the%20Tech%20Preview%201%2C%20we%20released%20the%20latest%20stable%20Windows%20build%20of%20Fotowall%20%5B1%5D%20that%20was%20based%20on%20Qt%204.6.%20Somebody%20could%20argue%20that%20this%20is%20a%20bit%20imprudent.%20We%20did%20that%20because%20the%20benefits%20of%20the%204.6%20release%20are%20worth%20the%20risk%20of%20the%20move%21%0D%0AIndirect%20Benefits%2C%20or%20%27wha" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/09/cuteness-4-6/&amp;title=Cuteness+4.6" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/09/cuteness-4-6/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Cuteness+4.6+-+http://b2l.me/kbbnf&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/09/cuteness-4-6/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Fotowall 0.8</title>
		<link>http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/</link>
		<comments>http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 11:00:54 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[avanguardia]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[figosità]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[planetqt]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://www.enricoros.com/blog/?p=295</guid>
		<description><![CDATA[Fotowall 0.8.2 has just been released and we&#8217;re already getting some great feedback Cherry picked  features from the delicious 0.8 release: Now you&#8217;ll be able to deform text changing the shape of its baseline visually (see the &#8220;Fotowall&#8221; string in the image above and its Bezier control points) Pictures can be cropped to a certain [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.enricoros.com/opensource/fotowall">Fotowall</a></strong> 0.8.2 has just been released and we&#8217;re already getting some <strong>great feedback</strong> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><img class="size-full wp-image-299" style="margin-left: auto; margin-right: auto;" title="Fotowall 0.8" src="http://www.enricoros.com/blog/wp-content/uploads/2009/09/0.8.blog.png" alt="New features in Fotowall 0.8" width="489" height="368" /></p>
<p>Cherry picked <img class="alignnone size-full wp-image-311" title="cherry" src="http://www.enricoros.com/blog/wp-content/uploads/2009/09/cherry.png" alt="cherry" width="19" height="16" /> features from the delicious 0.8 release:</p>
<ul>
<li>Now you&#8217;ll be able to <strong>deform text</strong> changing the shape of its baseline visually (see the &#8220;Fotowall&#8221; string in the image above and its <a href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve">Bezier</a> control points)</li>
<li>Pictures can be <strong>cropped</strong> to a certain area, for example to select a single person from a group. Also picture&#8217;s <strong>transparency</strong> can be adjusted, to create nice fading effects</li>
<li>A lot of work has been put into enabling <strong><a href="http://www.opengl.org">OpenGL</a> acceleration</strong>, really useful if your canvas has 100+ semi-transparent objects <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </li>
<li>You can now work with a transparent window (or <a href="http://www.enricoros.com/opensource/fotowall/assets/screenshots/0.8-vista-blur-1.jpg">blurred</a>, on Vista)</li>
<li>The top-bar is now <strong>context-sensitive</strong>. We&#8217;ll move more and more content properties to that instead of the old content configuration window</li>
</ul>
<p>Plus a lot of user suggestions and fixes have been implemented to make Fotowall always <em>easier and intuitive to use</em>. The 0.8 release now ships in 6 different languages: english, italian, french, german, brazilian, polish. You can even <a href="http://www.enricoros.com/opensource/fotowall/translate">contribute your own translations</a>.</p>
<p>But our favorite news is that <a href="http://www.enricoros.com/opensource/fotowall">Fotowall now has it&#8217;s official website</a> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>What about next: we&#8217;re  working hard on the 0.9 release and we already have lots of new features! You&#8217;ll be surprised by what you&#8217;ll be able to achieve with the next version <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>A final special thank to <a href="http://zrusin.blogspot.com/">Zack Rusin</a> who created the <a href="http://zrusin.blogspot.com/2006/11/text-on-path.html">Text on path</a> example that was the basis of our shaped text.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8&amp;desc=Fotowall%200.8.2%20has%20just%20been%20released%20and%20we%27re%20already%20getting%20some%20great%20feedback%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0ACherry%20picked%C2%A0%20features%20from%20the%20delicious%200.8%20release%3A%0D%0A%0D%0A%09Now%20you%27ll%20be%20able%20to%20deform%20text%20changing%20the%20shape%20of%20its%20baseline%20visually%20%28see%20the%20%22Fotowall%22%20string%20in%20the%20image%20above%20and%20its%20Bezier%20contr" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;t=Fotowall+0.8" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8&amp;srcUrl=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;srcTitle=Fotowall+0.8&amp;snippet=Fotowall%200.8.2%20has%20just%20been%20released%20and%20we%27re%20already%20getting%20some%20great%20feedback%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0ACherry%20picked%C2%A0%20features%20from%20the%20delicious%200.8%20release%3A%0D%0A%0D%0A%09Now%20you%27ll%20be%20able%20to%20deform%20text%20changing%20the%20shape%20of%20its%20baseline%20visually%20%28see%20the%20%22Fotowall%22%20string%20in%20the%20image%20above%20and%20its%20Bezier%20contr" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/&amp;title=Fotowall+0.8" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+0.8+-+http://b2l.me/kcm49&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/09/fotowall-0-8-2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Fotowall 0.7</title>
		<link>http://www.enricoros.com/blog/2009/07/fotowall-0-7/</link>
		<comments>http://www.enricoros.com/blog/2009/07/fotowall-0-7/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 13:07:25 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[avanguardia]]></category>
		<category><![CDATA[figosità]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[planetqt]]></category>
		<category><![CDATA[qt]]></category>

		<guid isPermaLink="false">http://enricoros.wordpress.com/?p=197</guid>
		<description><![CDATA[Fotowall 0.7.1 has been released today! Get it while it&#8217;s hot With this release Fotowall integrates with the deep web. You can now search the network with the embedded flickr search pane and add the images to the canvas. This opens up an infinite can of content, all available for your pleasure . Other relevant [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.enricoros.com/opensource/fotowall/" target="_blank">Fotowall</a> 0.7.1</strong> has been released today! <a href="http://www.enricoros.com/opensource/fotowall/binaries" target="_blank">Get it</a> while it&#8217;s hot <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<div id="attachment_199" class="wp-caption aligncenter" style="width: 520px"><img class="size-full wp-image-199" title="FotoWall 0.7" src="http://enricoros.files.wordpress.com/2009/07/0-7-1-1.jpg" alt="FotoWall 0.7" width="510" height="376" /><p class="wp-caption-text">New features in Fotowall 0.7. In the top left area you can see the web image selector.</p></div>
<p>With this release Fotowall <strong>integrates with the deep web</strong>. You can now search the network with the embedded <a href="http://www.flickr.com" target="_blank">flickr</a> search pane and add the images to the canvas. This opens up an infinite can of content, all available for your pleasure <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> .</p>
<p>Other relevant features include:</p>
<ul>
<li>support for Qt 4.6 (brings animations and transparencies)</li>
<li>usability fixes (rubberband selection, deletion, etc..)</li>
<li>cleaner design (new icons, loadable frames, better property dialogs)</li>
<li>italian, french and german translation</li>
<li>check for updates and web links</li>
</ul>
<p>Don&#8217;t hesitate to ask for missing features and always remember that you can <span style="text-decoration: underline;">rotate pictures by dragging corners with the right mouse button</span> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Enjoy your Fotowall!! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/07/fotowall-0-7/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7&amp;desc=Fotowall%200.7.1%20has%20been%20released%20today%21%20Get%20it%20while%20it%27s%20hot%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0AWith%20this%20release%20Fotowall%20integrates%20with%20the%20deep%20web.%20You%20can%20now%20search%20the%20network%20with%20the%20embedded%20flickr%20search%20pane%20and%20add%20the%20images%20to%20the%20canvas.%20This%20opens%20up%20an%20infinite%20can%20of%20content%2C%20all%20available%20for%20your%20ple" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;t=Fotowall+0.7" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7&amp;srcUrl=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;srcTitle=Fotowall+0.7&amp;snippet=Fotowall%200.7.1%20has%20been%20released%20today%21%20Get%20it%20while%20it%27s%20hot%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0AWith%20this%20release%20Fotowall%20integrates%20with%20the%20deep%20web.%20You%20can%20now%20search%20the%20network%20with%20the%20embedded%20flickr%20search%20pane%20and%20add%20the%20images%20to%20the%20canvas.%20This%20opens%20up%20an%20infinite%20can%20of%20content%2C%20all%20available%20for%20your%20ple" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/07/fotowall-0-7/&amp;title=Fotowall+0.7" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/07/fotowall-0-7/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+0.7+-+http://b2l.me/kbkmn&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/07/fotowall-0-7/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Fotowall 0.6</title>
		<link>http://www.enricoros.com/blog/2009/04/fotowall-06/</link>
		<comments>http://www.enricoros.com/blog/2009/04/fotowall-06/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 18:09:17 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[avanguardia]]></category>
		<category><![CDATA[figosità]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[posterazor]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[qtsoftware]]></category>

		<guid isPermaLink="false">http://enricoros.wordpress.com/2009/04/29/fotowall-06/</guid>
		<description><![CDATA[L&#8217;escalation verso la 1.0 continua con una nuova milestone Se non vi sono bastate le tonnellate di migliorie della 0.5 ecco che arriva una 0.6 che quasi raddoppia la base di codice e introduce una serie di caratteristiche che danno un taglio professionale senza intaccare la facilità di interazione e la libertà di giocare con [...]]]></description>
			<content:encoded><![CDATA[<p>L&#8217;escalation verso la <strong>1.0</strong> continua con una nuova milestone <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<div id="attachment_100" class="wp-caption aligncenter" style="width: 520px"><img class="size-full wp-image-100" title="FotoWall 0.6" src="http://enricoros.files.wordpress.com/2009/04/06-11.png" alt="Nuove caratteristiche presenti in FotoWall 0.6" width="510" height="384" /><p class="wp-caption-text">Nuove caratteristiche presenti in Fotowall 0.6</p></div>
<p>Se non vi sono bastate le tonnellate di migliorie della 0.5 ecco che arriva una 0.6 che quasi <strong>raddoppia la base di codice</strong> e introduce una serie di caratteristiche che danno <strong>un taglio professionale</strong> senza intaccare la facilità di interazione e la libertà di giocare con Fotowall <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  E ancora non avete letto nulla&#8230;<span id="more-98"></span></p>
<p><strong><br />
Integrazione con <a href="http://posterazor.sourceforge.net">PosteRazor</a></strong></p>
<blockquote><p>Non ci vuole un pennello  grande, ma <span style="text-decoration: line-through;">un grande pen</span> Fotowall 0.6!</p></blockquote>
<p><img class="alignright size-thumbnail wp-image-102" title="PosteRazor logo" src="http://enricoros.files.wordpress.com/2009/04/making-06-posterazor.png?w=149" alt="PosteRazor logo" width="149" height="150" />PosteRazor, di <a href="http://www.casaportale.de">Alessandro Portale</a>, è un programma che consente di stampare a casa propria dei poster grandi a piacere con una stampante comune.In pratica divide l&#8217;immagine in tanti fogli che una volta ritagliati ed incollati vanno a formare un Poster.  La capacità di Fotowall di sintetizzare immagini in <em>altissima definizione</em> e l&#8217;esportazione con PosteRazor permettono di creare composizioni grafiche di risoluzione notevole in uno spazio piccolo, quale lo schermo del PC.</p>
<p>Oltretutto, l&#8217;unione di Fotowall e PosteRazor, rappresenta un avvenimento davvero raro nel panorama opensource. Sono infatti frequenti i <em>fork</em>, quando gruppi di persone vogliono evolvere un software in modo diverso dalla linea prestabilita e così si finisce con più programmi che fanno la stessa cosa, ma i <em>join</em>, come questo caso, sono davvero rarissimi! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Oggetto Video</strong>, o Specchio</p>
<p>E&#8221; un oggetto manipolabile (come le Foto o il Testo) che contiene il <em>video ripreso dalle webcam</em> collegate al PC. E&#8217; detto anche <em>specchio</em> perchè spesso i portatili sono dotati di una webcam che ti riprende, quindi è <em>un po&#8217; come inserire degli specchietti in </em>Fotowall <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Export Guidato</strong></p>
<p>L&#8217;assistente consente di esportare la scena attuale in 4 modi: impostando lo <em>sfondo del desktop</em>, <em>salvando un&#8217;immagine</em>, <em>creando un poster</em> (vedi PosteRazor), o <em>stampando</em> su carta. Ci sono tutte le opzioni necessarie per divertirsi <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Consiglio anche di vedere il modo &#8220;Dimensione Esatta&#8221; (accessibile dalla finestra principale di Fotowall), che consente lavorare a schermo all dimensione fisica specificata (tipo 15x6cm) e stampare alla medesima dimensione. <strong>WYSIWYG</strong> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Formato XML</strong></p>
<p>La scena può essere salvata e recuperata (quasi, ehm.. esattamente..) nel nuovo formato XML, che assicura compatibiltà in avanti. Da oggi in poi potrete mettere via le vostre scene Fotowall preferite.</p>
<p><strong>Selezione, Prospettiva</strong> &amp;  altri 50 commit</p>
<p>E&#8217; possibile selezionare più oggetti, spostarli o cambiare le proprietà in gruppo, cambiare la prospettiva degli oggetti (rotazione attorno agli assi X ed Y <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ), riscalare il testo come si roto-scalano le immagini, c&#8217;è l&#8217;effetto Seppia, e molto altro ancora <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Enjoy your Fotowall!! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2009/04/fotowall-06/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6&amp;desc=L%27escalation%20verso%20la%201.0%20continua%20con%20una%20nuova%20milestone%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0ASe%20non%20vi%20sono%20bastate%20le%20tonnellate%20di%20migliorie%20della%200.5%20ecco%20che%20arriva%20una%200.6%20che%20quasi%20raddoppia%20la%20base%20di%20codice%20e%20introduce%20una%20serie%20di%20caratteristiche%20che%20danno%20un%20taglio%20professionale%20senza%20intaccare%20la%20facilit%C3%A0%20di%20i" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;t=Fotowall+0.6" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6&amp;srcUrl=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;srcTitle=Fotowall+0.6&amp;snippet=L%27escalation%20verso%20la%201.0%20continua%20con%20una%20nuova%20milestone%20%3B-%29%0D%0A%0D%0A%0D%0A%0D%0ASe%20non%20vi%20sono%20bastate%20le%20tonnellate%20di%20migliorie%20della%200.5%20ecco%20che%20arriva%20una%200.6%20che%20quasi%20raddoppia%20la%20base%20di%20codice%20e%20introduce%20una%20serie%20di%20caratteristiche%20che%20danno%20un%20taglio%20professionale%20senza%20intaccare%20la%20facilit%C3%A0%20di%20i" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2009/04/fotowall-06/&amp;title=Fotowall+0.6" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2009/04/fotowall-06/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+0.6+-+http://b2l.me/kakm8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2009/04/fotowall-06/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fotowall &#8211; Photo Collection Wallpaperizer!</title>
		<link>http://www.enricoros.com/blog/2007/12/fotowall/</link>
		<comments>http://www.enricoros.com/blog/2007/12/fotowall/#comments</comments>
		<pubDate>Sat, 08 Dec 2007 18:50:06 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Senza categoria]]></category>
		<category><![CDATA[fotowall]]></category>
		<category><![CDATA[graphicsview]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://enricoros.wordpress.com/2007/12/08/fotowall/</guid>
		<description><![CDATA[update: this article is really outdated, we have a website now! see the new cool stuff @ www.enricoros.com/opensource/fotowall You always wanted to create quick graphics composition from a bunch of photos you have.. and now your dream came true! With Fotowall you can drag some pictures in the canvas, place them as you like, put a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>update: this article is really outdated, we have a <a href="http://www.enricoros.com/opensource/fotowall">website</a> now!<br />
<strong style="background-color: #ffffff;">see the new cool stuff @ <a href="http://www.enricoros.com/opensource/fotowall">www.enricoros.com/opensource/fotowall</a> <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8-)' class='wp-smiley' /> </strong></strong></p>
<p>You always wanted to create quick graphics composition from a bunch of photos you have.. and now your dream came true! With Fotowall you can drag some pictures in the canvas, place them as you like, put a title on them, change the colors and the gradients the way you like and finally <strong>render a poster-sized graphical composition</strong> of them!</p>
<p>Take  a look a this quick video tour. In less than 2 minutes you will see the whole process, from installation to the rendering of a wallpaper.</p>
<p style="text-align: center;"><p><a href="http://www.enricoros.com/blog/2007/12/fotowall/"><em>Click here to view the embedded video.</em></a></p></p>
<p>You can find the <a href="http://www.enricoros.com/opensource/fotowall/source-code" target="_blank"><strong>source code</strong></a> on <a href="http://www.enricoros.com/opensource/fotowall/">the website</a>. The program runs on every Linux or Windows (XP, Vista) out there! (So even Ilan will be able to do a &#8220;two hands saw&#8221; in his awesome OS!! <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> )</p>
<p>Thanks goes to <strong>David Eccher</strong> for his suggestions!<br />
You rock man <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2007/12/fotowall/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21&amp;desc=update%3A%20this%20article%20is%20really%20outdated%2C%20we%20have%20a%20website%20now%21%0D%0Asee%20the%20new%20cool%20stuff%20%40%C2%A0www.enricoros.com%2Fopensource%2Ffotowall%208-%29%0D%0A%0D%0AYou%20always%20wanted%20to%20create%20quick%20graphics%20composition%20from%20a%20bunch%20of%20photos%20you%20have..%20and%20now%20your%20dream%20came%20true%21%20With%20Fotowall%20you%20can%20drag%20some%20pictures%20in%20t" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2007/12/fotowall/&amp;t=Fotowall+-+Photo+Collection+Wallpaperizer%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21&amp;srcUrl=http://www.enricoros.com/blog/2007/12/fotowall/&amp;srcTitle=Fotowall+-+Photo+Collection+Wallpaperizer%21&amp;snippet=update%3A%20this%20article%20is%20really%20outdated%2C%20we%20have%20a%20website%20now%21%0D%0Asee%20the%20new%20cool%20stuff%20%40%C2%A0www.enricoros.com%2Fopensource%2Ffotowall%208-%29%0D%0A%0D%0AYou%20always%20wanted%20to%20create%20quick%20graphics%20composition%20from%20a%20bunch%20of%20photos%20you%20have..%20and%20now%20your%20dream%20came%20true%21%20With%20Fotowall%20you%20can%20drag%20some%20pictures%20in%20t" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2007/12/fotowall/&amp;title=Fotowall+-+Photo+Collection+Wallpaperizer%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2007/12/fotowall/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fotowall+-+Photo+Collection+Wallpaperizer%21+-+http://b2l.me/kbgrr&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2007/12/fotowall/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Elements of Ui Design &#8211; ColorPicker</title>
		<link>http://www.enricoros.com/blog/2007/11/elements-of-ui-design/</link>
		<comments>http://www.enricoros.com/blog/2007/11/elements-of-ui-design/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 10:26:38 +0000</pubDate>
		<dc:creator>Enrico Ros</dc:creator>
				<category><![CDATA[Computer Graphics]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[colorpicker]]></category>
		<category><![CDATA[graphicsview]]></category>

		<guid isPermaLink="false">http://enricoros.wordpress.com/2007/11/23/elements-of-ui-design/</guid>
		<description><![CDATA[Update: the source code is included in the Fotowall project. The files you&#8217;re looking for are the ColorPickerItem ones. Say you&#8217;re writing an application and you want to let the user to change the color of an item; what will you do? The standard approach is to popup a color dialog with the standard HSV [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update: the source code is included in the <a href="http://www.enricoros.com/opensource/fotowall/">Fotowall</a> project. The <a href="http://www.enricoros.com/opensource/fotowall/source-code">files you&#8217;re looking for</a> are the ColorPickerItem ones.</strong></p>
<p>Say you&#8217;re writing an application and you want to let the user to change the color of an item; <em>what will you do?</em></p>
<p>The standard approach is to <span style="text-decoration: line-through;">popup a color dialog</span> with the standard HSV selector and all the sliders and values and buttons and confusion. Another approach is to <span style="text-decoration: line-through;">pop down a combobox</span> with a selection of default colors where the user won&#8217;t find the colour she is looking for (unless it&#8217;s RED, of course <img src='http://www.enricoros.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ).<br />
Both approaches need you to get shocked by another window appearing right in front of you, so you loose the context and move the mouse far away from where it was.</p>
<p>Let&#8217;s take a look at this <strong>new approach</strong>:</p>
<p><a href="http://www.enricoros.com/blog/2007/11/elements-of-ui-design/"><em>Click here to view the embedded video.</em></a></p>
<p>The 2d (yet perspective transformed) dialog smoothly fades in when hovering the color and <em>your favorite hue is just 1 or 2 clicks apart</em>!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.enricoros.com/blog/2007/11/elements-of-ui-design/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.enricoros.com/blog/2007/11/elements-of-ui-design/&amp;title=Elements+of+Ui+Design+-+ColorPicker" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.enricoros.com/blog/2007/11/elements-of-ui-design/&amp;title=Elements+of+Ui+Design+-+ColorPicker" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.enricoros.com/blog/2007/11/elements-of-ui-design/&amp;title=Elements+of+Ui+Design+-+ColorPicker&amp;desc=Update%3A%20the%20source%20code%20is%20included%20in%20the%20Fotowall%20project.%20The%20files%20you%27re%20looking%20for%20are%20the%20ColorPickerItem%20ones.%0D%0A%0D%0ASay%20you%27re%20writing%20an%20application%20and%20you%20want%20to%20let%20the%20user%20to%20change%20the%20color%20of%20an%20item%3B%20what%20will%20you%20do%3F%0D%0A%0D%0AThe%20standard%20approach%20is%20to%20popup%20a%20color%20dialog%20with%20the%20sta" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.enricoros.com/blog/2007/11/elements-of-ui-design/&amp;t=Elements+of+Ui+Design+-+ColorPicker" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.enricoros.com/blog/2007/11/elements-of-ui-design/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.enricoros.com/blog/2007/11/elements-of-ui-design/&amp;title=Elements+of+Ui+Design+-+ColorPicker&amp;srcUrl=http://www.enricoros.com/blog/2007/11/elements-of-ui-design/&amp;srcTitle=Elements+of+Ui+Design+-+ColorPicker&amp;snippet=Update%3A%20the%20source%20code%20is%20included%20in%20the%20Fotowall%20project.%20The%20files%20you%27re%20looking%20for%20are%20the%20ColorPickerItem%20ones.%0D%0A%0D%0ASay%20you%27re%20writing%20an%20application%20and%20you%20want%20to%20let%20the%20user%20to%20change%20the%20color%20of%20an%20item%3B%20what%20will%20you%20do%3F%0D%0A%0D%0AThe%20standard%20approach%20is%20to%20popup%20a%20color%20dialog%20with%20the%20sta" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.enricoros.com/blog/2007/11/elements-of-ui-design/&amp;title=Elements+of+Ui+Design+-+ColorPicker" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.enricoros.com/blog/2007/11/elements-of-ui-design/&amp;title=Elements+of+Ui+Design+-+ColorPicker" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.enricoros.com/blog/2007/11/elements-of-ui-design/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Elements+of+Ui+Design+-+ColorPicker+-+http://b2l.me/kbvg6&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.enricoros.com/blog/2007/11/elements-of-ui-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
