Getting Started on the Commandline

From Qt Wiki
Revision as of 15:31, 14 January 2015 by Maintenance script (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Getting Started with C++ Software Development with Qt

Welcome to C++! This guide will show you how to get started with C++ application development with Qt. Before you continue you may want to start downloading the Qt SDK from here [troll.no] . Choose the LGPL version if unsure. The source code examples in this guide are entirely LGPL compatible. On Linux you can also just install “libqt4-dev” and “g++” using your favorite package manager.

“Hello, world!” console application

Let’s begin with a simple C++ program. Open a text editor and enter the following source code. Keep care to type it exactly like shown in the following example. Like most programming languages C++ is case-sensitive.

Create a directory “hello” and save the source code into a file hello.cpp residing in this directory.

The download of the Qt SDK or package install should be finished by now.

Open a shell and inspect which version of Qt you have installed: enter “qmake -v”. If qmake can’t be found you have to add its installation path to your environment variable. Search for it in the SDK installation directory.

Now enter the “hello” directory and type: “qmake -project”. This will create an qmake project file. Thereafter run just “qmake” without arguments. this will create a “Makefile” which contains the rules to build your application. Then run “make” (called nmake or gmake on some platforms), which will build your app according to the rules layed out in the “Makefile”. Finally you can run the app “./hello”.

So, on a bash command prompt you would enter:
$ cd my/dir/hello
$ qmake -project
$ qmake
$ make
$ ./hello

“Hello, world!” desktop application

Simply replace the source code in hello.cpp by:

Run “make” again. If you launch the application should see a small window saying “Hello, world!”.

At this point I hope you were able to take the first step in C++ development using Qt. You may now want to start reading some of Qt’s documentation. Qt’s API reference is directly written by the software developer that create Qt. You find the latest API documentation under http://troll.no/doc . For instance go to here [troll.no] to learn more about the “QLabel” class. Another good starting point is to take a look at the examples, which ship with Qt. If you have chosen to install the Qt SDK and you launch the Qt creator you can open the examples directly from the start page.