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 }
Toinen Qt-ohjelma
Projektitiedosto loppu.pro
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 loppu.cpp tiedostossa
#include <QApplication> #include <QPushButton> int main(int argc, char *argv[]) { QApplication app(argc, argv); QPushButton *nappi = new QPushButton("LOPPU"); QObject::connect(nappi, SIGNAL(clicked()),&app, SLOT(quit())); nappi->show(); return app.exec(); }
Kolmas Qt-ohjelma
Projektitiedosto ika.pro
TEMPLATE = app SOURCES = ika.cpp
Projektitiedostossa kerrotaan, että kyseessä on sovellus elio käytetään mallia app ja mukaan otettavat tiedostot, nyt terve.cpp
Varsinainen ohjelma on ika.cpp tiedostossa
#include <QApplication> #include <QHBoxLayout> #include <QSlider> #include <QSpinBox> int main(int argc, char *argv[]) { QApplication app(argc, argv); QWidget *window = new QWidget; window->setWindowTitle("Anna ikasi:"); QSpinBox *spinBox = new QSpinBox; QSlider *slider = new QSlider(Qt::Horizontal); spinBox->setRange(0, 130); slider->setRange(0, 130); QObject::connect(spinBox, SIGNAL(valueChanged(int)),slider, SLOT(setValue(int))); QObject::connect(slider, SIGNAL(valueChanged(int)),spinBox, SLOT(setValue(int))); spinBox->setValue(35); QHBoxLayout *layout = new QHBoxLayout; layout->addWidget(spinBox); layout->addWidget(slider); window->setLayout(layout); window->show(); return app.exec(); }