2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2010-11-14 13:30:57 +00:00
|
|
|
|
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/checkbox.h>
|
2014-02-19 02:56:29 +01:00
|
|
|
#include <wx/combobox.h>
|
|
|
|
#include <wx/listbox.h>
|
2010-11-14 13:30:57 +00:00
|
|
|
#include <wx/notebook.h>
|
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <wx/spinctrl.h>
|
2014-02-19 02:56:29 +01:00
|
|
|
#include <wx/stattext.h>
|
|
|
|
#include <wx/textctrl.h>
|
|
|
|
#include <wx/wx.h>
|
2010-11-14 13:30:57 +00:00
|
|
|
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "InputCommon/UDPWrapper.h"
|
|
|
|
|
2010-11-14 13:30:57 +00:00
|
|
|
class UDPConfigDiag : public wxDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UDPConfigDiag(wxWindow * const parent, UDPWrapper * _wrp);
|
|
|
|
private:
|
|
|
|
UDPWrapper * wrp;
|
|
|
|
void ChangeUpdateFlags(wxCommandEvent & event);
|
|
|
|
void ChangeState(wxCommandEvent & event);
|
|
|
|
void OKPressed(wxCommandEvent & event);
|
|
|
|
wxCheckBox * enable;
|
|
|
|
wxCheckBox * butt;
|
|
|
|
wxCheckBox * accel;
|
|
|
|
wxCheckBox * point;
|
|
|
|
wxCheckBox * nun;
|
|
|
|
wxCheckBox * nunaccel;
|
|
|
|
wxTextCtrl * port_tbox;
|
|
|
|
};
|