forked from xLightsSequencer/xLights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventARTNetTriggerPanel.h
58 lines (47 loc) · 1.58 KB
/
EventARTNetTriggerPanel.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
#pragma once
/***************************************************************
* This source files comes from the xLights project
* https://www.xlights.org
* https://github.com/smeighan/xLights
* See the github commit history for a record of contributing
* developers.
* Copyright claimed based on commit dates recorded in Github
* License: https://github.com/smeighan/xLights/blob/master/License.txt
**************************************************************/
#include "EventPanel.h"
//(*Headers(EventARTNetTriggerPanel)
#include <wx/panel.h>
#include <wx/sizer.h>
#include <wx/spinctrl.h>
#include <wx/stattext.h>
//*)
class EventARTNetTriggerPanel: public EventPanel
{
public:
EventARTNetTriggerPanel(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
virtual ~EventARTNetTriggerPanel();
virtual bool ValidateWindow() override;
virtual void Save(EventBase* event) override;
virtual void Load(EventBase* event) override;
//(*Declarations(EventARTNetTriggerPanel)
wxSpinCtrl* SpinCtrl_Key;
wxSpinCtrl* SpinCtrl_OEM;
wxSpinCtrl* SpinCtrl_SubKey;
wxStaticText* StaticText1;
wxStaticText* StaticText2;
wxStaticText* StaticText3;
//*)
protected:
//(*Identifiers(EventARTNetTriggerPanel)
static const long ID_STATICTEXT1;
static const long ID_SPINCTRL1;
static const long ID_STATICTEXT2;
static const long ID_SPINCTRL2;
static const long ID_STATICTEXT3;
static const long ID_SPINCTRL3;
//*)
private:
//(*Handlers(EventARTNetTriggerPanel)
//*)
DECLARE_EVENT_TABLE()
};