<?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>MVC Frameworks, PHP Frameworks, CodeIgniter, QT4 - My Experience, Tips ,Tricks, Tweaks, Codes and much more... : MVC{model-view-controller} Logic &#187; Featured</title>
	<atom:link href="http://mvclogic.com/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://mvclogic.com</link>
	<description>Code Hungry</description>
	<lastBuildDate>Sat, 03 Apr 2010 16:15:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Create single instance application in Qt 4 : Qt Tip #1</title>
		<link>http://mvclogic.com/qt/create-single-instance-application-in-qt-4-qt-tip-1/</link>
		<comments>http://mvclogic.com/qt/create-single-instance-application-in-qt-4-qt-tip-1/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 06:02:08 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[QT]]></category>
		<category><![CDATA[Qt-Tips]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[Create]]></category>
		<category><![CDATA[QT 4]]></category>
		<category><![CDATA[single instance]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=114</guid>
		<description><![CDATA[
Many times we want only single instance of application. How can we achieve this. I&#8217;m going to show a simple way to achieve this.
We need a Utility that is freely provided by Qt guys . Click here to know more qtsingleapplication
Download zip version of this utility from here
Extract file from zip into your project folder. [...]]]></description>
		<wfw:commentRss>http://mvclogic.com/qt/create-single-instance-application-in-qt-4-qt-tip-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>true v/s TRUE is actually case insensitive : PHP Tips</title>
		<link>http://mvclogic.com/php/true-vs-true-is-actually-case-insensitive-php-tips/</link>
		<comments>http://mvclogic.com/php/true-vs-true-is-actually-case-insensitive-php-tips/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 16:23:17 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Newbie]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP-Tips]]></category>
		<category><![CDATA[actually]]></category>
		<category><![CDATA[case insensitive]]></category>
		<category><![CDATA[true v/s TRUE]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=108</guid>
		<description><![CDATA[
Fact is :
To specify a boolean literal, use the keywords TRUE or FALSE. Both are case-insensitive.
We assume in moodle:

http://docs.moodle.org/en/Development:Coding_style#Booleans_and_the_null_Value
Booleans and the null Value
Use lower case for true, false and null.

We assume in CodeIgniter:
http://codeigniter.com/user_guide/general/styleguide.html#true_false_and_null
TRUE, FALSE, and NULL keywords should always be fully uppercase.
]]></description>
		<wfw:commentRss>http://mvclogic.com/php/true-vs-true-is-actually-case-insensitive-php-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My CodeIgniter .Htaccess</title>
		<link>http://mvclogic.com/php/my-codeigniter-htaccess/</link>
		<comments>http://mvclogic.com/php/my-codeigniter-htaccess/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 04:31:55 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Newbie]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mvclogic.com/?p=71</guid>
		<description><![CDATA[
This is my .htaccess file

RewriteEngine on
RewriteCond $1 !^&#40;index\.php&#124;images&#124;user_guide&#124;assets&#124;captcha&#124;robots\.txt&#41;
RewriteRule ^&#40;.*&#41;$ index.php/$1 &#91;L&#93;

It should be placed in root of the website. Rewrite module of apache should be enabled or it will give you an 500 internal server error.
With this you can skip index.php in URL. Also some folders like images, assets you don&#8217;t want redirection. This file [...]]]></description>
		<wfw:commentRss>http://mvclogic.com/php/my-codeigniter-htaccess/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Highlight current element using javascript</title>
		<link>http://mvclogic.com/javascript/highlight-current-element-using-javascript/</link>
		<comments>http://mvclogic.com/javascript/highlight-current-element-using-javascript/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 07:31:25 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Highlight current element using javascript]]></category>

		<guid isPermaLink="false">http://jals.in/codemanager/?p=65</guid>
		<description><![CDATA[
Adding dyamic current link style using javascript.
It makes easy to view where we are in website. I&#8217;m talking about when you are at home and home looks different from others. How can one achieve that without even using server side code.
So I&#8217;ll give you a easy way of doing this.
Requirement:  Please Download mootols scripts.

&#60;div [...]]]></description>
		<wfw:commentRss>http://mvclogic.com/javascript/highlight-current-element-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ending tags of php &#8211; leave or not</title>
		<link>http://mvclogic.com/php/ending-of-php-leave-or-not/</link>
		<comments>http://mvclogic.com/php/ending-of-php-leave-or-not/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 07:24:38 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Newbie]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[?>]]></category>
		<category><![CDATA[end tag]]></category>

		<guid isPermaLink="false">http://jals.in/codemanager/?p=60</guid>
		<description><![CDATA[ 
To end the php code we can use &#60;? , In fact it is just optional and we should leave it when we are following OOP. This helps us to remove unwanted whitespaces.
This is the core rule of Codeigniter also.
But sometimes leaving this make code unclear and messy.
Conclusion , so use this ?&#62; when [...]]]></description>
		<wfw:commentRss>http://mvclogic.com/php/ending-of-php-leave-or-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simulate a Key event press/release in QT 4</title>
		<link>http://mvclogic.com/qt/simulate-a-key-event-pressrelease-in-qt-4/</link>
		<comments>http://mvclogic.com/qt/simulate-a-key-event-pressrelease-in-qt-4/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 08:14:20 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[QT]]></category>
		<category><![CDATA[Key event]]></category>
		<category><![CDATA[keySimulate]]></category>
		<category><![CDATA[press]]></category>
		<category><![CDATA[QT 4]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://aquireknowledge.com/codemanager/?p=54</guid>
		<description><![CDATA[

QApplication::sendEvent&#40;this, new QKeyEvent
      &#40;QEvent::KeyPress, Qt::Key_Dead_Diaeresis, Qt::NoModifier, QString&#40;&#34;¨&#34;&#41;&#41;&#41;;
&#160;
//Another way I guess easy to understand :) 
//Although both are same
QKeyEvent keyEvent&#40;QEvent::KeyPress,Qt::Key_Escape, Qt::NoModifier&#41;;
QApplication::sendEvent&#40;this, &#38;keyEvent&#41;;

]]></description>
		<wfw:commentRss>http://mvclogic.com/qt/simulate-a-key-event-pressrelease-in-qt-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Rule 3 : System Colors</title>
		<link>http://mvclogic.com/css/css-rule-3-system-colors/</link>
		<comments>http://mvclogic.com/css/css-rule-3-system-colors/#comments</comments>
		<pubDate>Wed, 27 May 2009 09:23:12 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Rules]]></category>
		<category><![CDATA[CSS Rule 3]]></category>
		<category><![CDATA[System Colors]]></category>

		<guid isPermaLink="false">http://aquireknowledge.com/codemanager/?p=39</guid>
		<description><![CDATA[
System Colors
Any color property (e.g., ’color’ or ’background-color’) can take one of the following names. Although these are case-insensitive, it is recommended that 284 23 Apr 2009 15:57 User interface the mixed capitalization shown below be used, to make the names more legible.


ActiveBorder
Active window border


ActiveCaption
Active window caption


AppWorkspace
Background color of multiple document interface


Background
Desktop background


ButtonFace
Face color for [...]]]></description>
		<wfw:commentRss>http://mvclogic.com/css/css-rule-3-system-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Qt Code Example: New File &#124;  Open File &#124; Save File &#124; Save as File &#124; File Print &#124; Print Preview &#124; File Print Preview &#124; Print Preview</title>
		<link>http://mvclogic.com/qt/qt-code-example-new-file-open-file-save-file-save-as-file-file-print-print-preview-file-print-preview-print-preview/</link>
		<comments>http://mvclogic.com/qt/qt-code-example-new-file-open-file-save-file-save-as-file-file-print-print-preview-file-print-preview-print-preview/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 11:36:21 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[QT]]></category>
		<category><![CDATA[File Print]]></category>
		<category><![CDATA[File Print Preview]]></category>
		<category><![CDATA[New File]]></category>
		<category><![CDATA[Open File]]></category>
		<category><![CDATA[Print Preview]]></category>
		<category><![CDATA[Save as File]]></category>
		<category><![CDATA[Save File]]></category>

		<guid isPermaLink="false">http://aquireknowledge.com/codemanager/?p=13</guid>
		<description><![CDATA[
These are few code snippet taken from Qt examples.
I&#8217;m making easier to look for particular functions. That&#8217;s it   .
New File
Open File
Save File
Save as File
File Print
Print Preview
File Print Preview
Print Preview
Save as PDF

&#160;
void TextEdit::fileNew&#40;&#41;
&#123;
    if &#40;maybeSave&#40;&#41;&#41; &#123;
        textEdit-&#62;clear&#40;&#41;;
        [...]]]></description>
		<wfw:commentRss>http://mvclogic.com/qt/qt-code-example-new-file-open-file-save-file-save-as-file-file-print-print-preview-file-print-preview-print-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Qt Code Example: MessageBox</title>
		<link>http://mvclogic.com/qt/qt-code-example-messagebox/</link>
		<comments>http://mvclogic.com/qt/qt-code-example-messagebox/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 11:23:54 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[QT]]></category>
		<category><![CDATA[MessageBox]]></category>

		<guid isPermaLink="false">http://aquireknowledge.com/codemanager/2009/04/07/qt-code-example-messagebox/</guid>
		<description><![CDATA[

&#160;
QMessageBox::about&#40;this, tr&#40;&#34;About Syntax Highlighter&#34;&#41;,
          tr&#40;&#34;&#60;p&#62;The &#60;b&#62;Syntax Highlighter&#60;/b&#62; example shows how &#34; \
            &#34;to perform simple syntax highlighting by subclassing &#34; \
            &#34;the QSyntaxHighlighter class [...]]]></description>
		<wfw:commentRss>http://mvclogic.com/qt/qt-code-example-messagebox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Qt Code Example : Open File</title>
		<link>http://mvclogic.com/qt/qt-code-example-open-file/</link>
		<comments>http://mvclogic.com/qt/qt-code-example-open-file/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 09:43:37 +0000</pubDate>
		<dc:creator>Yash</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[QT]]></category>

		<guid isPermaLink="false">http://aquireknowledge.com/codemanager/?p=3</guid>
		<description><![CDATA[

void MainWindow::openFile&#40;const QString &#38;path&#41;
&#123;
    QString fileName = path;
&#160;
    if &#40;fileName.isNull&#40;&#41;&#41;
        fileName = QFileDialog::getOpenFileName&#40;this,
            tr&#40;&#34;Open File&#34;&#41;, &#34;&#34;, &#34;C++ Files (*.cpp *.h)&#34;&#41;;
&#160;
    if &#40;!fileName.isEmpty&#40;&#41;&#41; &#123;
      [...]]]></description>
		<wfw:commentRss>http://mvclogic.com/qt/qt-code-example-open-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
