Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
#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
 }

Toinen Qt-ohjelma

Projektitiedosto loppu.pro

Code Block

TEMPLATE      = app
SOURCES       = loppu.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

Code Block

p, li { white-space: pre-wrap; }
#include <QApplication>
#include <QPushButton>



int main(int argc, char *argv[])
{

    QApplication app(argc, argv);

    QPushButton *button = new QPushButton("LOPPU");

    QObject::connect(button, SIGNAL(clicked()),

                     &app, SLOT(quit()));

    button->show();

    return app.exec();

}