QDetroBro: Experimenting with Qt on S60

The best way to learn a new language or a new framework is to find an idea and implement it. So I鈥檓 doing for Qt on S60. So I decided to implement a dummy browser that has some smart/attractive/peculiar/interesting/funny bits. QDetroBro Because I鈥檓 lazy to package and attach code, and because is always good the evolution of a project from the ground-up, I decided to post it on my GitHub account. You can find it at: http://github.com/detronizator/QDetroBro/tree/master. ...

August 13, 2009 路 1 min 路 183 words

Snippet: fix Screen Orientation in a Qt/S60 app

I follow the Qt/S60 Mailing list, that is turning out to be a very interesting and active ML, and the Qt Labs blog, always full of very good code, written directly by the guys of Qt Software. I thought could be nice to start to post some of the stuff I鈥檓 learning. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #include <eikenv.h> #include <eikappui.h> #include <aknenv.h> #include <aknappui.h> // ... // lock orientation CAknAppUi* appUi = static_cast<caknappui *>( CEikonEnv::Static()->AppUi() ); if ( appUi ) //< Actually, this will always pass. It's a "static_cast" after all... { appUi->SetOrientationL( CAknAppUi::EAppUiOrientationPortrait ); } // ... Today's source is: [Nokia Forum](http://discussion.forum.nokia.com/forum/showthread.php?t=164499).</caknappui></aknappui></aknenv></eikappui></eikenv>

August 11, 2009 路 1 min 路 116 words

Google Latitude on iPhone? Background Process?

Google just introduced a new service, Latitude. I will not go in the details of explaining what it does, simply because the official web page is detailed enough, and has a nice/fancy video. What is relevant for me is the list of phone with which it will work: Will it work with my phone? Google Latitude is a feature of Google Maps for mobile on these phones: Android-powered devices, such as the T-Mobile G1 (coming soon) iPhone and iPod touch devices (coming soon) most color BlackBerry devices most Windows Mobile 5.0+ devices most Symbian S60 devices (Nokia smartphones) many Java-enabled (J2ME) mobile phones, such as Sony Ericsson devices (coming soon) This service is free from Google; carrier charges may apply. ...

February 6, 2009 路 3 min 路 449 words