QTfrontend/netudpwidget.h
author displacer
Wed, 21 Feb 2007 22:30:59 +0000
changeset 478 487cc99af415
parent 416 595d8663254d
child 486 7ea71cd3acd5
permissions -rw-r--r--
users should compile and configure package under user account :)

#ifndef _NET_UDPWIDGET_INCLUDED
#define _NET_UDPWIDGET_INCLUDED

#include <QWidget>
#include <QVBoxLayout>

class QUdpSocket;
class QListWidget;

class HWNetUdpWidget : public QWidget
{
  Q_OBJECT

 public:
  HWNetUdpWidget(QWidget *parent = 0);

  QListWidget* serversList;

 public slots:
  void updateList();

 private slots:
  void onClientRead();

 private:
  QVBoxLayout mainLayout;
  QUdpSocket* pUdpSocket;
};

#endif // _NET_UDPWIDGET_INCLUDED