-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCenterFreqDialog.h
44 lines (34 loc) · 895 Bytes
/
CenterFreqDialog.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
#ifndef CENTERFREQDIALOG_H
#define CENTERFREQDIALOG_H
//(*Headers(CenterFreqDialog)
#include <wx/button.h>
#include <wx/dialog.h>
#include <wx/sizer.h>
#include <wx/spinctrl.h>
//*)
class CenterFreqDialog: public wxDialog
{
public:
CenterFreqDialog(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~CenterFreqDialog();
//(*Declarations(CenterFreqDialog)
wxButton* ButtonGHz;
wxButton* ButtonHz;
wxButton* ButtonKHz;
wxButton* ButtonMHz;
wxSpinCtrlDouble* SpinCtrlDouble1;
//*)
protected:
//(*Identifiers(CenterFreqDialog)
static const long ID_SPINCTRLDOUBLE1;
static const long ID_BUTTON_HZ;
static const long ID_BUTTON_KHZ;
static const long ID_BUTTON_MHZ;
static const long ID_BUTTON_GHZ;
//*)
private:
//(*Handlers(CenterFreqDialog)
//*)
DECLARE_EVENT_TABLE()
};
#endif