Hello All.
I have inherited a huge QT GUI (well, I say huge; looks big to me, but I’ve no idea what counts as “big” in QT circles) and a list of bugs/features to deal with.
One such involves a tabbed window (handled by a QTabWidget object; it looks like tab objects are created and then passed to the QTabWidget via the addTab fuction – looks pretty standard from my reading so far).
There is a request to privilege one particular tab; at the moment, every tab added appears on screen with the other tabs, added to the leftmost available position (i.e. the first tab goes on the left, and the next tab goes next to it, and so on, filling the QTabWidget space towards the right). The request is to have this one particular tab appear at the other end (i.e. on the right).
I see the QTabWidget::TabPosition variable in QTabWidget that dictates where all the tabs go; is there a way to privilege one particular tab and, as described above, put it at the other end?
I have had a root through the forum and the documentation; I’m so new to this it’s difficult even to find the right search terms and I’m still learning the art of the possible in QT.
↧