Giriş
Şu satırı dahil ederiz.
Şöyle yaparız.
Örnek
Şöyle yaparız
Şöyle yaparız.
Şu satırı dahil ederiz.
#include <QApplication>
Qt QApplication ile diğer sınıfları bağlamak için kod üretir. Açıklaması şöyleQt 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.
constructor"It handles widget specific initialization, finalization."
Şö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