blob: 64d4d5d55c283f5d6aea1ff1e8d972748d2e054b (
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
|
//Author: Timothy Pearson <kb9vqf@pearsoncomputing.net>, (C) 2012
//Copyright: See COPYING file that comes with this distribution
#ifndef SPECTRUMANALYZERVIEW_H
#define SPECTRUMANALYZERVIEW_H
#include <kconfig.h>
#include <kparts/part.h>
#include <kmdichildview.h>
class KAction;
namespace RemoteLab {
typedef KParts::ReadOnlyPart InstrumentPart;
class InstrumentView : public KMdiChildView
{
Q_OBJECT
public:
InstrumentView(const TQString &library, TQWidget *parentWidget=0L, const char *name=0L, WFlags f=0);
InstrumentView(const TQString &library, const TQString &caption, TQWidget *parentWidget=0L, const char *name=0L, WFlags f=0);
~InstrumentView();
void connectServer(TQString server);
void closeConnections();
protected:
virtual void saveProperties(KConfig *);
virtual void readProperties(KConfig *);
virtual bool queryExit();
private:
void init();
TQString m_libraryName;
RemoteLab::InstrumentPart *m_instrumentPart;
bool* m_canary;
};
} // namespace RemoteLab
#endif
|