kdganttabstractrowcontroller.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef KDGANTTABSTRACTROWCONTROLLER_H
00024 #define KDGANTTABSTRACTROWCONTROLLER_H
00025
00026 #include <QPair>
00027 #include "kdganttglobal.h"
00028
00029 class QModelIndex;
00030
00031 namespace KDGantt {
00032 class KDCHART_EXPORT AbstractRowController {
00033 public:
00034 AbstractRowController();
00035 virtual ~AbstractRowController();
00036
00037 virtual int headerHeight() const = 0;
00038 virtual int maximumItemHeight() const = 0;
00039 virtual int totalHeight() const = 0;
00040
00041 virtual bool isRowVisible( const QModelIndex& idx ) const = 0;
00042 virtual bool isRowExpanded( const QModelIndex& idx ) const = 0;
00043 virtual Span rowGeometry( const QModelIndex& idx ) const = 0;
00044
00045
00046 virtual QModelIndex indexAt( int height ) const = 0;
00047 virtual QModelIndex indexAbove( const QModelIndex& idx ) const = 0;
00048 virtual QModelIndex indexBelow( const QModelIndex& idx ) const = 0;
00049 };
00050 }
00051
00052 #endif
00053