You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Ensimmäinen Qt-ohjelma

Projektitiedosto terve.pro

TEMPLATE      = app
SOURCES       = terve.cpp

Projektitiedostossa kerrotaan, että kyseessä on sovellus elio käytetään mallia app ja mukaan otettavat tiedostot, nyt terve.cpp

Varsinainen ohjelma on terve.cpp tiedostossa

#include <QApplication> // Kyseessä Qt-sovellus
#include <QLabel> // Label eli ilmoitusikkuna

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QLabel *label = new QLabel("Terve, eka Qt-sovellus!");
    label->show();
    return app.exec(); //täällä ollaan kunnes sovellus sulkeutuu
 }
  • No labels
You must log in to comment.