How do I process a signal of in a subclass? Let\'s say my subclass is derived from QTextEdit and is interested in the signal textChanged. It seem
QTextEdit
textChanged
It is perfectly ok to connect a signal to a slot in the same class. So implement your slot and connect it to textChanged(QString)
textChanged(QString)