Versions Compared

Key

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

...

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 terveloppu.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 *buttonnappi = new QPushButton("LOPPU");

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

                     &app, SLOT(quit()));

    buttonnappi->show();

    return app.exec();

}