2025-04-02 10:36:48 +08:00
|
|
|
#ifndef MAINPANEL_H
|
|
|
|
#define MAINPANEL_H
|
|
|
|
|
|
|
|
#include "design/basepanel.h"
|
|
|
|
|
2025-04-03 10:23:46 +08:00
|
|
|
constexpr int g_Width = 300;
|
|
|
|
constexpr int g_Heigh = 450;
|
2025-04-03 16:49:08 +08:00
|
|
|
constexpr int g_Border = 1;
|
2025-04-03 10:23:46 +08:00
|
|
|
|
2025-04-02 10:36:48 +08:00
|
|
|
class CMainPanel : public CBasePanel
|
|
|
|
{
|
|
|
|
public:
|
2025-04-03 10:23:46 +08:00
|
|
|
CMainPanel(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
|
2025-04-03 16:49:08 +08:00
|
|
|
const wxSize& size = wxSize(g_Width, g_Heigh), long style = wxBORDER_RAISED, const wxString& name = wxEmptyString);
|
2025-04-02 10:36:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINPANEL_H
|