mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 10:05:37 -04:00
9203fab207
git-svn-id: svn://localhost@6 8062f311-0dae-4547-b526-b8ab9ac864a5
40 lines
657 B
C++
40 lines
657 B
C++
#ifndef SIGNEMODIFICATION_H
|
|
#define SIGNEMODIFICATION_H
|
|
|
|
//(*Headers(SigneModification)
|
|
#include <wx/sizer.h>
|
|
#include <wx/radiobox.h>
|
|
#include <wx/button.h>
|
|
#include <wx/dialog.h>
|
|
//*)
|
|
|
|
class SigneModification: public wxDialog
|
|
{
|
|
public:
|
|
|
|
SigneModification(wxWindow* parent);
|
|
virtual ~SigneModification();
|
|
|
|
//(*Declarations(SigneModification)
|
|
wxButton* OkBt;
|
|
wxRadioBox* SigneRadio;
|
|
//*)
|
|
|
|
protected:
|
|
|
|
//(*Identifiers(SigneModification)
|
|
static const long ID_RADIOBOX1;
|
|
static const long ID_BUTTON1;
|
|
//*)
|
|
|
|
private:
|
|
|
|
//(*Handlers(SigneModification)
|
|
void OnOkBtClick(wxCommandEvent& event);
|
|
//*)
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|