source: flair-src/trunk/tools/FlairGCS/src/ConnectionLayout.h@ 259

Last change on this file since 259 was 248, checked in by Sanahuja Guillaume, 6 years ago

add orange icon to gcs

File size: 956 bytes
RevLine 
[10]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[10]4// %flair:license}
[9]5#ifndef CONNECTIONLAYOUT_H
6#define CONNECTIONLAYOUT_H
7
8#include "Layout.h"
9
10class UdtSocket;
11class DataRemote;
12
[15]13class ConnectionLayout : public Layout {
14 Q_OBJECT
[9]15
[15]16public:
17 ConnectionLayout(UdtSocket *socket, QString name);
18 ~ConnectionLayout();
19 void XmlToSend(QDomDocument doc);
20 void addDataRemote(DataRemote *data);
21 void removeDataRemote(DataRemote *data);
22 void LoadXml(QDomDocument to_parse);
[234]23 QString getName();
24 static QString getDocRootName(char* buf, int size);
[9]25
[15]26private:
27 void drawDatas(char *buf, int buf_size, uint16_t period,
28 bool big_endian = false);
[234]29 QString name;
[15]30 UdtSocket *socket;
31 QList<DataRemote *> dataremotes;
[234]32
[15]33private slots:
34 void receive(char *buf, int size);
[9]35
[15]36signals:
[248]37 void UDTStats(QString stats,bool loosingPackets);
[9]38};
39
40#endif // CONNECTIONLAYOUT_H
Note: See TracBrowser for help on using the repository browser.