QTfrontend/netudpwidget.h
author unc0rr
Thu, 08 Feb 2007 16:29:33 +0000
changeset 415 d6d3a6a473a3
parent 413 523f1769f2bc
child 416 595d8663254d
permissions -rw-r--r--
- Bind also 9th slot - Set svn:eol-style to native - Console hides on ` key press in russian locale - Fix construction tool number not decreasing after use

#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);

 private slots:
  void onClientRead();

 private:
  QVBoxLayout mainLayout;
  QUdpSocket* pUdpSocket;
  QListWidget* serversList;
};

#endif // _NET_UDPWIDGET_INCLUDED