2025-05-08 21:13:36 +08:00
|
|
|
#ifndef ONLINECONTROL_H
|
|
|
|
#define ONLINECONTROL_H
|
|
|
|
|
2025-05-09 23:49:27 +08:00
|
|
|
#include "InterfaceDefine.hpp"
|
2025-05-08 21:13:36 +08:00
|
|
|
|
|
|
|
class OnlineControl : public wxPanel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OnlineControl(wxWindow* parent);
|
|
|
|
~OnlineControl() override;
|
2025-05-09 23:49:27 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxStaticText* lbCurState_;
|
|
|
|
wxStaticText* elbCurState_;
|
|
|
|
wxStaticText* lbCurPoint_;
|
|
|
|
wxStaticText* elbCurPoint_;
|
|
|
|
wxListBox* onLineList_;
|
2025-05-08 21:13:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ONLINECONTROL_H
|