Спасибо, а то я чуть с ума не сошел:) А все-таки как определяется, какие слоты и сигналы нужно савтоконектить? Он что, синтаксический разбор имен обьектов, слотов и сигналов делает?
Именно!!! =)
===
C++ (Qt)
void QMetaObject::connectSlotsByName ( QObject * object ) [static]
Searches recursively for all child objects of the given object, and connects matching signals from them to slots of object that follow the following form:
C++ (Qt)
void on_<object name>_<signal name>(<signal parameters>);
Let's assume our object has a child object of type QPushButton with the object name button1. The slot to catch the button's clicked() signal would be:
C++ (Qt)
void on_button1_clicked();
===
// А как правильно цитировать документацию? Какие теги использовать?