Hello friends,
I was wondering what the best widget in QT is for acting as an container for a row of QPushButtons?
Any recommendations?

The push buttons will act as tabs for a different "page" in the main window (i.e. a page which will contain a different interface and different controls depending on which tab button is currently selected). My central widget of my main window is a QTextEdit. The idea is to have a different document loaded into that text editor for each tab, i.e. the document corresponding to the interface currently shown, so that a user can switch back and forth from one "page" to another at his leisure, and any changes he makes to the current document loaded into the editor will be saved between switching back and forth.

Thanks.