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

Compare with Current View Page History

« Previous Version 3 Next »

Projekti, Application ja Label

Qt:n yksi tärkeimmistä tiedostoista on projektitiedosto, tästä qmake ohjelma osaa tehdä automaattisesti make-tiedoston. Ensimäisessä esimerkissämme projektitiedostossa terve.pro kerrotaan, että ollaan tekemässä sovellusta "application", siitä app ja ohjelmaan sisällytetään lähdekoodit SOURCES, nyt terve.cpp


TEMPLATE      = app

HEADERS       = finddialog.h

SOURCES       = finddialog.cpp \

main.cpp

Varsinainen ohjelma  terve.cpp on esitetty alla olevassa "laatikossa"#include <QApplication> // Kyseessä Qt-sovellus
#include <QLabel> // Label eli ilmoitusikkuna

int main(int argc, char *argv[])
{
QApplication app(argc, argv); //luodaan pinoon sovellus
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.