how to position the popup on QToolButton
-
I want to position the PopUp menu when it appears from the bottom to the right, is that possible?

Write your own
QToolButtonsubclass and handle the popup menu yourself (maybe with your custom menu). -
As @Pl45m4 already said, subclass QToolButton. Most likely you'd like to override the showMenu slot and handle everything yourself in there.