gtransm/gui/mainpanel.h
2025-04-03 10:23:46 +08:00

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 = 3;
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 = wxTAB_TRAVERSAL, const wxString& name = wxEmptyString);
};
#endif // MAINPANEL_H