1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
/****************************************************************************
Copyright (C) 2005 - 2011 Filipe AZEVEDO & The Monkey Studio Team
http://monkeystudio.org licensing under the GNU GPL.
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, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
****************************************************************************/
/*!
\file pTabBar.h
\date 2008-01-14T00:27:50
\author Filipe AZEVEDO aka Nox P\@sNox <pasnox@gmail.com>
\brief A extended QTabBar
*/
#ifndef PTABBAR_H
#define PTABBAR_H
#include <QTabBar>
#include <QList>
#include <QUrl>
class QAction;
/*!
\brief A extended QTabBar
\details that allow tab drag and drop, shortcuts, text elided, tabs color, current tab color and close button
*/
class pTabBar : public QTabBar
{
Q_OBJECT
public:
pTabBar( QWidget* parent = 0 );
QColor tabsColor() const;
QColor currentTabColor() const;
bool tabsHaveCloseButton() const;
bool tabsHaveShortcut() const;
bool tabsElided() const;
QAction* toggleTabsHaveCloseButtonAction() const;
QAction* toggleTabsHaveShortcutAction() const;
QAction* toggleTabsElidedAction() const;
public slots:
void resetTabsColor();
void setTabsColor( const QColor& color );
void setCurrentTabColor( const QColor& color );
void setTabsHaveCloseButton( bool buttons );
void setTabsHaveShortcut( bool shortcuts );
void setTabsElided( bool elided );
protected:
virtual void paintEvent( QPaintEvent* event );
virtual void mousePressEvent( QMouseEvent* event );
virtual void mouseReleaseEvent( QMouseEvent* event );
virtual void mouseMoveEvent( QMouseEvent* event );
virtual void dragEnterEvent( QDragEnterEvent* event );
virtual void dropEvent( QDropEvent* event );
virtual void tabInserted( int id );
virtual void tabRemoved( int id );
virtual QRect iconRectForTab( int id );
virtual bool inCloseButtonRect( int id, const QPoint& pos );
void updateTabsNumber( int id = -1 );
QPoint dragStartPosition;
QColor mTabsColor;
QColor mCurrentTabColor;
QAction* aToggleTabsHaveCloseButton;
QAction* aToggleTabsHaveShortcut;
QAction* aToggleTabsElided;
signals:
void leftButtonPressed( int id, const QPoint& pos );
void midButtonPressed( int id, const QPoint& pos );
void rightButtonPressed( int id, const QPoint& pos );
void tabDropped( int from, int to );
void tabsColorChanged( const QColor& color );
void currentTabColorChanged( const QColor& color );
void closeButtonClicked( int id );
void tabsHaveCloseButtonChanged( bool buttons );
void tabsHaveShortcutChanged( bool shortcuts );
void tabsElidedChanged( bool elided );
void urlsDropped( const QList<QUrl>& urls );
};
#endif // PTABBAR_H
|