Public Member Functions | Protected Slots

KDGantt::ProxyModel Class Reference

#include <kdganttproxymodel.h>

Inheritance diagram for KDGantt::ProxyModel:
Inheritance graph
[legend]
Collaboration diagram for KDGantt::ProxyModel:
Collaboration graph
[legend]

List of all members.

Public Member Functions

int column (int ganttrole) const
int columnCount (const QModelIndex &idx) const
QVariant data (const QModelIndex &idx, int role=Qt::DisplayRole) const
bool dropMimeData (const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)
QModelIndex index (int row, int column, const QModelIndex &parent=QModelIndex()) const
QModelIndex mapFromSource (const QModelIndex &idx) const
QModelIndex mapToSource (const QModelIndex &proxyIdx) const
QMimeData * mimeData (const QModelIndexList &indexes) const
QStringList mimeTypes () const
QModelIndex parent (const QModelIndex &idx) const
 ProxyModel (QObject *parent=0)
int role (int ganttrole) const
int rowCount (const QModelIndex &idx) const
void setColumn (int ganttrole, int col)
bool setData (const QModelIndex &idx, const QVariant &value, int role=Qt::EditRole)
void setRole (int ganttrole, int role)
void setSourceModel (QAbstractItemModel *model)
Qt::DropActions supportedDropActions () const
virtual ~ProxyModel ()

Protected Slots

virtual void sourceColumnsAboutToBeInserted (const QModelIndex &idx, int start, int end)
virtual void sourceColumnsAboutToBeRemoved (const QModelIndex &idx, int start, int end)
virtual void sourceColumnsInserted (const QModelIndex &idx, int start, int end)
virtual void sourceColumnsRemoved (const QModelIndex &idx, int start, int end)
virtual void sourceDataChanged (const QModelIndex &from, const QModelIndex &to)
virtual void sourceLayoutAboutToBeChanged ()
virtual void sourceLayoutChanged ()
virtual void sourceModelAboutToBeReset ()
virtual void sourceModelReset ()
virtual void sourceRowsAboutToBeInserted (const QModelIndex &idx, int start, int end)
virtual void sourceRowsAboutToBeRemoved (const QModelIndex &, int start, int end)
virtual void sourceRowsInserted (const QModelIndex &idx, int start, int end)
virtual void sourceRowsRemoved (const QModelIndex &, int start, int end)

Detailed Description

Definition at line 29 of file kdganttproxymodel.h.


Constructor & Destructor Documentation

ProxyModel::ProxyModel ( QObject parent = 0  )  [explicit]

Definition at line 53 of file kdganttproxymodel.cpp.

ProxyModel::~ProxyModel (  )  [virtual]

Definition at line 59 of file kdganttproxymodel.cpp.


Member Function Documentation

int ProxyModel::column ( int  ganttrole  )  const

Definition at line 112 of file kdganttproxymodel.cpp.

References d.

int ProxyModel::columnCount ( const QModelIndex &  idx  )  const
See also:
QAbstractItemModel::columnCount

Reimplemented from KDGantt::ForwardingProxyModel.

Definition at line 148 of file kdganttproxymodel.cpp.

References mapToSource().

QVariant ProxyModel::data ( const QModelIndex &  idx,
int  role = Qt::DisplayRole 
) const

Definition at line 153 of file kdganttproxymodel.cpp.

References d, KDGantt::ForwardingProxyModel::index(), and mapToSource().

bool ForwardingProxyModel::dropMimeData ( const QMimeData *  data,
Qt::DropAction  action,
int  row,
int  column,
const QModelIndex &  parent 
) [inherited]
QModelIndex ForwardingProxyModel::index ( int  row,
int  column,
const QModelIndex &  parent = QModelIndex() 
) const [inherited]
QModelIndex ProxyModel::mapFromSource ( const QModelIndex &  sourceIndex  )  const

Converts indexes in the source model to indexes in the proxy model

Reimplemented from KDGantt::ForwardingProxyModel.

Definition at line 70 of file kdganttproxymodel.cpp.

QModelIndex ProxyModel::mapToSource ( const QModelIndex &  proxyIndex  )  const

Converts indexes in the proxy model to indexes in the source model

Reimplemented from KDGantt::ForwardingProxyModel.

Definition at line 92 of file kdganttproxymodel.cpp.

Referenced by columnCount(), data(), and setData().

QMimeData * ForwardingProxyModel::mimeData ( const QModelIndexList &  indexes  )  const [inherited]
QStringList ForwardingProxyModel::mimeTypes (  )  const [inherited]

Definition at line 306 of file kdganttforwardingproxymodel.cpp.

QModelIndex ForwardingProxyModel::parent ( const QModelIndex &  idx  )  const [inherited]
See also:
QAbstractItemModel::parent

Definition at line 266 of file kdganttforwardingproxymodel.cpp.

References KDGantt::ForwardingProxyModel::mapFromSource(), and KDGantt::ForwardingProxyModel::mapToSource().

int ProxyModel::role ( int  ganttrole  )  const

Definition at line 122 of file kdganttproxymodel.cpp.

References d.

int ProxyModel::rowCount ( const QModelIndex &  idx  )  const
See also:
QAbstractItemModel::rowCount

Reimplemented from KDGantt::ForwardingProxyModel.

Definition at line 142 of file kdganttproxymodel.cpp.

void ProxyModel::setColumn ( int  ganttrole,
int  col 
)

Definition at line 107 of file kdganttproxymodel.cpp.

References d.

bool ProxyModel::setData ( const QModelIndex &  index,
const QVariant &  value,
int  role = Qt::EditRole 
)
See also:
QAbstractItemModel::setData

Reimplemented from KDGantt::ForwardingProxyModel.

Definition at line 172 of file kdganttproxymodel.cpp.

References d, and mapToSource().

void ProxyModel::setRole ( int  ganttrole,
int  role 
)

Definition at line 117 of file kdganttproxymodel.cpp.

References d.

void ForwardingProxyModel::setSourceModel ( QAbstractItemModel *  model  )  [inherited]
void ForwardingProxyModel::sourceColumnsAboutToBeInserted ( const QModelIndex &  parentIdx,
int  start,
int  end 
) [protected, virtual, slot, inherited]

Called just before columns are inserted into the source model.

See also:
QAbstractItemModel::columnsAboutToBeInserted()

Reimplemented in KDGantt::SummaryHandlingProxyModel.

Definition at line 170 of file kdganttforwardingproxymodel.cpp.

References KDGantt::ForwardingProxyModel::mapFromSource().

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceColumnsAboutToBeRemoved ( const QModelIndex &  parentIdx,
int  start,
int  end 
) [protected, virtual, slot, inherited]

Called just before columns are removed from the source model.

See also:
QAbstractItemModel::columnsAboutToBeRemoved()

Reimplemented in KDGantt::SummaryHandlingProxyModel.

Definition at line 191 of file kdganttforwardingproxymodel.cpp.

References KDGantt::ForwardingProxyModel::mapFromSource().

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceColumnsInserted ( const QModelIndex &  parentIdx,
int  start,
int  end 
) [protected, virtual, slot, inherited]

Called after columns have been inserted into the source model.

See also:
QAbstractItemModel::columnsInserted()

Definition at line 180 of file kdganttforwardingproxymodel.cpp.

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceColumnsRemoved ( const QModelIndex &  parentIdx,
int  start,
int  end 
) [protected, virtual, slot, inherited]

Called after columns have been removed from the source model.

See also:
QAbstractItemModel::columnsRemoved()

Definition at line 201 of file kdganttforwardingproxymodel.cpp.

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceDataChanged ( const QModelIndex &  from,
const QModelIndex &  to 
) [protected, virtual, slot, inherited]

Called when the data in an existing item in the source model changes.

See also:
QAbstractItemModel::dataChanged()

Reimplemented in KDGantt::SummaryHandlingProxyModel.

Definition at line 161 of file kdganttforwardingproxymodel.cpp.

References KDGantt::ForwardingProxyModel::mapFromSource().

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceLayoutAboutToBeChanged (  )  [protected, virtual, slot, inherited]

Called just before the layout of the source model is changed.

See also:
QAbstractItemModel::layoutAboutToBeChanged()

Definition at line 143 of file kdganttforwardingproxymodel.cpp.

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceLayoutChanged (  )  [protected, virtual, slot, inherited]

Called when the layout of the source model has changed.

See also:
QAbstractItemModel::layoutChanged()

Reimplemented in KDGantt::SummaryHandlingProxyModel.

Definition at line 152 of file kdganttforwardingproxymodel.cpp.

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceModelAboutToBeReset (  )  [protected, virtual, slot, inherited]

Called when the source model is about to be reset.

See also:
QAbstractItemModel::modelAboutToBeReset()

Definition at line 125 of file kdganttforwardingproxymodel.cpp.

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceModelReset (  )  [protected, virtual, slot, inherited]

Called when the source model is reset

See also:
QAbstractItemModel::modelReset()

Reimplemented in KDGantt::SummaryHandlingProxyModel.

Definition at line 133 of file kdganttforwardingproxymodel.cpp.

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceRowsAboutToBeInserted ( const QModelIndex &  parentIdx,
int  start,
int  end 
) [protected, virtual, slot, inherited]

Called just before rows are inserted into the source model.

See also:
QAbstractItemModel::rowsAboutToBeInserted()

Reimplemented in KDGantt::SummaryHandlingProxyModel.

Definition at line 212 of file kdganttforwardingproxymodel.cpp.

References KDGantt::ForwardingProxyModel::mapFromSource().

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceRowsAboutToBeRemoved ( const QModelIndex &  parentIdx,
int  start,
int  end 
) [protected, virtual, slot, inherited]

Called just before rows are removed from the source model.

See also:
QAbstractItemModel::rowsAboutToBeRemoved()

Reimplemented in KDGantt::SummaryHandlingProxyModel.

Definition at line 231 of file kdganttforwardingproxymodel.cpp.

References KDGantt::ForwardingProxyModel::mapFromSource().

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceRowsInserted ( const QModelIndex &  parentIdx,
int  start,
int  end 
) [protected, virtual, slot, inherited]

Called after rows have been inserted into the source model.

See also:
QAbstractItemModel::rowsInserted()

Definition at line 220 of file kdganttforwardingproxymodel.cpp.

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

void ForwardingProxyModel::sourceRowsRemoved ( const QModelIndex &  parentIdx,
int  start,
int  end 
) [protected, virtual, slot, inherited]

Called after rows have been removed from the source model.

See also:
QAbstractItemModel::rowsRemoved()

Definition at line 239 of file kdganttforwardingproxymodel.cpp.

Referenced by KDGantt::ForwardingProxyModel::setSourceModel().

Qt::DropActions ForwardingProxyModel::supportedDropActions (  )  const [inherited]

Definition at line 311 of file kdganttforwardingproxymodel.cpp.


The documentation for this class was generated from the following files: