#include "streamlistmodel.h" StreamListModel::StreamListModel(QObject *parent) : QAbstractTableModel(parent) { uint i; // Enable all streams by default for (i=0; i= MAX_ROWS) return QVariant(); if (index.column() >= MAX_COLS) return QVariant(); // Check role if (index.column() == 0) // Icon { if ((role == Qt::DisplayRole)) return QString("EDIT"); else return QVariant(); } else if (index.column() == 1) // Name { if ((role == Qt::DisplayRole) || (role == Qt::EditRole)) return streamList[index.row()].streamName; else return QVariant(); } else if (index.column() == 2) // Enabled? { //if ((role == Qt::CheckStateRole) || (role == Qt::EditRole)) // return streamList[index.row()].isEnabled ? Qt::Checked : Qt::Unchecked; if ((role == Qt::DisplayRole) || (role == Qt::EditRole)) return streamList[index.row()].isEnabled; else return QVariant(); } } bool StreamListModel::setData(const QModelIndex &index, const QVariant &value, int role) { if (index.isValid() && role == Qt::EditRole) { if (index.column() == 1) // Name streamList[index.row()].streamName = value.toString(); else if (index.column() == 2) // Enabled? streamList[index.row()].isEnabled = value.toBool(); else return false; return true; } return false; } QVariant StreamListModel::headerData(int section, Qt::Orientation orientation, int role) const { if (role != Qt::DisplayRole) return QVariant(); if (orientation == Qt::Horizontal) return StreamListCols.at(section); else return QString("%1").arg(section+1); } #if 0 // QModelIndex StreamListModel::index (int portNum, PortStat stat, const QModelIndex & parent = QModelIndex() ) const void StreamListModel::on_portStatsUpdate(int port, void*stats) { int i; QModelIndex topLeft = index(port, 0, QModelIndex()); QModelIndex bottomRight = index(port, e_STAT_MAX, QModelIndex()); for (i = 0; i < e_STAT_MAX; i++) dummyStats[port][i] = ((int *)stats)[i]; emit dataChanged(topLeft, bottomRight); } #endif