12 Eylül 2019 Perşembe

QApplication Sınıfı

Giriş
Şu satırı dahil ederiz.
#include <QApplication>
Qt QApplication ile diğer sınıfları bağlamak için kod üretir. Açıklaması şöyle
Qt preprocess your code and build the real c++ code before compiling, its at this moment QApplication wrap all Q object in the main.cpp file and build the rest of the code from it.
Açıklaması şöyle.
"It handles widget specific initialization, finalization."
constructor
Şöyle yaparız.
#include <QApplication>
#include <QPushButton>

int main(int argc, char **argv)
{
 QApplication app (argc, argv);

 QPushButton button ("Hello world !");
 button.show();

 return app.exec();
}
exec metodu
Örnek
Şöyle yaparız
#include "notepad.h"
#include <QApplication>

int main(int argc, char *argv[])
{
  QApplication a(argc, argv);
  Notepad w;
  w.show();

  return a.exec();
}
topLevelWidgets metodu
Şöyle yaparız.
QWidgetList list = QApplication::topLevelWidgets();

Hiç yorum yok:

Yorum Gönder