plasma-framework/private/nativetabbar_p.h
Marco Martin 7c9a500b3d move the wheelEvent to nativeTabbar, it seems it works only there with
qt 4.5, while with 4.4 did work only in the proxywidget 

svn path=/trunk/KDE/kdelibs/; revision=925477
2009-02-13 11:43:58 +00:00

80 lines
2.0 KiB
C++

/*
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.
*/
#ifndef NATIVETABBAR_H
#define NATIVETABBAR_H
#include <ktabbar.h>
namespace Plasma
{
class NativeTabBarPrivate;
class NativeTabBar : public KTabBar
{
Q_OBJECT
public:
NativeTabBar(QWidget *parent = 0);
~NativeTabBar();
QRect tabRect(int index) const;
QSize tabSizeHint(int index) const;
QSize sizeHint() const;
protected:
int lastIndex() const;
// reimplemented from QTabBar
virtual void paintEvent(QPaintEvent *event);
virtual void resizeEvent(QResizeEvent *event);
void tabInserted(int index);
void tabRemoved(int index);
void tabLayoutChange();
bool isHorizontal() const;
bool isVertical() const;
void wheelEvent(QWheelEvent *event);
protected slots:
void animationFinished();
void startAnimation();
void onValueChanged(qreal val);
Q_SIGNALS:
void sizeHintChanged();
void shapeChanged(QTabBar::Shape shape);
private:
QSize tabSize(int index) const;
QPoint closeButtonPos( int tabIndex ) const;
NativeTabBarPrivate * const d;
friend class NativeTabBarPrivate;
Q_PRIVATE_SLOT(d, void syncBorders())
};
}
#endif // TABBAR_H