Optimize network traffic a bit:
- Send keepalive packets every second
- Don't send keepalive packet if there was action packet within a second
Time between turns in net game is reduced to 1 second now (was 2 seconds)
#include <QScrollArea>
#include <QMainWindow>
#include <QLabel>
#include <QListWidget>
#include <QPushButton>
#include "pixlabel.h"
class MyWindow : public QMainWindow
{
Q_OBJECT
public:
MyWindow(QWidget * parent = 0, Qt::WFlags flags = 0);
private:
QScrollArea * sa_xy;
PixLabel * xy;
QPushButton * buttAdd;
QPushButton * buttCode;
QPushButton * buttSave;
QPushButton * buttLoad;
private slots:
void Code();
void Save();
void Load();
};