Quote Originally Posted by Zlatomir View Post
Tell us more about what you didn't manage to achieve, anyway generic answers:
1) to hold the pointers in code you can use a QList<QPushButton*> and do all the work by yourself...
1.1) to organize the buttons in gui you can use a QGroupBox
or
2) also take a look at QTabWidget - i think is a better solution... mainly because it has the native look and feel of such functionality.
Hey, thanks. Yes, I like the QTabWidget suggestion. I am busy implementing that right now.

As for QGroupBox, I had already looked at that one, but it appeared to me that that kind of widget kind of likes to present its controls in a vertical structure, and I was wanting my buttons to be in a horizontal structure...thus me searching for something else that would work.