Make QTabWidget::tabBar() public.
This is very much useful to be able to write things like myTabWidget->tabBar()->setSelectionBehaviorOnRemove( QTabBar::SelectPreviousTab ); without subclassing QTabWidget. Change-Id: Ic7c42709ea1086631d37f90f184b058c4b6e9601 Merge-request: 3 Reviewed-by: Olivier Goffart <olivier.goffart@nokia.com> Reviewed-on: http://codereview.qt.nokia.com/2172 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
This commit is contained in:
parent
c0589cde3d
commit
b7064513e2
@ -148,6 +148,8 @@ public:
|
||||
|
||||
void clear();
|
||||
|
||||
QTabBar* tabBar() const;
|
||||
|
||||
public Q_SLOTS:
|
||||
void setCurrentIndex(int index);
|
||||
void setCurrentWidget(QWidget *widget);
|
||||
@ -165,7 +167,6 @@ protected:
|
||||
void keyPressEvent(QKeyEvent *);
|
||||
void paintEvent(QPaintEvent *);
|
||||
void setTabBar(QTabBar *);
|
||||
QTabBar* tabBar() const;
|
||||
void changeEvent(QEvent *);
|
||||
bool event(QEvent *);
|
||||
void initStyleOption(QStyleOptionTabWidgetFrame *option) const;
|
||||
|
Loading…
Reference in New Issue
Block a user