<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Attracted by virtual constructs &#187; Khalkhi</title>
	<atom:link href="http://frinring.wordpress.com/category/khalkhi/feed/" rel="self" type="application/rss+xml" />
	<link>http://frinring.wordpress.com</link>
	<description>Thoughts about developing systems in software</description>
	<lastBuildDate>Sat, 31 Oct 2009 21:40:01 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='frinring.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/4a77e0017050226d632e1350fbe80c1d?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Attracted by virtual constructs &#187; Khalkhi</title>
		<link>http://frinring.wordpress.com</link>
	</image>
			<item>
		<title>Getting drops to Khalkhi plasmoids going</title>
		<link>http://frinring.wordpress.com/2007/08/23/getting-drops-to-khalkhi-plasmoids-going/</link>
		<comments>http://frinring.wordpress.com/2007/08/23/getting-drops-to-khalkhi-plasmoids-going/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 12:57:27 +0000</pubDate>
		<dc:creator>frinring</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Khalkhi]]></category>

		<guid isPermaLink="false">http://frinring.wordpress.com/2007/08/23/getting-drops-to-khalkhi-plasmoids-going/</guid>
		<description><![CDATA[In my last blog entry I said:
Adding the Khalkhi services and all the other goodies as known from the Khalkhi applet for Kicker of KDE 3 is left for the next time reserved for hacking, even if it is simple code (the purpose of the Khalkhi framework).
And jospoortvliet in the comments asked:
Now ensure that if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=76&subd=frinring&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In my last blog entry I said:</p>
<blockquote><p>Adding the Khalkhi services and all the other goodies as known from the Khalkhi applet for Kicker of KDE 3 is left for the next time reserved for hacking, even if it is simple code (the purpose of the Khalkhi framework).</p></blockquote>
<p>And jospoortvliet in the comments asked:</p>
<blockquote><p>Now ensure that if I drop a file on a face, it gets transferred to that person, ok?</p></blockquote>
<p>Does this look like simple code for ensuring jos&#8217; wish? It took me more time to fix the Plasma libs to not burn away some of the drop events meant for plasmoids, actually <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>((Is there no better way to embed code examples then &lt;blockquote&gt;&lt;code&gt;?))</p>
<p><strong>Update:</strong>Tried &lt;pre&gt; and things looks better.</p>
<blockquote><pre>
void KhalkhiPlasmoid::dragEnterEvent( QGraphicsSceneDragDropEvent *event )
{
    if( !mMenuFiller )
        mMenuFiller = new Khalkhi::EntityDataActionServicesMenuFiller();

    mMenuFiller-&gt;setEntity( mEntity );
    mMenuFiller-&gt;setData( event-&gt;mimeData() );

    event-&gt;setAccepted( mMenuFiller-&gt;serviceAvailableForData() );
}

void KhalkhiPlasmoid::dragMoveEvent( QGraphicsSceneDragDropEvent *event )
{
    mMenuFiller-&gt;setData( event-&gt;mimeData() );

    event-&gt;setAccepted( mMenuFiller-&gt;serviceAvailableForData() );
}

void KhalkhiPlasmoid::dragLeaveEvent( QGraphicsSceneDragDropEvent *event )
{
    delete mMenuFiller;
    mMenuFiller = 0;
}

void KhalkhiPlasmoid::dropEvent( QGraphicsSceneDragDropEvent *event )
{
    mMenuFiller-&gt;setData( event-&gt;mimeData() );

    if( mMenuFiller-&gt;serviceAvailableForData() )
    {
        event-&gt;accept();

        QMenu menu;
        mMenuFiller-&gt;fillMenu( &amp;menu, true );
        menu.exec( event-&gt;screenPos() );
    }

    delete mMenuFiller;
    mMenuFiller = 0;
}
</pre>
</blockquote>
<p>What I don&#8217;t like is that <code>event-&gt;mimeData()</code> is expected to not be valid outside the event handlers. And QMimeData objects seem to be uncopyable. I don&#8217;t like it because Khalkhi services are active and might have a different state depending on the client and it&#8217;s properties they are offering their service to. So if a system a service uses changes its state the service checks all clients whether the individual availability is lost, which might also depend on the drop data, which might just be a dangling pointer, doh.<br />
Example: the Open-homepage-in-browser service works only for intranet homepage addresses if the connection to the internet got lost. So all clients requesting services for homepage urls are queried if the url is an internet one and in case get informed that the service is unavailable now, so our menufiller, which is a client, can grey out the option &#8220;Open homepage in browser&#8221; (which it does). No data here involved, but you see the pattern.</p>
<p>For now this is a problem left to solve <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>So with the two data action service plugins currently installed I get this menu if I drop a bundle of files onto Konqui&#8217;s plasmoid:</p>
<p><img src='http://frinring.files.wordpress.com/2007/08/plasmoiddrop.png' alt='Simple Drop menu of Khalkhi plasmoid' /><br />
It&#8217;s the same menu you know from the Khalkhi services for KDE 3 (as seen in the <a href="http://www.kde-apps.org/content/show.php?content=54451">Kicker applet</a> or the <a href="http://www.kde-apps.org/content/show.php?content=54452">cards server</a>). After all the algorithms are the same, too <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>There is some work by the Plasma people to add action overlays to the corners of icons. I would like to use them, but then there are only four corners and that does not scale with the unlimited amounts of property types and service plugins&#8230; So far I will stay with the plain old list menu here and rather focus now on the status services. After all Khalkhi for KDE4 still has some way to go before it is time to fiddle with some usage details unrelated to the framework.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/frinring.wordpress.com/76/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/frinring.wordpress.com/76/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frinring.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frinring.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frinring.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frinring.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frinring.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frinring.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frinring.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frinring.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frinring.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frinring.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=76&subd=frinring&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://frinring.wordpress.com/2007/08/23/getting-drops-to-khalkhi-plasmoids-going/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a2c0597f51fc359467492b816edb6d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">frinring</media:title>
		</media:content>

		<media:content url="http://frinring.files.wordpress.com/2007/08/plasmoiddrop.png" medium="image">
			<media:title type="html">Simple Drop menu of Khalkhi plasmoid</media:title>
		</media:content>
	</item>
		<item>
		<title>Look mummy, my first plasmoid!</title>
		<link>http://frinring.wordpress.com/2007/08/04/look-mummy-my-first-plasmoid/</link>
		<comments>http://frinring.wordpress.com/2007/08/04/look-mummy-my-first-plasmoid/#comments</comments>
		<pubDate>Sat, 04 Aug 2007 00:37:49 +0000</pubDate>
		<dc:creator>frinring</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Khalkhi]]></category>

		<guid isPermaLink="false">http://frinring.wordpress.com/2007/08/04/look-mummy-my-first-plasmoid/</guid>
		<description><![CDATA[Oh those little mistypes. Searched three hours for a bug due to adding one &#8220;=&#8221; too many when calling the subclass function in a operator=() function. There cannot be enough unit tests, obviously. But those need to be tested, too. Sigh. Or I need better languages.
Khalkhi for KDE 4 is still pretty a lot like [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=75&subd=frinring&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Oh those little mistypes. Searched three hours for a bug due to adding one &#8220;=&#8221; too many when calling the subclass function in a <code>operator=()</code> function. There cannot be enough unit tests, obviously. But those need to be tested, too. Sigh. Or I need better languages.</p>
<p>Khalkhi for KDE 4 is still pretty a lot like vapourware, but some code is already working again, after I redesigned things a little again as I missed 4.0 anyway.</p>
<p>To motivate myself I hacked things through the vertical layers and did one more use case, a little plasmoid showing individual Khalkhi entities. Now, those three hours later hunting this *** one letter bug, it finally works by at least showing the picture of the entity. Adding the Khalkhi services and all the other goodies as known from the <a href="http://www.kde-apps.org/content/show.php?content=54451">Khalkhi applet for Kicker of KDE 3</a> is left for the next time reserved for hacking, even if it is simple code (the purpose of the Khalkhi framework). I definitely need to go to bed now, as some 4 hours later I am scheduled to get up again, silly me&#8230; At least it is only travelling waiting for me, but still.</p>
<p><img src='http://frinring.files.wordpress.com/2007/08/khalkhi-plasmoid.png' alt='First steps with Khalkhi plasmoids' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/frinring.wordpress.com/75/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/frinring.wordpress.com/75/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frinring.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frinring.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frinring.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frinring.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frinring.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frinring.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frinring.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frinring.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frinring.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frinring.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=75&subd=frinring&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://frinring.wordpress.com/2007/08/04/look-mummy-my-first-plasmoid/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a2c0597f51fc359467492b816edb6d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">frinring</media:title>
		</media:content>

		<media:content url="http://frinring.files.wordpress.com/2007/08/khalkhi-plasmoid.png" medium="image">
			<media:title type="html">First steps with Khalkhi plasmoids</media:title>
		</media:content>
	</item>
		<item>
		<title>Last release of Khalkhi?</title>
		<link>http://frinring.wordpress.com/2007/05/28/last-release-of-khalkhi/</link>
		<comments>http://frinring.wordpress.com/2007/05/28/last-release-of-khalkhi/#comments</comments>
		<pubDate>Mon, 28 May 2007 12:14:08 +0000</pubDate>
		<dc:creator>frinring</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Khalkhi]]></category>
		<category><![CDATA[Okteta]]></category>

		<guid isPermaLink="false">http://frinring.wordpress.com/2007/05/28/last-release-of-khalki/</guid>
		<description><![CDATA[It all looked so promising and prospering, but then real life came in between and has stalled my plans with Khalkhi (say [χalχi]), both for KDE 3.5.7 and KDE 4. So I had to cancel all coding and the talk at aKademy and feel sad for this. Oh life, you suck. A little.
The last two [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=70&subd=frinring&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It all looked so promising and prospering, but then real life came in between and has stalled my plans with Khalkhi (say [χalχi]), both for KDE 3.5.7 and KDE 4. So I had to cancel all coding and the talk at aKademy and feel sad for this. Oh life, you suck. A little.</p>
<p>The last two weeks I managed to grep some time and tried to keep up with KDE development again, doing some little things. Like polishing the header includes of the KHexEdit lib and kpart, after that renaming the part to Okteta. Played a little with the design of the Okteta program still developed out of KDE&#8217;s repository. And today declared the release candidates from march of Khalkhi for KDE 3 to be final, as there were no bug reports in the meantime. Next will be to improve the API documentation of the <a href="http://api.kde.org/4.0-api/kdelibs-apidocs/interfaces/html/namespaceKHE.html">KHexEdit interfaces</a> in kdelibs which is pretty much <a href="http://api.kde.org/4.0-api/kdelibs-apidocs/interfaces/html/index.html">hidden</a> in the docs right now.</p>
<p>Really little things, but better than none <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  No idea, how often I will be able to do this, though.</p>
<p>Go and get the tarballs of Khalkhi at <a href="http://www.kde-apps.org/">KDE-Apps.org</a>:</p>
<ul>
<li><a href="http://www.kde-apps.org/content/show.php?content=54450">Khalkhi framework 0.2.2</a></li>
<li><a href="http://www.kde-apps.org/content/show.php?content=54451">Khalkhi applet for Kicker 0.5.3</a></li>
<li><a href="http://www.kde-apps.org/content/show.php?content=54452">Khalkhi cards server 0.2.2</a></li>
</ul>
<p>I am still interested in how the <a href="http://frinring.wordpress.com/2007/03/09/your-aunt-is-now/">event notification system</a> of the applet works for you. Thanks for any report! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/frinring.wordpress.com/70/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/frinring.wordpress.com/70/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frinring.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frinring.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frinring.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frinring.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frinring.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frinring.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frinring.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frinring.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frinring.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frinring.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=70&subd=frinring&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://frinring.wordpress.com/2007/05/28/last-release-of-khalkhi/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a2c0597f51fc359467492b816edb6d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">frinring</media:title>
		</media:content>
	</item>
		<item>
		<title>First release candidate of Khalkhi framework 0.2.2</title>
		<link>http://frinring.wordpress.com/2007/03/12/first-release-candidate-of-khalkhi-framework-022/</link>
		<comments>http://frinring.wordpress.com/2007/03/12/first-release-candidate-of-khalkhi-framework-022/#comments</comments>
		<pubDate>Mon, 12 Mar 2007 12:28:08 +0000</pubDate>
		<dc:creator>frinring</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Khalkhi]]></category>

		<guid isPermaLink="false">http://frinring.wordpress.com/2007/03/12/first-release-candidate-of-khalkhi-framework-022/</guid>
		<description><![CDATA[Now that the code of the Khalkhi (say [χalχi]) framework for KDE 3 has settled again and the Kicker applet and cards server are ported to it, it is time for another release. Missing the time to organize a proper one currently, for now the code is just declared to be a release candidate. But [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=69&subd=frinring&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Now that the code of the Khalkhi (say [χalχi]) framework for KDE 3 has settled again and the Kicker applet and cards server are ported to it, it is time for another release. Missing the time to organize a proper one currently, for now the code is just declared to be a release candidate. But you are still welcome to go and test it now!</p>
<p>I just uploaded some tarballs for your convenience to <a href="http://www.kde-apps.org/">KDE-Apps.org</a>:</p>
<ul>
<li><a href="http://www.kde-apps.org/content/show.php?content=54450">Khalkhi framework 0.2.2 rc1</a></li>
<li><a href="http://www.kde-apps.org/content/show.php?content=54451">Khalkhi applet for Kicker 0.5.3 rc1</a></li>
<li><a href="http://www.kde-apps.org/content/show.php?content=54452">Khalkhi cards server 0.2.2 rc1</a></li>
</ul>
<p>I am especially interested in how the <a href="http://frinring.wordpress.com/2007/03/09/your-aunt-is-now/">event notification system</a> works for you. Thanks for any report! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/frinring.wordpress.com/69/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/frinring.wordpress.com/69/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frinring.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frinring.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frinring.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frinring.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frinring.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frinring.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frinring.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frinring.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frinring.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frinring.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=69&subd=frinring&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://frinring.wordpress.com/2007/03/12/first-release-candidate-of-khalkhi-framework-022/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a2c0597f51fc359467492b816edb6d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">frinring</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Your aunt is now&#8230;&#8221;</title>
		<link>http://frinring.wordpress.com/2007/03/09/your-aunt-is-now/</link>
		<comments>http://frinring.wordpress.com/2007/03/09/your-aunt-is-now/#comments</comments>
		<pubDate>Fri, 09 Mar 2007 20:37:12 +0000</pubDate>
		<dc:creator>frinring</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Khalkhi]]></category>

		<guid isPermaLink="false">http://frinring.wordpress.com/2007/03/09/your-aunt-is-now/</guid>
		<description><![CDATA[Let&#8217;s just add this little feature, and then&#8230; oh, not so easy, wait a moment. Hm, some more moments&#8230;
Got hit by that this week. But I really wanted this feature to be done, because I needed it. And so I just had to give in.
But now it&#8217;s almost done, and now one can control how [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=68&subd=frinring&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Let&#8217;s just add this little feature, and then&#8230; oh, not so easy, wait a moment. Hm, some more moments&#8230;<br />
Got hit by that this week. But I really wanted this feature to be done, because I needed it. And so I just had to give in.</p>
<p>But now it&#8217;s almost done, and now one can control how status changes are reported by the Khalkhi applet. I could not reuse the KNotify framework, as it&#8217;s assumption are not met. With Khalkhi each set of events is not defined by a whole program, but by the corresponding status service plugin, e.g. the one for IM presence, or the one for number of unread emails, the one for last.fm, or whatever. And the possible actions are not the same, at least there is no taskbar entry to flash, rather icons in the Khalkhi applet or in KAddressbook. Tricky is also that there isn&#8217;t a centralized Khalkhi demon for now, so all the programs using Khalkhi would all e.g. play the same notification sound. Because of this the events are currently just handled by the applet and nothing else.</p>
<p>The GUI for configuring all that is imitating that of the KNotify control, so it reuses at least the workflow pattern:<br />
<a href='http://frinring.files.wordpress.com/2007/03/configureevents.png' title='Control how events are presented'><img src='/files/2007/03/configureevents.thumbnail.png' alt='Control how events are presented' /></a></p>
<p>One can even control the settings per addressbook entry, so for aunt Lilly a new email triggers a sound, while it doesn&#8217;t for all others. But I am not sure how to do a good configuration GUI for this, so for now this is left as hidden feature, until I find some time. There is so much else to do&#8230; Like making the panel button really flash, finally.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/frinring.wordpress.com/68/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/frinring.wordpress.com/68/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frinring.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frinring.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frinring.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frinring.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frinring.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frinring.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frinring.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frinring.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frinring.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frinring.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=68&subd=frinring&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://frinring.wordpress.com/2007/03/09/your-aunt-is-now/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a2c0597f51fc359467492b816edb6d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">frinring</media:title>
		</media:content>

		<media:content url="/files/2007/03/configureevents.thumbnail.png" medium="image">
			<media:title type="html">Control how events are presented</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuration of a Khalkhi service&#8217;s parameters: check!</title>
		<link>http://frinring.wordpress.com/2007/02/23/configuration-of-a-khalkhi-services-parameters-check/</link>
		<comments>http://frinring.wordpress.com/2007/02/23/configuration-of-a-khalkhi-services-parameters-check/#comments</comments>
		<pubDate>Fri, 23 Feb 2007 17:01:07 +0000</pubDate>
		<dc:creator>frinring</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Khalkhi]]></category>

		<guid isPermaLink="false">http://frinring.wordpress.com/2007/02/23/configuration-of-a-khalkhi-services-parameters-check/</guid>
		<description><![CDATA[Grepped some time to finally add a missing feature to the Khalkhi framework (say [χalχi]): the option to make the parameters of a Khalkhi service configurable. The configuration of three of the four hooks hardcoded in KAddressbook have already got a Khalkhi substitution, only that of the maps is yet to be done, before I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=63&subd=frinring&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Grepped some time to finally add a missing feature to the Khalkhi framework (say [χalχi]): the option to make the parameters of a Khalkhi service configurable. The configuration of three of the four hooks hardcoded in KAddressbook have already got a Khalkhi substitution, only that of the maps is yet to be done, before I can nuke them all from KAddressbook. I just didn&#8217;t find a quick&#8217;n'dirty solution to merge it with the &#8220;Open in Google maps&#8221; service for now. Obligatory screenshot:<br />
<a href='http://frinring.files.wordpress.com/2007/02/configureservice.png' title='Configure a service if needed.'><img src='/files/2007/02/configureservice.thumbnail.png' alt='Configure a service if needed.' /></a></p>
<p>I only hope that those (who?) working on the config subsystem for KDE4 will add change signals to it. For Khalkhi I just added a DCOP signal from the control module to the Khalkhi manager class which then looks up the service and triggers it to reload it&#8217;s config. But I really would expect the config system to do this for me <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/frinring.wordpress.com/63/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/frinring.wordpress.com/63/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frinring.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frinring.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frinring.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frinring.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frinring.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frinring.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frinring.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frinring.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frinring.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frinring.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=63&subd=frinring&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://frinring.wordpress.com/2007/02/23/configuration-of-a-khalkhi-services-parameters-check/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a2c0597f51fc359467492b816edb6d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">frinring</media:title>
		</media:content>

		<media:content url="/files/2007/02/configureservice.thumbnail.png" medium="image">
			<media:title type="html">Configure a service if needed.</media:title>
		</media:content>
	</item>
		<item>
		<title>Khalkhification of KAddressbook</title>
		<link>http://frinring.wordpress.com/2007/02/17/khalkhification-of-kaddressbook/</link>
		<comments>http://frinring.wordpress.com/2007/02/17/khalkhification-of-kaddressbook/#comments</comments>
		<pubDate>Sat, 17 Feb 2007 12:58:45 +0000</pubDate>
		<dc:creator>frinring</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Khalkhi]]></category>

		<guid isPermaLink="false">http://frinring.wordpress.com/2007/02/17/khalkhification-of-kaddressbook/</guid>
		<description><![CDATA[As reported here recently, Khalkhi (say [χalχi]), a framework around persons and services on them, moved in the experimental kdepim branch for KDE 3.5. The obvious first target to make use of it is KAddressbook, and thus it has already been patched in the branch a little.
While the priority is on substituting things without loosing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=60&subd=frinring&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As reported <a href="/2007/02/06/say-hi-to-ხალხი/">here</a> recently, <a href="http://websvn.kde.org/branches/work/kdepim-3.5.5+/libkhalkhi">Khalkhi</a> (say [χalχi]), a framework around persons and services on them, moved in the experimental kdepim branch for KDE 3.5. The obvious first target to make use of it is KAddressbook, and thus it has already been patched in the <a href="http://websvn.kde.org/branches/work/kdepim-3.5.5+/kaddressbook/">branch</a> a little.</p>
<p>While the priority is on substituting things without loosing old features, some new ones, besides those gained by the plugins for the framework, are getting in, too. Like seeing the states of a person by emblems in the icon view (screenshot using some random KDE characters <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ):<br />
<a href='http://frinring.files.wordpress.com/2007/02/iconview-with-status-emblems.png' title='Now status emblems in KAddressbook icon view'><img src='http://frinring.files.wordpress.com/2007/02/iconview-with-status-emblems.thumbnail.png' alt='Now status emblems in KAddressbook icon view' /></a></p>
<p>Thanks to Khalkhi delivering such an icon for this only a few lines needed to be added. The Kicker applet (old stable version <a href="http://www.kde-apps.org/content/show.php?content=34479">here</a>) uses the same, cmp. e.g.<br />
<a href='http://frinring.files.wordpress.com/2006/10/birthdaysymbol.png' title='Cake for Konqui?'><img src='http://frinring.files.wordpress.com/2006/10/birthdaysymbol.thumbnail.png' alt='Cake for Konqui?' /></a></p>
<p>Another candidate for making use of this is the face display in KMail&#8217;s email view (the one in the header to the right). But before I am going to contact the KMail authors about this I need to make sure that Khalkhi will be able to get into the 3.5.7 release at all. These are the things most needed:</p>
<ul>
<li><b>get a KDE4 version into trunk</b> &#8211; there is some code in the works, it is even more enhanced than the KDE3 version, but right now stuck in a design problem that needs some thinking</li>
<li><b>add configuration of service plugins</b> &#8211; some services need to be configurable, see e.g. the configuration of phone call, fax sending and map lookup in KAddressbook. This is the last hurdle to make KAddressbook free of hardcoded services.</li>
</ul>
<p>Lots to do <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/frinring.wordpress.com/60/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/frinring.wordpress.com/60/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frinring.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frinring.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frinring.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frinring.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frinring.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frinring.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frinring.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frinring.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frinring.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frinring.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=60&subd=frinring&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://frinring.wordpress.com/2007/02/17/khalkhification-of-kaddressbook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a2c0597f51fc359467492b816edb6d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">frinring</media:title>
		</media:content>

		<media:content url="http://frinring.files.wordpress.com/2007/02/iconview-with-status-emblems.thumbnail.png" medium="image">
			<media:title type="html">Now status emblems in KAddressbook icon view</media:title>
		</media:content>

		<media:content url="http://frinring.files.wordpress.com/2006/10/birthdaysymbol.thumbnail.png" medium="image">
			<media:title type="html">Cake for Konqui?</media:title>
		</media:content>
	</item>
		<item>
		<title>Say hi to ხალხი!</title>
		<link>http://frinring.wordpress.com/2007/02/06/say-hi-to-%e1%83%ae%e1%83%90%e1%83%9a%e1%83%ae%e1%83%98/</link>
		<comments>http://frinring.wordpress.com/2007/02/06/say-hi-to-%e1%83%ae%e1%83%90%e1%83%9a%e1%83%ae%e1%83%98/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 15:29:59 +0000</pubDate>
		<dc:creator>frinring</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[Khalkhi]]></category>

		<guid isPermaLink="false">http://frinring.wordpress.com/2007/02/06/say-hi-to-%e1%83%ae%e1%83%90%e1%83%9a%e1%83%ae%e1%83%98/</guid>
		<description><![CDATA[Finding a name for a project seems difficult. Especially one for a worldwide audience. With so many of the terms already used/registered as trademarks. And should the name be build from terms semantically connected to the topic of the project or made up out of the blue?
The nice people on the mailinglist kde-promo tried to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=56&subd=frinring&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Finding a name for a project seems difficult. Especially one for a worldwide audience. With so many of the terms already used/registered as trademarks. And should the name be build from terms semantically connected to the topic of the project or made up out of the blue?</p>
<p>The nice people on the mailinglist kde-promo tried to help, but we could not find one that was really kicking IMHO. Well, after all there are companies specialised in this (see for the creation of the name Kodak or all the car names).</p>
<p>So I followed a recent tradition in the KDE PIM department and grepped a term from some more or less random language/culture located on our beloved planet earth. Even one with a none-latin script, for the fun of it. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>ხალხი (say [χalχi]) it is. The Georgian term for people, as in group of persons.</p>
<p>As the english language is the KDE lingua franca, the referencing name may be one of the transciptions, that is Khalkhi.</p>
<p>Having chosen the name, the <a href="http://websvn.kde.org/branches/work/kdepim-3.5.5+/">experimental kdepim branch for KDE 3.5</a> now got the commit of the former Contacts framework from trunk/playground/pim as the new <a href="http://websvn.kde.org/branches/work/kdepim-3.5.5+/libkhalkhi/">libkhalkhi</a>. </p>
<p>KAddressbook already got a first patch to make use of Khalkhi, so the time of hard coded property types and services on them might come to an end some time.</p>
<p>Old:<br />
<a href='http://frinring.files.wordpress.com/2007/02/old.png' title='Without Khalkhi'><img src='http://frinring.files.wordpress.com/2007/02/old.thumbnail.png' alt='Without Khalkhi' /></a></p>
<p>New:<br />
<a href='http://frinring.files.wordpress.com/2007/02/new.png' title='With Khalkhi'><img src='http://frinring.files.wordpress.com/2007/02/new.thumbnail.png' alt='With Khalkhi' /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/frinring.wordpress.com/56/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/frinring.wordpress.com/56/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/frinring.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/frinring.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/frinring.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/frinring.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/frinring.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/frinring.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/frinring.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/frinring.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/frinring.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/frinring.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=frinring.wordpress.com&blog=251139&post=56&subd=frinring&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://frinring.wordpress.com/2007/02/06/say-hi-to-%e1%83%ae%e1%83%90%e1%83%9a%e1%83%ae%e1%83%98/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a2c0597f51fc359467492b816edb6d?s=96&#38;d=wavatar&#38;r=G" medium="image">
			<media:title type="html">frinring</media:title>
		</media:content>

		<media:content url="http://frinring.files.wordpress.com/2007/02/old.thumbnail.png" medium="image">
			<media:title type="html">Without Khalkhi</media:title>
		</media:content>

		<media:content url="http://frinring.files.wordpress.com/2007/02/new.thumbnail.png" medium="image">
			<media:title type="html">With Khalkhi</media:title>
		</media:content>
	</item>
	</channel>
</rss>