summaryrefslogtreecommitdiff
path: root/noncore/settings/netsystemtime/ntp.h
blob: f6694c9e440aeee2275885493132f0444c51cd06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef NTP_H
#define NTP_H
#include "settime.h"
#include <qdatetime.h>

class OProcess;
class QString;
class QTimer;
class QSocket;
class QCopChannel;

class Ntp : public SetDateTime
{
  Q_OBJECT

public:
  Ntp( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
  ~Ntp();

public slots:
  void setDocument (const QString &);
protected:
  QDateTime predictedTime;
  void makeChannel();
protected slots:
  void receive(const QCString &msg, const QByteArray &arg);
private:
  QString _ntpOutput;
  float _shiftPerSec;
  int _lookupDiff;
  OProcess *ntpProcess;
  QTimer *ntpTimer;
  QSocket *ntpSock;
  QCopChannel *channel;

  float getTimeShift();
  void readLookups();
  void ntpOutPut(QString);
  bool ntpDelayElapsed();
  QString getNtpServer();
private slots:
  void slotRunNtp();
  void getNtpOutput(OProcess *proc, char *buffer, int buflen);
  void ntpFinished(OProcess*);
  void preditctTime();
  void slotCheckNtp(int);
  void setPredictTime();
  void showAdvancedFeatures(bool);
  void slotProbeNtpServer();
  void slotNtpDelayChanged(int);
};

#endif