QTfrontend/netudpwidget.h
author displacer
Sun, 18 Feb 2007 12:20:36 +0000
changeset 448 e968e19a464c
parent 416 595d8663254d
child 486 7ea71cd3acd5
permissions -rw-r--r--
waiting state for net Go button

#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