I'm newb to Qt and got stuck in a signal/slot mechanism. I have a toolbar with a number of tool buttons, each associated with some widget. The task is to show appropriate widget when tool button is clicked. I want to write a single slot that will handle the associations, but I can't figure out how to distinguish what button triggered a signal. It seems that clicked and toggled signals of QToolButton accept only no-argument slots and store no information about their emitter. I can subclass QtoolButton and raise a CLR event with information about the event sender on each clicked or toggled signal emission, but there should be simplier way to do what I want. Can you help me?
|
feedback
|
|
In your slot, you should be able to call the function A slightly better way would be to provide a numbering mechanism for the buttons, and use a This is in C++ (which I'm more familiar with):
Then:
| |||
|
feedback
|