50 lines
1.2 KiB
C
50 lines
1.2 KiB
C
|
#ifndef _STREAM_MODEL_H
|
||
|
#define _STREAM_MODEL_H
|
||
|
|
||
|
#include <QAbstractTableModel>
|
||
|
#include "port.h"
|
||
|
|
||
|
class PortGroupList;
|
||
|
|
||
|
class StreamModel : public QAbstractTableModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
enum StreamFields {
|
||
|
StreamIcon = 0,
|
||
|
StreamName,
|
||
|
StreamStatus,
|
||
|
|
||
|
StreamMaxFields
|
||
|
};
|
||
|
|
||
|
Port *mCurrentPort;
|
||
|
PortGroupList *pgl;
|
||
|
|
||
|
public:
|
||
|
StreamModel(PortGroupList *p, QObject *parent = 0);
|
||
|
|
||
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
||
|
int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
||
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
||
|
QVariant data(const QModelIndex &index, int role) const;
|
||
|
bool setData(const QModelIndex &index, const QVariant &value,
|
||
|
int role = Qt::EditRole);
|
||
|
QVariant headerData(int section, Qt::Orientation orientation,
|
||
|
int role = Qt::DisplayRole) const;
|
||
|
bool insertRows (int row, int count,
|
||
|
const QModelIndex & parent = QModelIndex());
|
||
|
bool removeRows (int row, int count,
|
||
|
const QModelIndex & parent = QModelIndex());
|
||
|
|
||
|
// FIXME(HIGH): This *is* like a kludge
|
||
|
QList<Stream>* currentPortStreamList()
|
||
|
{ return &mCurrentPort->mStreams; }
|
||
|
|
||
|
public slots:
|
||
|
void setCurrentPortIndex(const QModelIndex ¤t);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|