I have array of buttons
QPushButton* button_download[90];
and for each button I set ToolTip
button_download[button_download_counter]->setToolTip(get_r.getTrackTitle());
and I need to get this ToolTip or button index after click on it.
In slot you could do something like this:
void buttonClicked() { QPushButton *b = qobject_cast<QPushButton *>(sender()); QString tooltip = b->tooltip(); }
This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
about » faq »
tagged
asked
4 months ago
viewed
66 times
active