summaryrefslogtreecommitdiffstats
path: root/clients/tde/src/part/commanalyzer/part.h
blob: 196706b047527ac4baf22e4024f1952fe5183483 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//Author:    Timothy Pearson <kb9vqf@pearsoncomputing.net>, (C) 2012
//Copyright: See COPYING file that comes with this distribution

#ifndef REMOTELAB_COMMANALYZERPART_H
#define REMOTELAB_COMMANALYZERPART_H

#include <kparts/browserextension.h>
#include <kparts/statusbarextension.h>
#include <kparts/part.h>
#include <kurl.h>

class KAboutData;
using KParts::StatusBarExtension;
class TraceWidget;
class TQSocket;
class TQTimer;
class TQMutex;
class CommAnalyzerBase;

namespace RemoteLab
{
	class CommAnalyzerPart : public KParts::ReadOnlyPart
	{
		Q_OBJECT
	
		public:
			CommAnalyzerPart( QWidget *, const char *, TQObject *, const char *, const TQStringList&);
			~CommAnalyzerPart();
	
			virtual bool openFile() { return false; }	// pure virtual in the base class
			virtual bool closeURL();
			static KAboutData *createAboutData();
			int connectToServer(TQString server);

		public slots:
			virtual bool openURL(const KURL &url);
		
		private slots:
			void postInit();
			void updateTrace();
			void updateGraticule();
			virtual void postProcessTrace();
			void saRefLevelChanged(double);
			void changeSaRefLevel();

		private:
			TQString callServerMethod(int command);
			void sendServerCommand(int command);
			int16_t callServerMethodInt16(int command);
			double callServerMethodDouble(int command);
			void callServerMethodDoubleArray(int command, double * array, int arrayLen);
			void sendServerCommandWithParameter(int command, TQString param);
	
		private:
			TraceWidget* m_traceWidget;
			TQSocket* m_socket;
			int16_t m_samplesInTrace;
			double m_leftFrequency;
			double m_rightFrequency;
			int16_t m_hdivs;
			int16_t m_vdivs;
			double m_centerfreq;
			double m_spanfreq;
			double m_rpower;
			double m_vscale;
			TQTimer* m_updateTimer;
			CommAnalyzerBase* m_base;
			TQMutex* m_instrumentMutex;
			bool stopTraceUpdate;
	};
}

#endif