Getting started with Qt
m (Category:Qt) |
tanjaluodes
(Talk | contribs) |
||
| Line 15: | Line 15: | ||
== Introduction == | == Introduction == | ||
| − | This article is for beginners who | + | This article is for beginners who want to start development in [[Qt for S60]]. Before following the steps given here please make sure that [http://forum.nokia.com/main/resources/tools_and_sdks/carbide_cpp/ Carbide.c++], S60 [[SDK]] and [[Qt for S60]] are properly installed. |
* Install Qt for S60 Temple release from here: [http://pepper.troll.no/s60prereleases/ Qt for S60 "Temple" pre-release] | * Install Qt for S60 Temple release from here: [http://pepper.troll.no/s60prereleases/ Qt for S60 "Temple" pre-release] | ||
| − | * | + | * See [http://pepper.troll.no/s60prereleases/doc/install-s60.html How to install the package] for the installation guide. |
== Prerequisite== | == Prerequisite== | ||
| − | * Carbide.c++ 2.0 does not automatically locate your Qt installation so you need to tell it where Qt is installed. This is done through the following settings: | + | * Carbide.c++ 2.0 does not automatically locate your Qt installation, so you need to tell it where Qt is installed. This is done through the following settings: |
| − | '''Carbide.c++ preferences: Window | + | '''Carbide.c++ preferences: Window > Preferences > Qt > Add...''' |
[[Image:Qt_Preference.PNG]] | [[Image:Qt_Preference.PNG]] | ||
== First Step == | == First Step == | ||
| − | Open the Carbide IDE and click | + | Open the Carbide IDE and click File > New > Qt Project. |
[[Image:step1.jpg]] | [[Image:step1.jpg]] | ||
| Line 33: | Line 33: | ||
== Second Step == | == Second Step == | ||
| − | + | A new window will open on the screen. This will show the application types that can be created. Click Qt GUI Widget and then click Next. | |
[[Image:Step2.jpg]] | [[Image:Step2.jpg]] | ||
| Line 39: | Line 39: | ||
== Third Step == | == Third Step == | ||
| − | + | Enter a name for the project and click Next. | |
[[Image:Step3.jpg]] | [[Image:Step3.jpg]] | ||
| Line 45: | Line 45: | ||
== Fourth Step == | == Fourth Step == | ||
| − | + | Select the SDK to create the project for and click Next. | |
[[Image:Step4.jpg]] | [[Image:Step4.jpg]] | ||
| Line 51: | Line 51: | ||
== Fifth Step == | == Fifth Step == | ||
| − | + | Select the module(s) and click Next. For our example, click Next without selecting any extra modules. | |
[[Image:Step5.jpg]] | [[Image:Step5.jpg]] | ||
| Line 57: | Line 57: | ||
== Sixth Step == | == Sixth Step == | ||
| − | + | The class name is required. By default it is the application name. Click Finish to proceed. | |
[[Image:Step6.jpg]] | [[Image:Step6.jpg]] | ||
| − | After finishing these steps, the project is ready. Several files | + | After finishing these steps, the project is ready. Several files are created automatically as shown in the following screenshot. |
[[Image:Step7.jpg]] | [[Image:Step7.jpg]] | ||
| − | If you have more than one version of [[Qt for S60]] installed on your machine | + | If you have more than one version of [[Qt for S60]] installed on your machine, choose the correct version as shown here: |
[[Image:Properties.JPG]] | [[Image:Properties.JPG]] | ||
| Line 75: | Line 75: | ||
== Include Qt Views == | == Include Qt Views == | ||
* Include views for Qt from: | * Include views for Qt from: | ||
| − | '''Carbide.c++ | + | '''Carbide.c++ > Windows > Show View > Other... > Qt''' |
[[Image:QtView.png]] | [[Image:QtView.png]] | ||
| − | * | + | * View selection depends on the application. However, at least the following views must be selected: |
# Qt C++ Widget Box | # Qt C++ Widget Box | ||
# Qt C++ Property Editor | # Qt C++ Property Editor | ||
| Line 83: | Line 83: | ||
== Adding controls == | == Adding controls == | ||
| − | * Open '''<tt>Hello.ui</tt>''' and place the control from '''Qt C++ Widget Box''' | + | * Open '''<tt>Hello.ui</tt>''' and place the control from the '''Qt C++ Widget Box'''. |
[[Image:QtWidgetBox.png]] | [[Image:QtWidgetBox.png]] | ||
| − | * | + | * In this example, two push buttons and one text label will be added. |
| − | * The display text of an object can be changed by right clicking on object | + | * The display text of an object can be changed by right clicking on object > Change text... |
* The name of an object can be changed as shown in the following screenshots. | * The name of an object can be changed as shown in the following screenshots. | ||
| Line 100: | Line 100: | ||
== Implementing Signal and Slot mechanism for Exit push button== | == Implementing Signal and Slot mechanism for Exit push button== | ||
| − | * Open '''<tt>Hello.ui</tt>''' | + | * Open '''<tt>Hello.ui</tt>'''. |
| − | * Open '''Qt C++ Signal Slot Editor''' view | + | * Open the '''Qt C++ Signal Slot Editor''' view. |
[[Image:QtSignalSlotView.png]] | [[Image:QtSignalSlotView.png]] | ||
| − | * Click | + | * Click [[Image:QtSignalPlus.png]] to add an entry for handling events on control. |
| − | * In this | + | * In this example, we will handle events on the Exit push button |
| − | * The application will terminate when the user clicks | + | * The application will terminate when the user clicks the Exit push button |
=== Sender === | === Sender === | ||
| − | * | + | * exitButton is the sender of the signal. |
[[Image:QtSender.png]] | [[Image:QtSender.png]] | ||
=== Signal === | === Signal === | ||
| − | * | + | * Select the signal clicked() to be sent by exitButton. |
[[Image:QtSignal.png]] | [[Image:QtSignal.png]] | ||
=== Receiver === | === Receiver === | ||
| − | * | + | * <tt>HelloClass</tt> is the receiver of this event handling mechanism. |
[[Image:QtReceiver.png]] | [[Image:QtReceiver.png]] | ||
=== Slot === | === Slot === | ||
| − | * | + | * Slot is the action performed when exitButton is clicked(). To exit from the application, select close(). |
[[Image:QtSlot.png]] | [[Image:QtSlot.png]] | ||
| − | == Implementing Hello push button == | + | == Implementing the Hello push button == |
| − | * | + | * In this example, we implement the Hello button event by coding in the files Hello.h and Hello.cpp. |
===Header file === | ===Header file === | ||
<code cpp> | <code cpp> | ||
| Line 187: | Line 187: | ||
== Example application == | == Example application == | ||
* Extract this example application: [[Media:Hello.zip|Hello.zip]] | * Extract this example application: [[Media:Hello.zip|Hello.zip]] | ||
| − | * Import .pro file from the | + | * Import the .pro file from the previously extracted application in your Carbide.c++ IDE. |
'''Carbide.c++ >> Import >> Qt >> Qt Project >> Hello.pro''' | '''Carbide.c++ >> Import >> Qt >> Qt Project >> Hello.pro''' | ||
== Feedback == | == Feedback == | ||
| − | * If you | + | * If you encounter any problems in creating your HelloWorld application in Qt, please enter your feedback in the <u>[[Talk:Getting started with Qt for S60|Comment page]]</u> of this article. |
| − | * Raise | + | * Raise any other [[Qt for S60]] related questions on the [http://discussion.forum.nokia.com/forum/forumdisplay.php?f=196 Qt for S60 Discussion Boards]. |
Revision as of 17:32, 25 February 2009
Article Metadata
Tested with
Compatibility
Article
Contents |
Introduction
This article is for beginners who want to start development in Qt for S60. Before following the steps given here please make sure that Carbide.c++, S60 SDK and Qt for S60 are properly installed.
- Install Qt for S60 Temple release from here: Qt for S60 "Temple" pre-release
- See How to install the package for the installation guide.
Prerequisite
- Carbide.c++ 2.0 does not automatically locate your Qt installation, so you need to tell it where Qt is installed. This is done through the following settings:
Carbide.c++ preferences: Window > Preferences > Qt > Add...
First Step
Open the Carbide IDE and click File > New > Qt Project.
Second Step
A new window will open on the screen. This will show the application types that can be created. Click Qt GUI Widget and then click Next.
Third Step
Enter a name for the project and click Next.
Fourth Step
Select the SDK to create the project for and click Next.
Fifth Step
Select the module(s) and click Next. For our example, click Next without selecting any extra modules.
Sixth Step
The class name is required. By default it is the application name. Click Finish to proceed.
After finishing these steps, the project is ready. Several files are created automatically as shown in the following screenshot.
If you have more than one version of Qt for S60 installed on your machine, choose the correct version as shown here:
Include Qt Views
- Include views for Qt from:
Carbide.c++ > Windows > Show View > Other... > Qt
- View selection depends on the application. However, at least the following views must be selected:
- Qt C++ Widget Box
- Qt C++ Property Editor
- Qt C++ Signal Slot Editor
Adding controls
- Open Hello.ui and place the control from the Qt C++ Widget Box.
- In this example, two push buttons and one text label will be added.
- The display text of an object can be changed by right clicking on object > Change text...
- The name of an object can be changed as shown in the following screenshots.
Text label
Hello push button
Exit push button
Implementing Signal and Slot mechanism for Exit push button
- Open Hello.ui.
- Open the Qt C++ Signal Slot Editor view.
- Click
to add an entry for handling events on control.
- In this example, we will handle events on the Exit push button
- The application will terminate when the user clicks the Exit push button
Sender
- exitButton is the sender of the signal.
Signal
- Select the signal clicked() to be sent by exitButton.
Receiver
- HelloClass is the receiver of this event handling mechanism.
Slot
- Slot is the action performed when exitButton is clicked(). To exit from the application, select close().
Implementing the Hello push button
- In this example, we implement the Hello button event by coding in the files Hello.h and Hello.cpp.
Header file
#ifndef HELLO_H
#define HELLO_H
#include <QtGui/QWidget>
#include "ui_Hello.h"
class Hello : public QWidget
{
Q_OBJECT
public:
Hello(QWidget *parent = 0);
~Hello();
public slots: //We have added this section to handle "clicked()" event on "helloButton"
void ShowHelloText(); // Fill the label text on clicking "Hello" button
private:
Ui::HelloClass ui;
};
#endif // HELLO_H
Source file
#include "Hello.h"
Hello::Hello(QWidget *parent)
: QWidget(parent)
{
ui.setupUi(this);
// Signal and slot mechanism for "helloButton"
QObject::connect(ui.helloButton, SIGNAL(clicked()), this, SLOT(ShowHelloText()));
}
Hello::~Hello()
{
}
//We have implemented the following function to display "HelloWorld!!!" text in TextLabel
void Hello::ShowHelloText()
{
ui.label->setText("HelloWorld!!!");
}
Output
Initial state
Hello button pressed state
Example application
- Extract this example application: Hello.zip
- Import the .pro file from the previously extracted application in your Carbide.c++ IDE.
Carbide.c++ >> Import >> Qt >> Qt Project >> Hello.pro
Feedback
- If you encounter any problems in creating your HelloWorld application in Qt, please enter your feedback in the Comment page of this article.
- Raise any other Qt for S60 related questions on the Qt for S60 Discussion Boards.




















