auto-connect - questions
Unsolved
Qt Creator and other tools
-
This post is deleted!
-
- why is is called "auto_connect" if there is no word (in recommended code format ?) not even close to say "auto_connect" ?
What „is is“ called „auto_connect“? I can’t find that anywhere in the documentation. If you mean the on_objectName_slotName syntax: it has been chosen because it’s nicely human readable.
- OK, it works when inheritance is in place , however,
does that means they have "parent / child " relations too?
Parent / child hierarchy has little to do with inheritance, and nothing with signal/slot connections. You can make connections between any two classes as long as both inherit from QObject. Their parental relationship is irrelevant for that purpose.