gtransm/gui/mainpanel.h

17 lines
463 B
C
Raw Normal View History

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;
constexpr int g_Border = 3;
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,
const wxSize& size = wxSize(g_Width, g_Heigh), long style = wxTAB_TRAVERSAL, const wxString& name = wxEmptyString);
2025-04-02 10:36:48 +08:00
};
#endif // MAINPANEL_H