paint close buttons if asked to

svn path=/trunk/KDE/kdelibs/; revision=916527
This commit is contained in:
Marco Martin 2009-01-25 13:26:53 +00:00
parent 82fb975523
commit e720a24966
2 changed files with 40 additions and 0 deletions

View File

@ -35,6 +35,8 @@
// KDE
#include <kdebug.h>
#include <kcolorutils.h>
#include <KIcon>
#include <KIconLoader>
#include "plasma/plasma.h"
#include "plasma/theme.h"
@ -54,6 +56,7 @@ public:
: q(parent),
backgroundSvg(0),
buttonSvg(0),
closeIcon("window-close"),
animationId(-1)
{
}
@ -73,6 +76,7 @@ public:
qreal left, top, right, bottom;
FrameSvg *buttonSvg;
qreal buttonLeft, buttonTop, buttonRight, buttonBottom;
KIcon closeIcon;
int animationId;
@ -259,8 +263,13 @@ void NativeTabBar::paintEvent(QPaintEvent *event)
painter.setFont(Plasma::Theme::defaultTheme()->font(Plasma::Theme::DefaultFont));
painter.drawText(textRect, Qt::AlignCenter | Qt::TextHideMnemonic, tabText(i));
if (isCloseButtonEnabled()) {
d->closeIcon.paint(&painter, QRect(closeButtonPos(i), QSize(KIconLoader::SizeSmall, KIconLoader::SizeSmall)) );
}
}
QRect scrollButtonsRect;
foreach (QObject *child, children()) {
QToolButton *childWidget = qobject_cast<QToolButton *>(child);
@ -398,6 +407,36 @@ QSize NativeTabBar::tabSize(int index) const
return hint;
}
//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;
}
} // namespace Plasma
#include "nativetabbar_p.moc"

View File

@ -64,6 +64,7 @@ Q_SIGNALS:
private:
QSize tabSize(int index) const;
QPoint closeButtonPos( int tabIndex ) const;
NativeTabBarPrivate * const d;