17 lines
463 B
C++
17 lines
463 B
C++
#ifndef MAINPANEL_H
|
|
#define MAINPANEL_H
|
|
|
|
#include "design/basepanel.h"
|
|
|
|
constexpr int g_Width = 300;
|
|
constexpr int g_Heigh = 450;
|
|
constexpr int g_Border = 1;
|
|
|
|
class CMainPanel : public CBasePanel
|
|
{
|
|
public:
|
|
CMainPanel(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxSize(g_Width, g_Heigh), long style = wxBORDER_RAISED, const wxString& name = wxEmptyString);
|
|
};
|
|
|
|
#endif // MAINPANEL_H
|