QApplication app( argc, argv ); mainwindow win; mainwindowpointer=&win;
QApplication app( argc, argv ); mainwindow win; mainwindowpointer=&app;
Object tree.QGuiEventDispatcherGlib.NAME plastique, QPlastiqueStyle.QSessionManager.QXIMInputContext
// Поиск объекта editor от корня, проходит нормально editor *edt; edt=qFindChild<editor *>(qApp,"editor"); edt->set_text_to_textarea("Main text"); // Вызов метода найденного объекта, проходит нормально
const char * qPrintable ( const QString & str )
char *qPrintable(QString str)
qDebug() << "bla-bla-bla: " << 1 << 1.2;
QString name="Vasya";qDebug() << "Name is " << name;
Name is "Vasya"
editor *edt;edt=qFindChild<editor *>(qApp,"editor");edt->set_text_to_textarea("Main text")
editor *edt;edt=qFindChild<editor *>(qApp,"editor");edt->set_text_to_textarea("Main text");
edt=qFindChild<editor *>(qApp,"editor")
edt->set_text_to_textarea("Main text");
In editor method set_text_to_textarea() set text "Main text"
editor *edt = 0;edt->set_text_to_textarea("Main text");
return static_cast<T>(qt_qFindChild_helper(o, name, reinterpret_cast<T>(0)->staticMetaObject));
// создаём виджет и три кнопки на нём W *w = new W; // находит и выводит "QPushButton(0x80904b0, name = "B3")" qDebug() << qFindChild<QPushButton *>(w, "B3");