Hi
I’ve a very simple question about the buttons. I’ve a component containing several button. I believe that I have to make my component inherit from button listener and override the buttonClicked() method but I’ve just try to do:
buttonClicked(Button *button)
{
std::cout << "coucou" << std::endl;
}
And it does not work.
Even if it is really what I’ve to do, I don’t know how to apply different method for this or that component.
I hope to be understandable.