mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 01:55:25 -04:00
6aa1a82a8f
git-svn-id: svn://localhost@228 8062f311-0dae-4547-b526-b8ab9ac864a5
59 lines
1.4 KiB
C++
59 lines
1.4 KiB
C++
#if defined(GDE)
|
|
#ifndef BOX3DINITIALPOSITIONPANEL_H
|
|
#define BOX3DINITIALPOSITIONPANEL_H
|
|
|
|
//(*Headers(Box3DInitialPositionPanel)
|
|
#include <wx/sizer.h>
|
|
#include <wx/stattext.h>
|
|
#include <wx/textctrl.h>
|
|
#include <wx/panel.h>
|
|
//*)
|
|
|
|
class Box3DInitialPositionPanel: public wxPanel
|
|
{
|
|
public:
|
|
|
|
Box3DInitialPositionPanel(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
|
|
virtual ~Box3DInitialPositionPanel();
|
|
|
|
//(*Declarations(Box3DInitialPositionPanel)
|
|
wxTextCtrl* rollEdit;
|
|
wxStaticText* StaticText2;
|
|
wxStaticText* StaticText6;
|
|
wxTextCtrl* yawEdit;
|
|
wxStaticText* StaticText1;
|
|
wxStaticText* StaticText3;
|
|
wxTextCtrl* zEdit;
|
|
wxStaticText* StaticText5;
|
|
wxStaticText* StaticText7;
|
|
wxTextCtrl* pitchEdit;
|
|
wxStaticText* StaticText4;
|
|
//*)
|
|
|
|
protected:
|
|
|
|
//(*Identifiers(Box3DInitialPositionPanel)
|
|
static const long ID_STATICTEXT4;
|
|
static const long ID_TEXTCTRL3;
|
|
static const long ID_STATICTEXT5;
|
|
static const long ID_STATICTEXT2;
|
|
static const long ID_TEXTCTRL2;
|
|
static const long ID_STATICTEXT3;
|
|
static const long ID_STATICTEXT6;
|
|
static const long ID_TEXTCTRL4;
|
|
static const long ID_STATICTEXT7;
|
|
static const long ID_STATICTEXT1;
|
|
static const long ID_TEXTCTRL1;
|
|
//*)
|
|
|
|
private:
|
|
|
|
//(*Handlers(Box3DInitialPositionPanel)
|
|
//*)
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|
|
#endif
|