goldendict-ng/maintabwidget.hh
Tvangeste 0e9f5f28c2 Hide single tab option is implemented.
By default, it's turned off (== current behavior).
2011-06-23 16:20:32 +02:00

34 lines
778 B
C++

/* This file is (c) 2008-2011 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#ifndef MAINTABWIDGET_HH
#define MAINTABWIDGET_HH
#include <QTabWidget>
#include <QTabBar>
/// An extension of QTabWidget that allows to better control
/// the tabbar visibility.
class MainTabWidget: public QTabWidget
{
Q_OBJECT
Q_PROPERTY(bool hideSingleTab READ isHideSingleTab WRITE setHideSingleTab)
public:
MainTabWidget( QWidget * parent = 0 );
bool isHideSingleTab() const { return hideSingleTab; }
void setHideSingleTab(bool hide);
private:
virtual void tabInserted(int index);
virtual void tabRemoved(int index);
void updateTabBarVisibility();
bool hideSingleTab;
};
#endif // MAINTABWIDGET_HH