23 lines
417 B
C++
23 lines
417 B
C++
#ifndef ONLINECONTROL_H
|
|
#define ONLINECONTROL_H
|
|
|
|
#include "InterfaceDefine.hpp"
|
|
|
|
class OnlineControl : public wxPanel
|
|
{
|
|
public:
|
|
OnlineControl(wxWindow* parent);
|
|
~OnlineControl() override;
|
|
|
|
private:
|
|
void Init();
|
|
|
|
public:
|
|
wxStaticText* lbCurState_;
|
|
wxStaticText* elbCurState_;
|
|
wxStaticText* lbCurPoint_;
|
|
wxStaticText* elbCurPoint_;
|
|
wxListBox* onLineList_;
|
|
};
|
|
|
|
#endif // ONLINECONTROL_H
|