<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Promoting Qt Kinetic and Animated Layouts</title>
	<atom:link href="http://zchydem.enume.net/2009/12/01/promoting-qt-kinetic-and-animated-layouts/feed/" rel="self" type="application/rss+xml" />
	<link>http://zchydem.enume.net/2009/12/01/promoting-qt-kinetic-and-animated-layouts/</link>
	<description>#Qt, #Linux, #Programming, #MeeGo...</description>
	<lastBuildDate>Sat, 07 Jan 2012 18:23:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: zchydem</title>
		<link>http://zchydem.enume.net/2009/12/01/promoting-qt-kinetic-and-animated-layouts/comment-page-1/#comment-53</link>
		<dc:creator>zchydem</dc:creator>
		<pubDate>Wed, 23 Dec 2009 18:59:15 +0000</pubDate>
		<guid isPermaLink="false">http://zchydem.enume.net/?p=312#comment-53</guid>
		<description>ciloman@ thanks for your comments. I agree, that ui and code (logic) should be separated. Personally I think that for example in QML I&#039;d rather define the UI in QML, but the code is done in application code in C++. This is doable even right now. I can set QML component /object&#039;s properties from C++ code, which is really nice feature. At the moment, I guess, Trolls would be happy to receive any kind of feedback of QML because it&#039;s still under development. 

What comes to your proposal of developing a new language &quot;QCode&quot;, it sounds an interesting idea. Maybe you should make a proposal directly to the Trolls or to the #qt-kinetic channel in freenode, but sadly I&#039;m not one of them. I&#039;m just a guy, who&#039;s interested in Qt. Maybe some day if they decide to open an office to Finland I could try to apply there, but probably I&#039;d need to have more competence even to get to the interview. 

Oh yes.. Merry Christmas to you:)</description>
		<content:encoded><![CDATA[<p>ciloman@ thanks for your comments. I agree, that ui and code (logic) should be separated. Personally I think that for example in QML I&#8217;d rather define the UI in QML, but the code is done in application code in C++. This is doable even right now. I can set QML component /object&#8217;s properties from C++ code, which is really nice feature. At the moment, I guess, Trolls would be happy to receive any kind of feedback of QML because it&#8217;s still under development. </p>
<p>What comes to your proposal of developing a new language &#8220;QCode&#8221;, it sounds an interesting idea. Maybe you should make a proposal directly to the Trolls or to the #qt-kinetic channel in freenode, but sadly I&#8217;m not one of them. I&#8217;m just a guy, who&#8217;s interested in Qt. Maybe some day if they decide to open an office to Finland I could try to apply there, but probably I&#8217;d need to have more competence even to get to the interview. </p>
<p>Oh yes.. Merry Christmas to you:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ciloman</title>
		<link>http://zchydem.enume.net/2009/12/01/promoting-qt-kinetic-and-animated-layouts/comment-page-1/#comment-50</link>
		<dc:creator>ciloman</dc:creator>
		<pubDate>Tue, 22 Dec 2009 22:39:04 +0000</pubDate>
		<guid isPermaLink="false">http://zchydem.enume.net/?p=312#comment-50</guid>
		<description>I would also like to add, that I hope it also is in your future to target the web as well as the desktop with QML.  

Adding to the previous brain storm.

Include  QML.SomeFramework;
Alias SF = QTM.SomeFrameWork;
Alias SC = QTM.Framwork.SomeClass;

NameSpace  MyFramework
{

Class MyClass Inherits SomeClass Use ISomeinterface
 {}

}</description>
		<content:encoded><![CDATA[<p>I would also like to add, that I hope it also is in your future to target the web as well as the desktop with QML.  </p>
<p>Adding to the previous brain storm.</p>
<p>Include  QML.SomeFramework;<br />
Alias SF = QTM.SomeFrameWork;<br />
Alias SC = QTM.Framwork.SomeClass;</p>
<p>NameSpace  MyFramework<br />
{</p>
<p>Class MyClass Inherits SomeClass Use ISomeinterface<br />
 {}</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ciloman</title>
		<link>http://zchydem.enume.net/2009/12/01/promoting-qt-kinetic-and-animated-layouts/comment-page-1/#comment-49</link>
		<dc:creator>ciloman</dc:creator>
		<pubDate>Tue, 22 Dec 2009 22:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://zchydem.enume.net/?p=312#comment-49</guid>
		<description>This is a great addition to QT Development tools. But I must say, it would be best if separation of code and ui is employed. Rather than  UI code and Javascript embedded. And to be honest, I hope QT moves forward and develops a true Object oriented language (not Java though) of its own. Along the lines of C#/Java/VB.Net, but more intuitive.

// use frameworks
Include  QML.SomeClass;

//declare class

Class  MyClass  Inherits SomeClass Use  ISomeinterface
{

// declare variables and constants etc..

Int  myAttributes;



/* Constructor  and  Destructors
   Public MyClass() 
    {
       
      // some code here
       
    }

   Private  ~MyClass()
    {
      //some code here
     }     

// Properties

Public Int MyAttribue 
{
   get{
        return this.myAttribute; 
      }
   set{
        this.myAttribute = value;
      }

} 
 
// Methods

Public MyMethod ( Int args, ...) Returns  Int
{
  // Some code here

}


}
  

This reads like English. It is intuitive, and simple. It Use the best approach of all languages. You don&#039;t need to be a programmer to understand this. I hope I sparked a future thoughts for you guys. Hopefully a native compiled language. I call it  QCode :) LOL.


I understand the value of c++ for maintaining legacy call and fan boys happy. But if you want to make a mark for the future. You need to approach the future, by looking into the future. Lessons learned in the past, move forward and improve on what was learned. You can cater to both C++ and the Future.


You have the most Multi-platform Gui framework. With the most Multi-platform language. But the language is a legacy.
It is not true Object Oriented, and complex to even look at. It is non-intuitive. It is a Hack of the past. 

Seriously though, I hope you like my brainstorm and build on it.</description>
		<content:encoded><![CDATA[<p>This is a great addition to QT Development tools. But I must say, it would be best if separation of code and ui is employed. Rather than  UI code and Javascript embedded. And to be honest, I hope QT moves forward and develops a true Object oriented language (not Java though) of its own. Along the lines of C#/Java/VB.Net, but more intuitive.</p>
<p>// use frameworks<br />
Include  QML.SomeClass;</p>
<p>//declare class</p>
<p>Class  MyClass  Inherits SomeClass Use  ISomeinterface<br />
{</p>
<p>// declare variables and constants etc..</p>
<p>Int  myAttributes;</p>
<p>/* Constructor  and  Destructors<br />
   Public MyClass()<br />
    {</p>
<p>      // some code here</p>
<p>    }</p>
<p>   Private  ~MyClass()<br />
    {<br />
      //some code here<br />
     }     </p>
<p>// Properties</p>
<p>Public Int MyAttribue<br />
{<br />
   get{<br />
        return this.myAttribute;<br />
      }<br />
   set{<br />
        this.myAttribute = value;<br />
      }</p>
<p>} </p>
<p>// Methods</p>
<p>Public MyMethod ( Int args, &#8230;) Returns  Int<br />
{<br />
  // Some code here</p>
<p>}</p>
<p>}</p>
<p>This reads like English. It is intuitive, and simple. It Use the best approach of all languages. You don&#8217;t need to be a programmer to understand this. I hope I sparked a future thoughts for you guys. Hopefully a native compiled language. I call it  QCode <img src='http://zchydem.enume.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  LOL.</p>
<p>I understand the value of c++ for maintaining legacy call and fan boys happy. But if you want to make a mark for the future. You need to approach the future, by looking into the future. Lessons learned in the past, move forward and improve on what was learned. You can cater to both C++ and the Future.</p>
<p>You have the most Multi-platform Gui framework. With the most Multi-platform language. But the language is a legacy.<br />
It is not true Object Oriented, and complex to even look at. It is non-intuitive. It is a Hack of the past. </p>
<p>Seriously though, I hope you like my brainstorm and build on it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

