2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2010-11-14 15:30:57 +02:00
|
|
|
|
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/checkbox.h>
|
2014-02-19 03:56:29 +02:00
|
|
|
#include <wx/combobox.h>
|
|
|
|
#include <wx/listbox.h>
|
2010-11-14 15:30:57 +02:00
|
|
|
#include <wx/notebook.h>
|
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <wx/spinctrl.h>
|
2014-02-19 03:56:29 +02:00
|
|
|
#include <wx/stattext.h>
|
|
|
|
#include <wx/textctrl.h>
|
|
|
|
#include <wx/wx.h>
|
2010-11-14 15:30:57 +02:00
|
|
|
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "InputCommon/UDPWrapper.h"
|
|
|
|
|
2010-11-14 15:30:57 +02: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;
|
|
|
|
};
|