1357f495ac
Common ------ - Change in OstProto - Individual protocols are now extensions of (new) message 'Protocol' instead of 'Stream' - Stream now contains a repeated Protocol which also determines the ordered set of currently selected protocols; StreamCore.frame_proto which was doing this earlier has been removed - Change in AbstractProtocol Interface - Parent changed to StreamBase - Corresponding change in constructor and factory func - createInstance() - new method protocolNumber() - returns unique id for each protocol - protoDataCopyInto/From() now copies into OstProto::Protocol instead of OstProto::Stream - Change in all subclasses of AbstractProtocol to match new interface - For all protocols, configFrom is no longer static, but each protocol has its own configForm - configForm creation is lazy - configForm is still a child of the protocol i.e. it will be destroyed alongwith the protocol - TODO: convert configWidget() to a pure factory function i.e. the protocol does not own the configForm - this requires us to pass the widget into load/storeConfigWidget() methods - ProtocolCollection class removed alongwith its .h and .cpp - ProtocolList class redefined to serve the purpose of ProtocolCollection - New class ProtocolListIterator defined to iterate ProtocolList - AbstractProtocol methods now use the ProtocolListIterator - Factory function createProtocol() added to ProtocolManager - OstProto::StreamCore accessor functions moved from Stream to StreamBase Server ------ - MyService uses the newly moved accessors to StreamBase for OstProto::StreamCore members - StreamInfo now uses the protocols to create the packet Client ------ - StreamConfigDialog now uses ProtocolListIterator - So does PacketModel
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
#ifndef _PACKET_MODEL_H
|
|
#define _PACKET_MODEL_H
|
|
|
|
#include <QAbstractItemModel>
|
|
|
|
class ProtocolListIterator;
|
|
class AbstractProtocol;
|
|
|
|
class PacketModel: public QAbstractItemModel
|
|
{
|
|
|
|
public:
|
|
PacketModel(QObject *parent = 0);
|
|
void setSelectedProtocols(ProtocolListIterator &iter);
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
QVariant headerData(int section, Qt::Orientation orientation,
|
|
int role = Qt::DisplayRole) const { return QVariant(); } ;
|
|
QModelIndex index (int row, int col, const QModelIndex & parent = QModelIndex() ) const;
|
|
QModelIndex parent(const QModelIndex &index) const;
|
|
|
|
private:
|
|
typedef union _IndexId
|
|
{
|
|
quint32 w;
|
|
struct
|
|
{
|
|
quint16 type;
|
|
#define ITYP_PROTOCOL 1
|
|
#define ITYP_FIELD 2
|
|
quint16 protocol; // protocol is valid for both ITYPs
|
|
} ws;
|
|
} IndexId;
|
|
|
|
QList<const AbstractProtocol*> mSelectedProtocols;
|
|
};
|
|
#endif
|
|
|