forked from IW0HDV/extio-hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gui.h
152 lines (120 loc) · 3.71 KB
/
gui.h
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/**
* @file gui.h
* @brief Header for Extio DLL GUI
* @author Andrea Montefusco IW0HDV
* @version 0.0
* @date 2013-09-23
*/
/* Copyright (C)
* Andrea Montefusco IW0HDV
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#if !defined __GUI_H__
#define __GUI_H__
class GuiImpl;
struct GuiEvent;
struct GuiEventHScroll;
class Gui : public MsgAllocator {
public:
Gui();
Gui(int resource_id);
virtual ~Gui();
virtual void Show();
virtual void Hide();
void setRadio(ExtioHpsdrRadio < EXTIO_BASE_TYPE > *pExr);
ExtioHpsdrRadio < EXTIO_BASE_TYPE > * getRadio();
void setHw(const char *);
void appendMessage(const char *);
int getRecNumber(void);
void setHwAddressGUI(const Ethernet::Device *);
virtual void EnableControls();
virtual void DisableControls();
protected:
void EnableAll(const GuiEvent& ev1, const GuiEvent& ev2);
// events managers
virtual bool OnInit(const GuiEvent& ev) = 0;
virtual bool ButtonClick(const GuiEvent &ev) { return false; }
virtual bool ButtonDoubleClick(const GuiEvent &ev) { return false; }
virtual bool ListBoxDoubleClick(const GuiEvent &ev) { return false; }
virtual bool OnHScroll(const GuiEventHScroll& ev) { return false; }
virtual bool OnWmUser(int n, const GuiEvent& ev) { return false; }
friend GuiImpl;
GuiImpl *pi;
};
class HermesGui: public Gui {
public:
HermesGui (int sample_rate);
~HermesGui () {}
void EnableControls();
void DisableControls();
virtual bool OnInit(const GuiEvent& ev);
virtual bool ButtonClick(const GuiEvent &ev);
virtual bool OnHScroll(const GuiEventHScroll& ev);
virtual bool OnWmUser(int n, const GuiEvent& ev);
private:
int sr;
};
class MercuryGui: public Gui {
public:
MercuryGui (int sample_rate);
~MercuryGui () {}
void EnableControls();
void DisableControls();
virtual bool OnInit(const GuiEvent& ev);
virtual bool ButtonClick(const GuiEvent &ev);
virtual bool OnHScroll(const GuiEventHScroll& ev);
virtual bool OnWmUser(int n, const GuiEvent& ev);
private:
int sr;
};
class CommandReceiver;
class HpsdrSplash: public Gui, public ScanWatcher {
public:
HpsdrSplash(Gui **pG, CommandReceiver **pCr);
~HpsdrSplash() {}
void Show();
void SetHw(const char *);
template <typename... ARGS>
void SetStatus (const char *, ARGS... args);
void AppendMessage(const char *);
virtual int ScanStarted();
virtual int ScanStopped(int nh);
virtual int InterfaceFound(Ethernet::NetInterface *pni);
virtual int DeviceFound(Ethernet::Device *pd);
int GetSel() { return sel; }
virtual bool OnInit(const GuiEvent& ev);
virtual bool OnWmUser(int n, const GuiEvent& ev);
virtual bool ListBoxDoubleClick(const GuiEvent &ev);
private:
int sel;
Gui **ppGui_;
CommandReceiver **ppCr_;
Ethernet::Device *pDev;
};
class CommandReceiver: public Gui {
public:
CommandReceiver ();
~CommandReceiver ();
virtual bool OnInit(const GuiEvent& ev);
void SendOtherInstancesNewSampleRate (unsigned int nsr);
void SendOtherInstancesStart ();
void SendOtherInstancesStop ();
//void SendOtherInstancesHWLO(long freq);
void SendOtherInstancesClose ();
virtual bool OnWmUser(int n, const GuiEvent& ev);
protected:
};
#endif