summaryrefslogtreecommitdiff
path: root/noncore/settings/netsystemtime/ntp.h
blob: 4dc04b1813d16636747531f3fc407881fa44a2ee (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
#ifndef NTP_H
#define NTP_H
#include "ntpbase.h"
#include <qdatetime.h>
#include <qtimer.h>

class OProcess;
class QString;


class Ntp : public NtpBase
{
    Q_OBJECT

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

    OProcess *ntpProcess;

private:
		QString _ntpOutput;
  	int _maxOffset;
   	float _shiftPerSec;
  	QTimer *_nextCorrection;
    int _minLookupDiff;

   	float getTimeShift();
	  void readLookups();
private slots:
    void slotRunNtp();
    void getNtpOutput(OProcess *proc, char *buffer, int buflen);
    void ntpFinished(OProcess*);
    void correctClock();
};

#endif