You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qterminal-packaging/src/tabbar.cpp

69 lines
2.6 KiB

/***************************************************************************
* Copyright (C) 2017 by Nathan Osman *
* nathan@quickmediasolutions.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
#include "tabbar.h"
TabBar::TabBar(QWidget *parent)
: QTabBar(parent),
mLimitWidth(false),
mLimitWidthValue(0)
{
// To make the selected tab text bold, first give a bold font to the tabbar
// for QStyle::sizeFromContents(QStyle::CT_TabBarTab, ...) to make room
// for the bold text, and then, set the non-selected tab text to normal.
QFont f = font();
f.setBold(true);
setFont(f);
setStyleSheet("QTabBar::tab:!selected { font-weight: normal; }");
}
void TabBar::setLimitWidth(bool limitWidth)
{
mLimitWidth = limitWidth;
}
void TabBar::setLimitWidthValue(int value)
{
mLimitWidthValue = value;
}
void TabBar::updateWidth()
{
// This seems to be the only way to trigger an update
setIconSize(iconSize());
setElideMode(Qt::ElideMiddle);
}
QSize TabBar::tabSizeHint(int index) const
{
QSize size = QTabBar::tabSizeHint(index);
// If the width is limited, use that for the width hint
if (mLimitWidth) {
if (shape() == QTabBar::RoundedEast || shape() == QTabBar::TriangularEast
|| shape() == QTabBar::RoundedWest || shape() == QTabBar::TriangularWest) {
size.setHeight(mLimitWidthValue);
}
else {
size.setWidth(mLimitWidthValue);
}
}
return size;
}