Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
⚠️ Forum Maintenance: Feb 6th, 8am - 14pm (UTC+2)
how can I get all QAction that I’ve created by Qt designer programmatically?
@ QList<QAction *> myActions = QWidget->findChildren<QAction *>(); @
Just replace QWidget with your ui object/ mainWindow widget or else.