2008-11-04 00:08:39 +01:00
|
|
|
/*
|
|
|
|
Copyright 2007 Robert Knight <robertknight@gmail.com>
|
|
|
|
Copyright 2008 Marco Martin <notmart@gmail.com>
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library 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
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Own
|
|
|
|
#include "nativetabbar_p.h"
|
|
|
|
|
|
|
|
// Qt
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QStyleOption>
|
|
|
|
#include <QToolButton>
|
2010-01-20 19:38:37 +01:00
|
|
|
#include <QPropertyAnimation>
|
|
|
|
#include <QWeakPointer>
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
#include <QGradient>
|
|
|
|
#include <QLinearGradient>
|
|
|
|
|
2008-11-04 03:39:56 +01:00
|
|
|
// KDE
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <kcolorutils.h>
|
2009-01-25 18:08:54 +01:00
|
|
|
#include <kicon.h>
|
|
|
|
#include <kiconloader.h>
|
2008-11-04 03:39:56 +01:00
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
#include "plasma/plasma.h"
|
|
|
|
#include "plasma/theme.h"
|
|
|
|
#include "plasma/animator.h"
|
|
|
|
#include "plasma/framesvg.h"
|
|
|
|
#include "plasma/paintutils.h"
|
|
|
|
|
2008-11-15 08:08:30 +01:00
|
|
|
//#include "private/style_p.h"
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2009-12-01 01:39:44 +01:00
|
|
|
static const int buttonHMargin = 4;
|
|
|
|
static const int buttonVMargin = 3;
|
|
|
|
static const int iconSpacing = 4;
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
class NativeTabBarPrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NativeTabBarPrivate(NativeTabBar *parent)
|
|
|
|
: q(parent),
|
2009-03-10 23:44:46 +01:00
|
|
|
shape(NativeTabBar::RoundedNorth),
|
2008-11-04 00:08:39 +01:00
|
|
|
backgroundSvg(0),
|
|
|
|
buttonSvg(0),
|
2010-06-28 18:29:37 +02:00
|
|
|
closeIcon("window-close")
|
2008-11-04 00:08:39 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~NativeTabBarPrivate()
|
|
|
|
{
|
|
|
|
delete backgroundSvg;
|
|
|
|
delete buttonSvg;
|
|
|
|
}
|
|
|
|
|
|
|
|
void syncBorders();
|
|
|
|
void storeLastIndex();
|
|
|
|
|
|
|
|
NativeTabBar *q;
|
|
|
|
QTabBar::Shape shape; //used to keep track of shape() changes
|
|
|
|
FrameSvg *backgroundSvg;
|
|
|
|
qreal left, top, right, bottom;
|
|
|
|
FrameSvg *buttonSvg;
|
|
|
|
qreal buttonLeft, buttonTop, buttonRight, buttonBottom;
|
2009-01-25 14:26:53 +01:00
|
|
|
KIcon closeIcon;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2010-01-20 19:38:37 +01:00
|
|
|
QWeakPointer<QPropertyAnimation> anim;
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
QRect currentAnimRect;
|
2009-04-09 08:41:37 +02:00
|
|
|
QRect startAnimRect;
|
2010-05-27 22:30:05 +02:00
|
|
|
QPoint mousePressOffset;
|
2008-11-04 00:08:39 +01:00
|
|
|
int lastIndex[2];
|
|
|
|
qreal animProgress;
|
|
|
|
};
|
|
|
|
|
|
|
|
void NativeTabBarPrivate::syncBorders()
|
|
|
|
{
|
|
|
|
backgroundSvg->getMargins(left, top, right, bottom);
|
|
|
|
buttonSvg->getMargins(buttonLeft, buttonTop, buttonRight, buttonBottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeTabBarPrivate::storeLastIndex()
|
|
|
|
{
|
|
|
|
// if first run
|
|
|
|
if (lastIndex[0] == -1) {
|
|
|
|
lastIndex[1] = q->currentIndex();
|
|
|
|
}
|
|
|
|
lastIndex[0] = lastIndex[1];
|
|
|
|
lastIndex[1] = q->currentIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
NativeTabBar::NativeTabBar(QWidget *parent)
|
2008-11-06 00:28:07 +01:00
|
|
|
: KTabBar(parent),
|
2008-11-04 00:08:39 +01:00
|
|
|
d(new NativeTabBarPrivate(this))
|
|
|
|
{
|
|
|
|
d->backgroundSvg = new Plasma::FrameSvg();
|
|
|
|
d->backgroundSvg->setImagePath("widgets/frame");
|
|
|
|
d->backgroundSvg->setElementPrefix("sunken");
|
|
|
|
|
|
|
|
d->buttonSvg = new Plasma::FrameSvg();
|
|
|
|
d->buttonSvg->setImagePath("widgets/button");
|
|
|
|
d->buttonSvg->setElementPrefix("normal");
|
|
|
|
|
|
|
|
d->syncBorders();
|
|
|
|
|
|
|
|
d->lastIndex[0] = -1;
|
|
|
|
connect(this, SIGNAL(currentChanged(int)), this, SLOT(startAnimation()));
|
|
|
|
|
2009-01-26 14:58:39 +01:00
|
|
|
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
NativeTabBar::~NativeTabBar()
|
|
|
|
{
|
2010-01-20 19:38:37 +01:00
|
|
|
d->anim.clear();
|
2008-11-04 00:08:39 +01:00
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect NativeTabBar::tabRect(int index) const
|
|
|
|
{
|
2008-11-07 19:03:16 +01:00
|
|
|
QRect rect = KTabBar::tabRect(index).translated(d->left, d->top);
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2009-01-26 14:58:39 +01:00
|
|
|
if (isVertical()) {
|
2009-04-09 08:41:37 +02:00
|
|
|
rect.setWidth(width() - d->left - d->right);
|
|
|
|
|
|
|
|
if (index == count() - 1) {
|
|
|
|
rect.adjust(0, 0, 0, -d->bottom);
|
|
|
|
}
|
2009-01-26 14:58:39 +01:00
|
|
|
} else {
|
2009-04-09 08:41:37 +02:00
|
|
|
rect.setHeight(height() - d->top- d->bottom);
|
|
|
|
|
|
|
|
if (index == count() - 1) {
|
|
|
|
rect.adjust(0, 0, -d->right, 0);
|
|
|
|
}
|
2009-01-26 14:58:39 +01:00
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NativeTabBar::lastIndex() const
|
|
|
|
{
|
|
|
|
return d->lastIndex[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize NativeTabBar::tabSizeHint(int index) const
|
|
|
|
{
|
2008-11-07 19:03:16 +01:00
|
|
|
//return KTabBar::tabSizeHint(index);
|
2008-11-04 00:08:39 +01:00
|
|
|
QSize hint = tabSize(index);
|
|
|
|
int minwidth = 0;
|
|
|
|
int minheight = 0;
|
|
|
|
int maxwidth = 0;
|
|
|
|
|
|
|
|
Shape s = shape();
|
|
|
|
switch (s) {
|
|
|
|
case RoundedSouth:
|
|
|
|
case TriangularSouth:
|
|
|
|
case RoundedNorth:
|
|
|
|
case TriangularNorth:
|
|
|
|
if (count() > 0) {
|
|
|
|
for (int i = count() - 1; i >= 0; i--) {
|
|
|
|
minwidth += tabSize(i).width();
|
|
|
|
}
|
|
|
|
|
2008-12-30 19:00:59 +01:00
|
|
|
if (minwidth < width() - d->left - d->right) {
|
|
|
|
hint.rwidth() += (width() - d->left - d->right - minwidth) / count();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RoundedWest:
|
|
|
|
case TriangularWest:
|
|
|
|
case RoundedEast:
|
|
|
|
case TriangularEast:
|
|
|
|
if (count() > 0) {
|
|
|
|
for (int i = count() - 1; i >= 0; i--) {
|
|
|
|
minheight += tabSize(i).height();
|
|
|
|
if (tabSize(i).width() > maxwidth) {
|
|
|
|
maxwidth = tabSize(i).width();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (minheight < height()) {
|
|
|
|
hint.rheight() += (height() - minheight) / count();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return hint;
|
|
|
|
}
|
|
|
|
|
2009-01-26 14:58:39 +01:00
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
QSize NativeTabBar::sizeHint() const
|
|
|
|
{
|
2009-01-26 14:58:39 +01:00
|
|
|
return KTabBar::sizeHint();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeTabBar::paintEvent(QPaintEvent *event)
|
|
|
|
{
|
|
|
|
if (!styleSheet().isNull()) {
|
2008-11-07 19:03:16 +01:00
|
|
|
KTabBar::paintEvent(event);
|
2008-11-04 00:08:39 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QPainter painter(this);
|
|
|
|
//int numTabs = count();
|
|
|
|
//bool ltr = painter.layoutDirection() == Qt::LeftToRight; // Not yet used
|
|
|
|
|
2008-11-27 19:36:42 +01:00
|
|
|
if (drawBase()) {
|
|
|
|
d->backgroundSvg->paintFrame(&painter);
|
|
|
|
}
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
// Drawing Tabborders
|
|
|
|
QRect movingRect;
|
|
|
|
|
2010-06-28 18:08:30 +02:00
|
|
|
if (d->currentAnimRect.isNull() || !d->anim || d->anim.data()->state() != QAbstractAnimation::Running) {
|
2008-11-04 00:08:39 +01:00
|
|
|
movingRect = tabRect(currentIndex());
|
|
|
|
} else {
|
|
|
|
movingRect = d->currentAnimRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
//resizing here because in resizeevent the first time is invalid (still no tabs)
|
|
|
|
d->buttonSvg->resizeFrame(movingRect.size());
|
|
|
|
d->buttonSvg->paintFrame(&painter, movingRect.topLeft());
|
|
|
|
|
|
|
|
QFontMetrics metrics(painter.font());
|
|
|
|
|
2009-09-27 22:23:13 +02:00
|
|
|
|
|
|
|
QRect scrollButtonsRect;
|
|
|
|
foreach (QObject *child, children()) {
|
|
|
|
QToolButton *childWidget = qobject_cast<QToolButton *>(child);
|
|
|
|
if (childWidget) {
|
|
|
|
if (!childWidget->isVisible()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scrollButtonsRect.isValid()) {
|
|
|
|
scrollButtonsRect = scrollButtonsRect.united(childWidget->geometry());
|
|
|
|
} else {
|
|
|
|
scrollButtonsRect = childWidget->geometry();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-09 08:41:37 +02:00
|
|
|
for (int i = 0; i < count(); ++i) {
|
2009-12-01 01:39:44 +01:00
|
|
|
QRect rect = tabRect(i).adjusted(d->buttonLeft + buttonHMargin, d->buttonTop + buttonVMargin,
|
|
|
|
-(d->buttonRight + buttonHMargin), -(d->buttonBottom + buttonVMargin));
|
2008-11-04 00:08:39 +01:00
|
|
|
// draw tab icon
|
|
|
|
QRect iconRect = QRect(rect.x(), rect.y(), iconSize().width(), iconSize().height());
|
|
|
|
|
|
|
|
iconRect.moveCenter(QPoint(iconRect.center().x(), rect.center().y()));
|
|
|
|
tabIcon(i).paint(&painter, iconRect);
|
|
|
|
|
|
|
|
// draw tab text
|
|
|
|
if (i == currentIndex() && d->animProgress == 1) {
|
|
|
|
painter.setPen(Plasma::Theme::defaultTheme()->color(Theme::ButtonTextColor));
|
|
|
|
} else {
|
|
|
|
QColor color(Plasma::Theme::defaultTheme()->color(Theme::TextColor));
|
|
|
|
if (!isTabEnabled(i)) {
|
|
|
|
color.setAlpha(140);
|
|
|
|
}
|
|
|
|
|
|
|
|
painter.setPen(color);
|
|
|
|
}
|
|
|
|
QRect textRect = rect;
|
|
|
|
|
|
|
|
if (!tabIcon(i).isNull()) {
|
2009-12-01 01:39:44 +01:00
|
|
|
textRect.setLeft(iconRect.right() + iconSpacing);
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
2009-01-25 14:26:53 +01:00
|
|
|
|
2009-09-27 22:23:13 +02:00
|
|
|
painter.setFont(Plasma::Theme::defaultTheme()->font(Plasma::Theme::DefaultFont));
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2009-09-27 22:23:13 +02:00
|
|
|
int endTabSpace = contentsRect().right() - scrollButtonsRect.width();
|
|
|
|
if (textRect.left() < endTabSpace) {
|
|
|
|
if (textRect.left() < contentsRect().left() || textRect.right() > endTabSpace) {
|
|
|
|
QPixmap buffer(textRect.size());
|
|
|
|
buffer.fill(Qt::transparent);
|
|
|
|
|
|
|
|
QPainter buffPainter(&buffer);
|
|
|
|
buffPainter.drawText(buffer.rect(), Qt::AlignCenter | Qt::TextHideMnemonic, tabText(i));
|
|
|
|
buffPainter.setCompositionMode(QPainter::CompositionMode_DestinationIn);
|
|
|
|
QLinearGradient gradient(buffer.rect().topLeft(), buffer.rect().topRight());
|
|
|
|
|
|
|
|
if (textRect.left() < contentsRect().left()) {
|
|
|
|
gradient.setColorAt(0, Qt::transparent);
|
2010-02-03 09:41:25 +01:00
|
|
|
gradient.setColorAt(qBound(qreal(0), (-(qreal)textRect.left())/(qreal)textRect.width(), qreal(1)), Qt::transparent);
|
2009-09-27 22:23:13 +02:00
|
|
|
gradient.setColorAt(1, Qt::black);
|
|
|
|
} else {
|
|
|
|
gradient.setColorAt(0, Qt::black);
|
2010-02-03 09:41:25 +01:00
|
|
|
gradient.setColorAt(qBound(qreal(0), 1 - (qreal)(textRect.right() - endTabSpace)/(qreal)textRect.width(), qreal(1)), Qt::transparent);
|
2009-09-27 22:23:13 +02:00
|
|
|
gradient.setColorAt(1, Qt::transparent);
|
|
|
|
}
|
2009-01-25 14:26:53 +01:00
|
|
|
|
2009-09-27 22:23:13 +02:00
|
|
|
buffPainter.setBrush(gradient);
|
|
|
|
buffPainter.setPen(Qt::NoPen);
|
|
|
|
buffPainter.drawRect(buffer.rect());
|
|
|
|
buffPainter.end();
|
2008-11-04 00:08:39 +01:00
|
|
|
|
2009-09-27 22:23:13 +02:00
|
|
|
painter.drawPixmap(textRect, buffer, buffer.rect());
|
2008-11-04 00:08:39 +01:00
|
|
|
} else {
|
2009-09-27 22:23:13 +02:00
|
|
|
painter.drawText(textRect, Qt::AlignCenter | Qt::TextHideMnemonic, tabText(i));
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
}
|
2009-09-27 22:23:13 +02:00
|
|
|
|
2009-10-13 14:40:13 +02:00
|
|
|
if (tabsClosable()) {
|
2009-09-27 22:23:13 +02:00
|
|
|
d->closeIcon.paint(&painter, QRect(closeButtonPos(i), QSize(KIconLoader::SizeSmall, KIconLoader::SizeSmall)) );
|
|
|
|
}
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
2009-09-27 22:23:13 +02:00
|
|
|
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
if (scrollButtonsRect.isValid()) {
|
|
|
|
scrollButtonsRect.adjust(2, 4, -2, -4);
|
|
|
|
painter.save();
|
|
|
|
|
|
|
|
QColor background(Plasma::Theme::defaultTheme()->color(Theme::BackgroundColor));
|
|
|
|
background.setAlphaF(0.75);
|
|
|
|
|
|
|
|
painter.setRenderHint(QPainter::Antialiasing);
|
|
|
|
painter.fillPath(PaintUtils::roundedRectangle(scrollButtonsRect, 5), background);
|
|
|
|
painter.restore();
|
|
|
|
|
|
|
|
QStyleOption so;
|
|
|
|
so.initFrom(this);
|
|
|
|
so.palette.setColor(QPalette::ButtonText,
|
|
|
|
Plasma::Theme::defaultTheme()->color(Theme::TextColor));
|
|
|
|
|
|
|
|
so.rect = scrollButtonsRect.adjusted(0, 0, -scrollButtonsRect.width() / 2, 0);
|
|
|
|
style()->drawPrimitive(QStyle::PE_IndicatorArrowLeft, &so, &painter, this);
|
|
|
|
|
|
|
|
so.rect = scrollButtonsRect.adjusted(scrollButtonsRect.width() / 2, 0, 0, 0);
|
|
|
|
style()->drawPrimitive(QStyle::PE_IndicatorArrowRight, &so, &painter, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeTabBar::resizeEvent(QResizeEvent *event)
|
|
|
|
{
|
2008-11-07 19:03:16 +01:00
|
|
|
KTabBar::resizeEvent(event);
|
2008-11-04 00:08:39 +01:00
|
|
|
d->currentAnimRect = tabRect(currentIndex());
|
|
|
|
d->backgroundSvg->resizeFrame(size());
|
2009-04-09 08:41:37 +02:00
|
|
|
d->syncBorders();
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeTabBar::tabInserted(int index)
|
|
|
|
{
|
2008-11-07 19:03:16 +01:00
|
|
|
KTabBar::tabInserted(index);
|
2008-11-04 00:08:39 +01:00
|
|
|
emit sizeHintChanged();
|
2010-06-28 15:00:54 +02:00
|
|
|
|
|
|
|
d->currentAnimRect = tabRect(currentIndex());
|
|
|
|
d->backgroundSvg->resizeFrame(size());
|
|
|
|
d->syncBorders();
|
|
|
|
|
|
|
|
update();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeTabBar::tabRemoved(int index)
|
|
|
|
{
|
2008-11-07 19:03:16 +01:00
|
|
|
KTabBar::tabRemoved(index);
|
2008-11-04 00:08:39 +01:00
|
|
|
emit sizeHintChanged();
|
2010-06-28 15:00:54 +02:00
|
|
|
|
|
|
|
d->currentAnimRect = tabRect(currentIndex());
|
|
|
|
d->backgroundSvg->resizeFrame(size());
|
|
|
|
d->syncBorders();
|
|
|
|
|
|
|
|
update();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeTabBar::tabLayoutChange()
|
|
|
|
{
|
2008-11-07 19:03:16 +01:00
|
|
|
KTabBar::tabLayoutChange();
|
2008-11-04 00:08:39 +01:00
|
|
|
|
|
|
|
if (shape() != d->shape) {
|
|
|
|
d->shape = shape();
|
|
|
|
emit shapeChanged(d->shape);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeTabBar::startAnimation()
|
|
|
|
{
|
|
|
|
d->storeLastIndex();
|
|
|
|
|
2010-01-20 19:38:37 +01:00
|
|
|
QPropertyAnimation *anim = d->anim.data();
|
|
|
|
if (anim) {
|
|
|
|
anim->stop();
|
|
|
|
d->anim.clear();
|
2008-11-04 00:08:39 +01:00
|
|
|
}
|
|
|
|
|
2010-01-20 19:38:37 +01:00
|
|
|
anim = new QPropertyAnimation(this, "onValueChanged", this);
|
|
|
|
d->anim = anim;
|
|
|
|
anim->setDuration(150);
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
QRect rect = tabRect(currentIndex());
|
2009-04-09 08:41:37 +02:00
|
|
|
QRect lastRect = d->startAnimRect.isNull() ? tabRect(lastIndex())
|
|
|
|
: d->startAnimRect;
|
2010-01-20 19:38:37 +01:00
|
|
|
int x = isHorizontal() ? (int)(lastRect.x() - (lastRect.x() - rect.x())) : rect.x();
|
|
|
|
int y = isHorizontal() ? rect.y() : (int)(lastRect.y() - (lastRect.y() - rect.y()));
|
|
|
|
QSizeF sz = lastRect.size() - (lastRect.size() - rect.size());
|
2008-11-04 00:08:39 +01:00
|
|
|
d->currentAnimRect = QRect(x, y, (int)(sz.width()), (int)(sz.height()));
|
2010-01-20 19:38:37 +01:00
|
|
|
|
|
|
|
anim->setStartValue(lastRect);
|
|
|
|
anim->setEndValue(d->currentAnimRect);
|
|
|
|
anim->start(QAbstractAnimation::DeleteWhenStopped);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeTabBar::setOnValueChanged(QRectF value)
|
|
|
|
{
|
|
|
|
if (value == d->anim.data()->endValue()) {
|
|
|
|
d->animProgress = 1;
|
|
|
|
animationFinished();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d->currentAnimRect = value.toRect();
|
2008-11-04 00:08:39 +01:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2010-01-20 19:38:37 +01:00
|
|
|
QRectF NativeTabBar::onValueChanged() const
|
|
|
|
{
|
|
|
|
return d->currentAnimRect;
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
void NativeTabBar::animationFinished()
|
|
|
|
{
|
2009-04-09 08:41:37 +02:00
|
|
|
d->startAnimRect = QRect();
|
2008-11-04 00:08:39 +01:00
|
|
|
d->currentAnimRect = QRect();
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NativeTabBar::isVertical() const
|
|
|
|
{
|
|
|
|
Shape s = shape();
|
|
|
|
if(s == RoundedWest ||
|
|
|
|
s == RoundedEast ||
|
|
|
|
s == TriangularWest ||
|
|
|
|
s == TriangularEast) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NativeTabBar::isHorizontal() const
|
|
|
|
{
|
|
|
|
return !isVertical();
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize NativeTabBar::tabSize(int index) const
|
|
|
|
{
|
|
|
|
QSize hint;
|
|
|
|
const QFontMetrics metrics(QApplication::font());
|
|
|
|
const QSize textSize = metrics.size(Qt::TextHideMnemonic, tabText(index));
|
2009-12-01 01:39:44 +01:00
|
|
|
hint.rwidth() = textSize.width() + iconSpacing + iconSize().width() + buttonHMargin * 2;
|
|
|
|
hint.rheight() = qMax(iconSize().height(), textSize.height()) + buttonVMargin * 2;
|
2008-11-04 00:08:39 +01:00
|
|
|
hint.rwidth() += d->buttonLeft + d->buttonRight;
|
|
|
|
hint.rheight() += d->buttonTop + d->buttonBottom;
|
2008-11-18 16:27:04 +01:00
|
|
|
|
|
|
|
if (isVertical()) {
|
2008-12-30 17:41:15 +01:00
|
|
|
hint.rwidth() = qMax(hint.width(), int(minimumWidth() - d->left - d->right));
|
2008-11-18 16:27:04 +01:00
|
|
|
} else {
|
2008-12-30 17:41:15 +01:00
|
|
|
hint.rheight() = qMax(hint.height(), int(minimumHeight() - d->top - d->bottom));
|
2008-11-18 16:27:04 +01:00
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
return hint;
|
|
|
|
}
|
|
|
|
|
2009-01-25 14:26:53 +01:00
|
|
|
//Unfortunately copied from KTabBar
|
|
|
|
QPoint NativeTabBar::closeButtonPos( int tabIndex ) const
|
|
|
|
{
|
|
|
|
QPoint buttonPos;
|
|
|
|
if ( tabIndex < 0 ) {
|
|
|
|
return buttonPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
int availableHeight = height();
|
|
|
|
if ( tabIndex == currentIndex() ) {
|
|
|
|
QStyleOption option;
|
|
|
|
option.initFrom(this);
|
|
|
|
availableHeight -= style()->pixelMetric( QStyle::PM_TabBarTabShiftVertical, &option, this );
|
|
|
|
}
|
|
|
|
|
|
|
|
const QRect tabBounds = tabRect( tabIndex );
|
|
|
|
const int xInc = (height() - KIconLoader::SizeSmall) / 2;
|
|
|
|
|
|
|
|
if ( layoutDirection() == Qt::RightToLeft ) {
|
|
|
|
buttonPos = tabBounds.topLeft();
|
|
|
|
buttonPos.rx() += xInc;
|
|
|
|
} else {
|
|
|
|
buttonPos = tabBounds.topRight();
|
|
|
|
buttonPos.rx() -= KIconLoader::SizeSmall + xInc;
|
|
|
|
}
|
|
|
|
buttonPos.ry() += (availableHeight - KIconLoader::SizeSmall) / 2;
|
|
|
|
|
|
|
|
return buttonPos;
|
|
|
|
}
|
|
|
|
|
2009-04-09 08:41:37 +02:00
|
|
|
void NativeTabBar::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (d->currentAnimRect.isNull()) {
|
|
|
|
QRect rect = tabRect(currentIndex());
|
|
|
|
|
|
|
|
if (rect.contains(event->pos())) {
|
2010-05-27 22:30:05 +02:00
|
|
|
d->mousePressOffset = event->pos();
|
2009-04-09 08:41:37 +02:00
|
|
|
event->accept();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
KTabBar::mousePressEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeTabBar::mouseMoveEvent(QMouseEvent *event)
|
|
|
|
{
|
2010-05-27 22:30:05 +02:00
|
|
|
if (d->mousePressOffset != QPoint()) {
|
2009-04-09 08:41:37 +02:00
|
|
|
d->currentAnimRect = tabRect(currentIndex());
|
|
|
|
|
2010-05-27 22:30:05 +02:00
|
|
|
if (isVertical()) {
|
|
|
|
int pos = qBound(0, d->currentAnimRect.top() + (event->pos().y() - d->mousePressOffset.y()),
|
|
|
|
height() - d->currentAnimRect.height());
|
|
|
|
d->currentAnimRect.moveTop(pos);
|
|
|
|
} else {
|
|
|
|
int pos = qBound(0, d->currentAnimRect.left() + (event->pos().x() - d->mousePressOffset.x()),
|
|
|
|
width() - d->currentAnimRect.width());
|
|
|
|
d->currentAnimRect.moveLeft(pos);
|
|
|
|
}
|
2009-04-09 08:41:37 +02:00
|
|
|
update();
|
|
|
|
} else {
|
|
|
|
KTabBar::mouseMoveEvent(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeTabBar::mouseReleaseEvent(QMouseEvent *event)
|
|
|
|
{
|
2010-05-27 22:30:05 +02:00
|
|
|
if (d->mousePressOffset != QPoint()) {
|
|
|
|
int index = -1;
|
|
|
|
|
|
|
|
if (isVertical()) {
|
|
|
|
bool top = event->pos().y() - d->mousePressOffset.y() < 0;
|
|
|
|
index = tabAt(QPoint(1, top ? d->currentAnimRect.top() : d->currentAnimRect.bottom()));
|
|
|
|
} else {
|
|
|
|
bool left = event->pos().x() - d->mousePressOffset.x() < 0;
|
|
|
|
index = tabAt(QPoint(left ? d->currentAnimRect.left() : d->currentAnimRect.right(), 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
d->mousePressOffset = QPoint();
|
2009-04-09 08:41:37 +02:00
|
|
|
|
|
|
|
if (index != currentIndex() && isTabEnabled(index)) {
|
|
|
|
d->startAnimRect = d->currentAnimRect;
|
|
|
|
setCurrentIndex(index);
|
|
|
|
} else {
|
|
|
|
d->currentAnimRect = QRect();
|
|
|
|
}
|
|
|
|
|
|
|
|
update();
|
|
|
|
} else {
|
|
|
|
KTabBar::mouseReleaseEvent(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-13 12:43:58 +01:00
|
|
|
void NativeTabBar::wheelEvent(QWheelEvent *event)
|
|
|
|
{
|
|
|
|
if (underMouse()) {
|
|
|
|
//Cycle tabs with the circular array tecnique
|
|
|
|
if (event->delta() < 0) {
|
|
|
|
int index = currentIndex();
|
|
|
|
//search for an enabled tab
|
|
|
|
for (int i = 0; i < count()-1; ++i) {
|
|
|
|
index = (index + 1) % count();
|
|
|
|
if (isTabEnabled(index)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setCurrentIndex(index);
|
|
|
|
} else {
|
|
|
|
int index = currentIndex();
|
|
|
|
for (int i = 0; i < count()-1; ++i) {
|
|
|
|
index = (count() + index -1) % count();
|
|
|
|
if (isTabEnabled(index)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setCurrentIndex(index);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
QTabBar::wheelEvent(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-04 00:08:39 +01:00
|
|
|
} // namespace Plasma
|
|
|
|
|
|
|
|
#include "nativetabbar_p.moc"
|
|
|
|
|