Actions
Bug #3411
closedWTabWidget expose setOverflow of implementing WContainerWidget?
Start date:
07/01/2014
Due date:
% Done:
0%
Estimated time:
Description
Hi,
I have a WTabWidget which should hide its tabs if the width gets to small for all tabs. Currently I have implemented the following workaround by subclassing WTabWidget as follows:
class ToolBarTab : public WTabWidget
{
public:
ToolBarTab()
: WTabWidget()
{
dynamic_cast<WContainerWidget*>(implementation())->setOverflow(WContainerWidget::OverflowHidden, Vertical);
}
};
Regards,
Stefan
Updated by Koen Deforche about 10 years ago
- Status changed from New to InProgress
- Assignee set to Korneel Dumon
- Target version set to 3.3.4
Add WTabWidget::setOverflow()
Updated by Koen Deforche about 10 years ago
- Assignee changed from Korneel Dumon to Pavel Sopher
Updated by Koen Deforche over 9 years ago
- Assignee changed from Pavel Sopher to Benoit Daccache
Updated by Benoit Daccache over 9 years ago
- Status changed from InProgress to Resolved
Updated by Koen Deforche over 9 years ago
- Status changed from Resolved to Closed
Actions