#ifndef REMOTECONTROL_H
#define REMOTECONTROL_H

#include "InterfaceDefine.hpp"
#include <wx/grid.h>

class RemoteControl : public wxPanel
{
public:
    RemoteControl(wxWindow* parent);
    ~RemoteControl() override;

private:
    void Init();
    void SetGrid();

public:
    wxGrid* grid_;
    wxTextCtrl* textCtrl_;
    wxButton* btnHome_;
    wxButton* btnGet_;
    wxButton* btnUpLevel_;
    wxButton* btnRefresh_;
};

#endif   // REMOTECONTROL_H