<?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/"
	>

<channel>
	<title>VCreate Logic Blog</title>
	<atom:link href="http://www.vcreatelogic.com/p/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vcreatelogic.com/p</link>
	<description>Visual Meaning to Concepts</description>
	<pubDate>Thu, 10 Jun 2010 10:00:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using vtkRenderWindow with QGraphicsView</title>
		<link>http://www.vcreatelogic.com/p/2010/06/using-vtkrenderwindow-with-qgraphicsview/</link>
		<comments>http://www.vcreatelogic.com/p/2010/06/using-vtkrenderwindow-with-qgraphicsview/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 09:58:20 +0000</pubDate>
		<dc:creator>abhishek</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vcreatelogic.com/p/?p=57</guid>
		<description><![CDATA[We are about to begin on a project that requires us to have floating and transparent widgets over VTK render-window output. About a year  back, we had wanted to provide something similar to VTK Designer 2.  We wanted users to have the ability to load UI (created using Qt Designer) directly on the [...]]]></description>
			<content:encoded><![CDATA[<p>We are about to begin on a project that requires us to have floating and transparent widgets over VTK render-window output. About a year  back, we had wanted to provide something similar to VTK Designer 2.  We wanted users to have the ability to load UI (created using Qt Designer) directly on the VTK output window. At that time (<a href="http://www.vtk.org/pipermail/vtkusers/2008-October/097685.html">you can follow the thread here</a>) we were unable to come up with something satisfactory.</p>
<p>With the recent changes in Qt, it is now possible for us to have vtkRenderWindow within QGraphicsView. Infact we can now have vtkRenderWindow paint on to a QGLWidget viewport of QGraphicsView. Thats exactly what the  vtkQtGraphicsViewRenderWindow class allows us to do.</p>
<p>The class is defined as follows</p>
<pre>#ifdef Q_WS_WIN
    #include "vtkWin32OpenGLRenderWindow.h"
    typedef vtkWin32OpenGLRenderWindow vtkRenderWindowClass;
#endif

#ifdef Q_WS_X11
    #include "vtkXOpenGLRenderWindow.h"
    typedef vtkXOpenGLRenderWindow vtkRenderWindowClass;
#endif

class vtkQtGraphicsViewRenderWindow : public QGraphicsView,
                                      public vtkRenderWindowClass
{
    Q_OBJECT

public:
    vtkQtGraphicsViewRenderWindow(QWidget* parent = 0);
    ~vtkQtGraphicsViewRenderWindow();
    ....
};</pre>
<p>Since vtkQtGraphicsViewRenderWindow is a subclass of both QGraphicsView and vtkRenderWindow,<br />
- we can add any QGraphicsItem to its scene.<br />
- we can use it as a drop-in replacement for vtkRenderWindow.</p>
<p>For example, take a look at the code below.</p>
<pre>vtkRenderer* CreateVTKPipeline()
{
    vtkRenderer* renderer = vtkRenderer::New();

    // Omitted code that create a fractal terrain scene.

    return renderer;
}

int main(int argc, char** argv)
{
    QApplication a(argc, argv);

    vtkRenderer* renderer = CreateVTKPipeline();

    vtkQtGraphicsViewRenderWindow gView;
    gView.AddRenderer( renderer );
    gView.resize(800, 600);
    gView.show();

    QCalendarWidget* calendar = new QCalendarWidget;
    calendar-&gt;setWindowOpacity(0.7);

    QGraphicsProxyWidget* sceneWidget = new QGraphicsProxyWidget(0, Qt::Dialog);
    sceneWidget-&gt;setWidget(calendar);
    sceneWidget-&gt;setPos( -sceneWidget-&gt;boundingRect().topLeft() );
    sceneWidget-&gt;setFlag(QGraphicsItem::ItemIsMovable);
    sceneWidget-&gt;setCacheMode(QGraphicsItem::DeviceCoordinateCache);
    sceneWidget-&gt;setWindowTitle("Calendar Widget");

    QGraphicsScene* scene = gView.scene();
    scene-&gt;addItem(sceneWidget);

    return a.exec();
}</pre>
<p>Output of the above program becomes:</p>
<div class="wp-caption alignnone" style="width: 422px"><img class="  " style="margin-top: 5px; margin-bottom: 5px;" src="http://www.vcreatelogic.com/forblog/abhishekpatil/vtkQtGraphicsViewRenderWindow.png" alt="vtkQtGraphicsViewRenderWindow" width="412" height="324" /><p class="wp-caption-text">vtkQtGraphicsViewRenderWindow</p></div>
<p>Whats cooler about the above program is that we can move and resize the translucent <code>QCalendarWidget</code> - and have the background VTK scene updated!</p>
<p>You can checkout a copy of the class and test program from here:<br />
<a href="https://svn2.hosted-projects.com/vcreatelogic/VCLTools/vtkQtGraphicsViewRenderWindow">https://svn2.hosted-projects.com/vcreatelogic/VCLTools/vtkQtGraphicsViewRenderWindow</a><br />
Username: anonymous<br />
Password: anonymous</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vcreatelogic.com/p/2010/06/using-vtkrenderwindow-with-qgraphicsview/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Moving to CMake</title>
		<link>http://www.vcreatelogic.com/p/2010/06/moving-to-cmake/</link>
		<comments>http://www.vcreatelogic.com/p/2010/06/moving-to-cmake/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 10:59:35 +0000</pubDate>
		<dc:creator>prashanthudupa</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vcreatelogic.com/p/?p=55</guid>
		<description><![CDATA[Over the past few weeks we have been playing around with CMake and we figured that it would be a good idea to have GCF build-able using CMake. There are a few open-source projects that make use of GCF with CMake anyway; we figured it would be a good idea to have a CMake build-system [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past few weeks we have been playing around with CMake and we figured that it would be a good idea to have GCF build-able using CMake. There are a few open-source projects that make use of GCF with CMake anyway; we figured it would be a good idea to have a CMake build-system GCF supported officially.</p>
<p>We have begun the process of making GCF build-able with CMake. Currently we are able to build the GCF library and all its built-in components. We are slowly moving examples and tools also into it. The idea is to have GCF compilable using both QMake and CMake for as long as possible. In the coming months we should also have the GCF-QtCreator plugin and CreateAppTemplateWizard supporting CMake based GCF projects.</p>
<p>Once all this is done, we will then be moving VTK Designer 2 away from QMake build system and totally into a CMake based one. This move coupled with the use of CPack should help us in fast generation of VTK Designer 2 installers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vcreatelogic.com/p/2010/06/moving-to-cmake/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cadence acquires Taray</title>
		<link>http://www.vcreatelogic.com/p/2010/03/cadence-acquires-taray/</link>
		<comments>http://www.vcreatelogic.com/p/2010/03/cadence-acquires-taray/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 07:36:17 +0000</pubDate>
		<dc:creator>prashanthudupa</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vcreatelogic.com/p/?p=53</guid>
		<description><![CDATA[About a year ago I had blogged about how Taray had signed an OEM deal with Cadence. [http://prashanthudupa.livejournal.com/42294.html]. Today I find out from Ravi, VP of Taray, that Cadence has acquired Taray.
Read the complete news here: http://www.cadence.com/cadence/newsroom/features/pages/feature.aspx?xml=taray
How much they got acquired for is something they are not sharing as yet (or maybe never). But it [...]]]></description>
			<content:encoded><![CDATA[<p>About a year ago I had blogged about how Taray had signed an OEM deal with Cadence. [<a title="http://prashanthudupa.livejournal.com/42294.html" href="http://prashanthudupa.livejournal.com/42294.html">http://prashanthudupa.livejournal.com/42294.html</a>]. Today I find out from Ravi, VP of Taray, that Cadence has acquired Taray.</p>
<p>Read the complete news here: <a title="http://www.cadence.com/cadence/newsroom/features/pages/feature.aspx?xml=taray" href="http://www.cadence.com/cadence/newsroom/features/pages/feature.aspx?xml=taray">http://www.cadence.com/cadence/newsroom/features/pages/feature.aspx?xml=taray</a></p>
<p>How much they got acquired for is something they are not sharing as yet (or maybe never). But it is wonderful to know that an Indian “product” company has gotten such a beautiful exit. It is even more wonderful to know that <a href="http://www.vcreatelogic.com">our company</a> played a significant part in their product development in the recent past.</p>
<p>My congratulations to Nagesh (CEO), Ravi Vedula (VP), Nishit (FPGA Engineer) and the complete engineering team (made of 18 people in total). You guys rock!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vcreatelogic.com/p/2010/03/cadence-acquires-taray/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GCFSupport Plugin for Qt SDK 2010.02.1</title>
		<link>http://www.vcreatelogic.com/p/2010/03/gcfsupport-plugin-for-qt-sdk-2010021/</link>
		<comments>http://www.vcreatelogic.com/p/2010/03/gcfsupport-plugin-for-qt-sdk-2010021/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 05:27:04 +0000</pubDate>
		<dc:creator>prashanthudupa</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vcreatelogic.com/p/?p=51</guid>
		<description><![CDATA[We have recently made available a GCFSupport plugin for Qt SDK 2010.02.1. Click on the link below to download the plugin.
“GCF 2.3.0 Plugin for Qt Creator 1.3.1 (QtSDK 2010.02.1) [Windows Only]”
Using this plugin it is now possible to get started with GCF super-quickly using Qt Creator. Just unpack the ZIP file and take a look [...]]]></description>
			<content:encoded><![CDATA[<p>We have recently made available a GCFSupport plugin for Qt SDK 2010.02.1. Click on the link below to download the plugin.</p>
<p>“<a href="http://www.vcreatelogic.com/downloads/?file=GCF-2.3.0-March-2010-QtCreatorIntegration&amp;type=zip">GCF 2.3.0 Plugin for Qt Creator 1.3.1 (QtSDK 2010.02.1) [Windows Only]”</a></p>
<p>Using this plugin it is now possible to get started with GCF super-quickly using Qt Creator. Just unpack the ZIP file and take a look at the README.pdf file for instructions. Within minutes you will have GCFSupport enabled in the Qt Creator bundled with Qt-SDK 2010.02.01.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vcreatelogic.com/p/2010/03/gcfsupport-plugin-for-qt-sdk-2010021/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GCF 2.3 Released</title>
		<link>http://www.vcreatelogic.com/p/2010/03/gcf-23-released/</link>
		<comments>http://www.vcreatelogic.com/p/2010/03/gcf-23-released/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 07:58:54 +0000</pubDate>
		<dc:creator>prashanthudupa</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vcreatelogic.com/p/?p=49</guid>
		<description><![CDATA[After a bit of a delay, today we announce the release of GCF 2.3. You can download the latest version of GCF from our website. The main new feature in this release is the GCF - Qt Creator integration. With this plugin developers can now use Qt Creator to ease their GCF application development. In [...]]]></description>
			<content:encoded><![CDATA[<p>After a bit of a delay, today we announce the release of GCF 2.3. You can download the latest version of GCF from <a href="http://www.vcreatelogic.com/products/gcf/">our website</a>. The main new feature in this release is the GCF - Qt Creator integration. With this plugin developers can now use Qt Creator to ease their GCF application development. In addition to this main new feature the latest version comes with several bug-fixes and minor feature additions. Read the <a href="http://vcreatelogic.com/downloads/changelog/GCF-2.3.0-Changes.txt">change log</a> to find what all has changed in GCF 2.3.0.</p>
<p>In addition to the technical changes, from this version of GCF commercial users can buy licenses of GCF from VCreate Logic and from our official reseller, KDAB.</p>
<p>We hope you like this release.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vcreatelogic.com/p/2010/03/gcf-23-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Project/File/Class wizards&#8230;</title>
		<link>http://www.vcreatelogic.com/p/2010/02/projectfileclass-wizards/</link>
		<comments>http://www.vcreatelogic.com/p/2010/02/projectfileclass-wizards/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 11:54:07 +0000</pubDate>
		<dc:creator>prashanthudupa</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vcreatelogic.com/p/?p=47</guid>
		<description><![CDATA[Qt Creator comes built in with a set of project/class/file wizards. These wizards are great to get started with, but I always wished if there were an easy way to add support for more project/file/class wizards. In our projects we frequently write models, delegates and widgets. And the skeleton (or starting point) for most classes [...]]]></description>
			<content:encoded><![CDATA[<p>Qt Creator comes built in with a set of project/class/file wizards. These wizards are great to get started with, but I always wished if there were an easy way to add support for more project/file/class wizards. In our projects we frequently write models, delegates and widgets. And the skeleton (or starting point) for most classes look the same. So if there was an easy way to quickly create skeleton for a model/delegate/widget class it would be very useful. With this in mind, I started working on the HintBasedWizard plugin for Qt Creator. You can download the source code by checking out the code from the following SVN location</p>
<pre>SVN Location: https://svn2.hosted-projects.com/vcreatelogic/VCLTools/QtCPlugins
Username: anonymous
Password: anonymous</pre>
<p>Right now we only have support for class wizards based on hints. The hints are provided in three files</p>
<ul>
<li>Header hint</li>
<li>Source hint</li>
<li>Description hint</li>
</ul>
<p>The header-hint for item-model class looks like this (and is saved in a file called ItemModelHeader)</p>
<pre>#ifndef {{UPPER_CLASS_NAME}}_H
#define {{UPPER_CLASS_NAME}}_H

#include 

struct {{CLASS_NAME}}Data;
class {{CLASS_NAME}} : public QAbstractItemModel
{
    Q_OBJECT

public:
    {{CLASS_NAME}}(QObject* parent=0);
    ~{{CLASS_NAME}}();

    int rowCount(const QModelIndex&amp; parent=QModelIndex()) const;
    int columnCount(const QModelIndex&amp; parent=QModelIndex()) const;
    QVariant data(const QModelIndex&amp; index, int role=Qt::DisplayRole) const;
    QModelIndex index(int row, int column, const QModelIndex&amp; parent=QModelIndex()) const;
    QModelIndex parent(const QModelIndex&amp; index) const;

private:
    {{CLASS_NAME}}Data* d;
};

#endif // {{UPPER_CLASS_NAME}}_H</pre>
<p>The source-hint for the same looks like this (and is stored in a file called ItemModelSource)</p>
<pre>#include "{{H_FILE_NAME}}"

struct {{CLASS_NAME}}Data
{

};

{{CLASS_NAME}}::{{CLASS_NAME}}(QObject* parent)
:QAbstractItemModel(parent)
{
    d = new {{CLASS_NAME}}Data;
}

{{CLASS_NAME}}::~{{CLASS_NAME}}()
{
    delete d;
}

int {{CLASS_NAME}}::rowCount(const QModelIndex&amp; parent) const
{
    Q_UNUSED(parent);

    return 0;
}

int {{CLASS_NAME}}::columnCount(const QModelIndex&amp; parent) const
{
    Q_UNUSED(parent);

    return 0;
}

QVariant {{CLASS_NAME}}::data(const QModelIndex&amp; index, int role) const
{
    Q_UNUSED(index);
    Q_UNUSED(role);

    return QVariant();
}

QModelIndex {{CLASS_NAME}}::index(int row, int column, const QModelIndex&amp; parent) const
{
    Q_UNUSED(row);
    Q_UNUSED(column);
    Q_UNUSED(parent);

    return QModelIndex();
}

QModelIndex {{CLASS_NAME}}::parent(const QModelIndex&amp; index) const
{
    Q_UNUSED(index);

    return QModelIndex();
}</pre>
<p>The description-hint, which is an XML file, for the same looks like this (and is stored in a file called ItemModelClassHint.xml)</p>
<pre>&lt;hint&gt;

    &lt;!-- Meta information about the hints --&gt;
    &lt;title&gt;QAbstractItemModel class&lt;/title&gt;
    &lt;type&gt;class&lt;/type&gt;
    &lt;name&gt;Model class&lt;/name&gt;
    &lt;category&gt;Qt Classes&lt;/category&gt;
    &lt;description&gt;Generates a QAbstractItemModel implementation&lt;/description&gt;
    &lt;icon&gt;&lt;/icon&gt;

    &lt;!-- actual hints file --&gt;
    &lt;header&gt;ItemModelHeader&lt;/header&gt;
    &lt;implementation&gt;ItemModelSource&lt;/implementation&gt;

    &lt;!-- hint fields to ask --&gt;
    &lt;field name="CLASS_NAME" label="Class name"&gt;ItemModel&lt;/field&gt;

&lt;/hint&gt;</pre>
<p>I store these files in a folder and launch Qt Creator (with the HintBasedWizard plugin compiled/installed ofcourse). Go to Tools -&gt; Options -&gt; Hints Configuration page and add the newly created hint-description file (ItemModelClassHint.xml) by clicking on the &#8220;Add Class Hint&#8221; button.</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/HintBasedWizard1.png" alt="" width="713" height="512" /></p>
<p>Click on Ok. Now start a new project and try adding a new class using the &#8220;File-&gt; New&#8221; class wizard.</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/HintBasedWizard2.png" alt="" width="604" height="426" /></p>
<p>Select the &#8220;QAbstractItemModel class&#8221; class under Qt Classes and click &#8220;Ok&#8221;. In the wizard that shows up next, enter appropriate values.</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/HintBasedWizard3.png" alt="" width="500" height="388" /></p>
<p>Notice how default values are picked up from the text for &lt;field name=&#8221;CLASS_NAME&#8221;&gt; xml element in ItemModelClassHint.xml file. Click on Next and notice how the class gets generated for you within your project.</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/HintBasedWizard4.png" alt="" width="781" height="570" /></p>
<p>I can now create as many class-hints as I want and increase my productivity in programming. The HintBasedWizard plugin comes with class-wizards for the following class types</p>
<ul>
<li>QAbstractItemModel</li>
<li>QWidget</li>
<li>QAbstractItemDelegate and</li>
<li>QGraphicsItem</li>
</ul>
<p>We plan to add more class-hints in the coming days and also provide support for hint based project and file wizards.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vcreatelogic.com/p/2010/02/projectfileclass-wizards/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Expand Declarations in Qt Creator</title>
		<link>http://www.vcreatelogic.com/p/2010/02/expand-declarations-in-qt-creator/</link>
		<comments>http://www.vcreatelogic.com/p/2010/02/expand-declarations-in-qt-creator/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 11:38:04 +0000</pubDate>
		<dc:creator>prashanthudupa</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vcreatelogic.com/p/?p=43</guid>
		<description><![CDATA[One of the things I dont particularly enjoy is to transfer functions from .h (declaration) to .cpp (implementation), specifying the class scope and then creating open and close brackets. The whole process consumes time and I always thought that it can be automated quite easily in Qt Creator. Just wrote a plugin for Qt Creator [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things I dont particularly enjoy is to transfer functions from .h (declaration) to .cpp (implementation), specifying the class scope and then creating open and close brackets. The whole process consumes time and I always thought that it can be automated quite easily in Qt Creator. Just wrote a plugin for Qt Creator that makes it possible.</p>
<p>Consider the following class definition below.</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/QTC-ExpandDeclarations1.png" alt="" width="640" height="480" /></p>
<p>Select the function declarations from constructor all the way down to setCurrentColor(). Copy the code snippet using Ctrl+C. Now in the .cpp file for this class as shown below</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/QTC-ExpandDeclarations11.png" alt="" width="640" height="480" /></p>
<p>With the ExpandDeclarations plugin installed, we can now hit the key-combination Ctrl+Shift+V, to get this dialog box</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/QTC-ExpandDeclarations2.png" alt="" /></p>
<p>to get this</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/QTC-ExpandDeclarations3.png" alt="" width="640" height="480" /></p>
<p>This one really saves time, I tell you.</p>
<p>You can grab a copy of the plugin from here: https://svn2.hosted-projects.com/vcreatelogic/VCLTools/QtCPlugins/. Username and password for read-only access is anonymous/anonymous. In the same location you can also find a plugin that provides a project wizard called &#8220;Qt Creator Plugin&#8221; that automatically generates a Qt Creator Plugin skeleton project for you.</p>
<p>You can now select File -&gt; New project and select the &#8220;Qt Creator Plugin&#8221; project.</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/QTCProject1.png" alt="" /></p>
<p>Answer some simple questions</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/QTCProject2.png" alt="" /></p>
<p>And have a fully functional empty plugin project automatically generated :-).</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/QTCProject3.png" alt="" width="640" height="480" /></p>
<p>These plugins are given away under LGPL. So you can use them for any purpose you see fit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vcreatelogic.com/p/2010/02/expand-declarations-in-qt-creator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happy New Year 2010</title>
		<link>http://www.vcreatelogic.com/p/2009/12/happy-new-year-2010/</link>
		<comments>http://www.vcreatelogic.com/p/2009/12/happy-new-year-2010/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 10:52:01 +0000</pubDate>
		<dc:creator>prashanthudupa</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vcreatelogic.com/p/?p=41</guid>
		<description><![CDATA[From all of us here at VCreate Logic, wish you a very happy new year 2010. The current year (2009) has been fantastic for us. Good lot of license sales and new consulting business. We have lost some colleagues and gained new ones. All in all the year was a fun and learning experience. 
On [...]]]></description>
			<content:encoded><![CDATA[<p>From all of us here at VCreate Logic, wish you a very happy new year 2010. The current year (2009) has been fantastic for us. Good lot of license sales and new consulting business. We have lost some colleagues and gained new ones. All in all the year was a fun and learning experience. </p>
<p>On the downside, we would like to announce that we are postponing the release of the next version of GCF and VTK Designer by 1.5 months. Sincere apologies to everyone following our development. The last 2 months have been over-hectic, with too many projects nearing completion. </p>
<p>On the up-side, over the last few months a couple of interesting things have begun to happen. We have now become aware of atleast 2 open-source projects that are creating a customized version of VTK Designer. Yay!!! We hope that by mid 2010, those products will be ready for release. We are going to start on 2 new projects from January. Our schedule for the next 5 months is filled <img src='http://www.vcreatelogic.com/p/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Thanks to all users of our open-source products, commercial license holders and customers. Your presence has kept us motivated and pushed us this far. Keep them coming, we are preparing to up the ante. </p>
<p>Once again, wish you a happy new year 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vcreatelogic.com/p/2009/12/happy-new-year-2010/feed/</wfw:commentRss>
		</item>
		<item>
		<title>VTK Designer has better DICOM imaging support</title>
		<link>http://www.vcreatelogic.com/p/2009/11/vtk-designer-has-better-dicom-imaging-support/</link>
		<comments>http://www.vcreatelogic.com/p/2009/11/vtk-designer-has-better-dicom-imaging-support/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 09:44:03 +0000</pubDate>
		<dc:creator>prashanthudupa</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vcreatelogic.com/p/?p=38</guid>
		<description><![CDATA[We have been working on improving medical imaging support in VTK Designer for quite sometime. However, due to heavy workload in other products and projects; this one took a back seat. Up-until now users could select DICOM image set and do a surface render.

But now; over and above this we also support something called &#8220;Axial, [...]]]></description>
			<content:encoded><![CDATA[<p>We have been working on improving medical imaging support in VTK Designer for quite sometime. However, due to heavy workload in other products and projects; this one took a back seat. Up-until now users could select DICOM image set and do a surface render.</p>
<p><img class="alignnone" src="http://www.vcreatelogic.com/forblog/prashanthudupa/dicom_surface_small.png" alt="" width="584" height="418" /></p>
<p>But now; over and above this we also support something called &#8220;Axial, Coronal and Sagittal plane views&#8221;. When DICOM images are loaded in this view, you will get&#8230;</p>
<p><img class="alignnone" src="http://www.vcreatelogic.com/forblog/prashanthudupa/dicom_asc_small.png" alt="" width="582" height="417" /></p>
<p>The DICOM data-file loader in VTK Designer automatically creates the required pipeline, script and configuration form; and embeds it into the right panel. In that form users can view details about the patient and also extract different axial, coronal and sagittal planes by dragging the sliderbars and clicking &#8220;Refresh&#8221;.</p>
<p>We are also working on supporting volume rendering of medical images in VTK Designer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vcreatelogic.com/p/2009/11/vtk-designer-has-better-dicom-imaging-support/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GUIXML Editor in Qt Creator</title>
		<link>http://www.vcreatelogic.com/p/2009/09/guixml-editor-in-qt-creator/</link>
		<comments>http://www.vcreatelogic.com/p/2009/09/guixml-editor-in-qt-creator/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 13:33:12 +0000</pubDate>
		<dc:creator>prashanthudupa</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vcreatelogic.com/p/?p=35</guid>
		<description><![CDATA[When you open a GCF project in Qt Creator, you will notice that the project tree on the left hand side also shows GUIXML files against each component and the global ComponentLoaderComponent.xml (CLC for short) file. The CLC file describes the order of loading of components. Each component&#8217;s GUIXML file describes the GUI of the [...]]]></description>
			<content:encoded><![CDATA[<p>When you open a GCF project in Qt Creator, you will notice that the project tree on the left hand side also shows GUIXML files against each component and the global <em>ComponentLoaderComponent.xml</em> (CLC for short) file. The CLC file describes the order of loading of components. Each component&#8217;s GUIXML file describes the GUI of the component.</p>
<p>When you double click on any of the GUIXML files, you will get a fancy XML editor that color codes the whole file. Known elements and attributes are marked in bold face; while unknown ones are color coded but in italics. The custom XML editor works only for GCF&#8217;s GUIXML files, Qt Creator will default to a simple QPlainTextEdit for other kinds of XML files. We have also implemented find support for the GUIXML editor; that way users can just hit &#8220;Ctrl+F&#8221; and search for text using the familiar &#8220;find text bar&#8221; along the bottom edge of the window.</p>
<p><img src="http://www.vcreatelogic.com/forblog/prashanthudupa/GCFSupport8.png" alt="" /></p>
<p>[ Chapter 5 of the document on <a href="http://www.vcreatelogic.com/p/2009/08/document-on-writing-plugins-for-qt-creator/">Writing Qt Creator Plugins</a> was very useful for implementing this feature. Thanks to my colleague Vasudha for researching on this one]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vcreatelogic.com/p/2009/09/guixml-editor-in-qt-creator/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
