Thursday, December 2, 2010

Using Qt for non-GUI applications

Maybe you're thinking this guy is crazy. We all know that Qt is a framework to developed application with rich GUIs the easy and portable way. But we can at the same time take advantage of the core and additional libraries provided by Qt and develop non-GUI applications.

Wednesday, September 15, 2010

Qt Mobility: new APIs for mobile devices

As a result of Nokia's commitment to extend Qt Framework to more and more platforms, specially mobile devices and telephones, they released a new set of APIs called Qt Mobility.

Wednesday, August 11, 2010

Automatic Connections: using Qt signals and slots the easy way

One key and distinctive feature of Qt framework is the use of signals and slots to connect widgets and related actions. But as powerful the feature is, it may look compelling to a lot of developers not used to such a model, and it may take some time at the beginning to get used to understand how to use signals and slots properly. However, since version 4.4, we can relay on auto-connections to simplify using this feature.

Friday, July 2, 2010

Dynamic translations with substituting arguments

I already expressed the importance of developing localized applications, in particular, using the tools provided by Qt framework for translating strings. From time to time, you'll be dealing with phrases that may include some dynamic text, it is, you likely don't know the exact phrase at translation time. For such situations, you may resort to variables within the phrases.

Friday, May 28, 2010

What SDK fits your needs?

With the recent launch of Nokia Qt SDK Beta developers using Qt framework has now two options about SDKs, just don't forget about the existing Qt SDK.

So are you confused about what SDK to download and install? I'll try to explain what to expect from each of those packages...

Sunday, May 2, 2010

Looking for Qt examples? Visit Forum Nokia

As a long time developer using Qt, I'm very used to read Qt documentation and visit Qt website quite often. I'm also a regular reader to Qt Labs, where I can keep myself informed about the latest news regarding what's the Trolls are cooking up, upcoming features and research they're doing. But recently, I discovered Forum Nokia and a bunch of Qt code examples.

Thursday, April 1, 2010

MathML editor using Qt support for MathML

I decided to give the MML widget a try to create an example for MathML rendering: display a mathematical formula from the description contained in an XML file. This is a component available from Qt solutions (see my previous post about them) to enhance the by itself long list of classes and modules already available in Qt. For more information about the MathML standard, you may read this MathML introduction

Thursday, February 18, 2010

Extending QTranslator

Although internationalization with Qt has very good tools to deal with translations inside an application, I was posed with the requirement to use existing files with proprietary format for the actual translated strings.