00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef KDGANTTLEGEND_H
00026 #define KDGANTTLEGEND_H
00027
00028 #include <QAbstractItemView>
00029
00030 #include "kdganttglobal.h"
00031 #include "kdganttstyleoptionganttitem.h"
00032
00033 namespace KDGantt
00034 {
00035 class KDCHART_EXPORT Legend : public QAbstractItemView
00036 {
00037 Q_OBJECT
00038 KDGANTT_DECLARE_PRIVATE_BASE_POLYMORPHIC( Legend )
00039 public:
00040 explicit Legend( QWidget* parent = 0 );
00041 virtual ~Legend();
00042
00043 QModelIndex indexAt( const QPoint& point ) const;
00044 QRect visualRect( const QModelIndex& index ) const;
00045
00046 void scrollTo( const QModelIndex&, ScrollHint = EnsureVisible ){}
00047
00048 QSize sizeHint() const;
00049 QSize minimumSizeHint() const;
00050
00051 void setModel( QAbstractItemModel* model );
00052
00053 protected:
00054 virtual QRect drawItem( QPainter* painter, const QModelIndex& index, const QPoint& pos = QPoint() ) const;
00055 virtual QSize measureItem( const QModelIndex& index, bool recursive = true ) const;
00056 virtual StyleOptionGanttItem getStyleOption( const QModelIndex& index ) const;
00057
00058 void paintEvent( QPaintEvent* event );
00059
00060 int horizontalOffset() const { return 0; }
00061 bool isIndexHidden( const QModelIndex& ) const { return false; }
00062 QModelIndex moveCursor( CursorAction, Qt::KeyboardModifiers ) { return QModelIndex(); }
00063 void setSelection( const QRect&, QItemSelectionModel::SelectionFlags ){}
00064 int verticalOffset() const { return 0; }
00065 QRegion visualRegionForSelection( const QItemSelection& ) const { return QRegion(); }
00066
00067 protected Q_SLOTS:
00068 virtual void modelDataChanged();
00069 };
00070 }
00071
00072 #endif