RelayFile/UserInterface/RemoteControl.h

26 lines
451 B
C
Raw Normal View History

2025-05-08 21:13:36 +08:00
#ifndef REMOTECONTROL_H
#define REMOTECONTROL_H
2025-05-09 22:31:51 +08:00
#include "InterfaceDefine.hpp"
#include <wx/grid.h>
2025-05-08 21:13:36 +08:00
class RemoteControl : public wxPanel
{
public:
RemoteControl(wxWindow* parent);
~RemoteControl() override;
2025-05-09 22:31:51 +08:00
private:
void Init();
void SetGrid();
public:
wxGrid* grid_;
wxTextCtrl* textCtrl_;
wxButton* btnHome_;
wxButton* btnGet_;
wxButton* btnUpLevel_;
wxButton* btnRefresh_;
2025-05-08 21:13:36 +08:00
};
#endif // REMOTECONTROL_H