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 KDGANTTPROXYMODEL_H
00026 #define KDGANTTPROXYMODEL_H
00027
00028 #include "kdganttforwardingproxymodel.h"
00029
00030 namespace KDGantt {
00031 class KDCHART_EXPORT ProxyModel : public ForwardingProxyModel {
00032 Q_OBJECT
00033 Q_DISABLE_COPY(ProxyModel)
00034 KDGANTT_DECLARE_PRIVATE_BASE_POLYMORPHIC( ProxyModel )
00035 public:
00036 explicit ProxyModel( QObject* parent=0 );
00037 virtual ~ProxyModel();
00038
00039 void setColumn( int ganttrole, int col );
00040 void setRole( int ganttrole, int role );
00041
00042 int column( int ganttrole ) const;
00043 int role( int ganttrole ) const;
00044
00045 #if 0
00046 void setCalendarMode( bool enable );
00047 bool calendarMode() const;
00048 #endif
00049
00050 QModelIndex mapFromSource( const QModelIndex& idx) const;
00051 QModelIndex mapToSource( const QModelIndex& proxyIdx ) const;
00052
00053 int rowCount( const QModelIndex& idx ) const;
00054 int columnCount( const QModelIndex& idx ) const;
00055
00056 QVariant data( const QModelIndex& idx, int role = Qt::DisplayRole ) const;
00057 bool setData( const QModelIndex& idx, const QVariant& value, int role=Qt::EditRole );
00058 };
00059 }
00060
00061 #endif
00062