2025-05-08 21:44:16 +08:00
|
|
|
#ifndef HEADERCONTROL_H
|
|
|
|
#define HEADERCONTROL_H
|
2025-05-08 21:13:36 +08:00
|
|
|
|
|
|
|
#include <wx/wx.h>
|
|
|
|
|
2025-05-08 21:44:16 +08:00
|
|
|
class HeaderControl : public wxPanel
|
2025-05-08 21:13:36 +08:00
|
|
|
{
|
|
|
|
public:
|
2025-05-08 21:44:16 +08:00
|
|
|
HeaderControl(wxWindow* parent);
|
|
|
|
~HeaderControl() override;
|
2025-05-08 22:11:39 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxTextCtrl* textIP_;
|
|
|
|
wxTextCtrl* textPort_;
|
|
|
|
wxButton* btnConnect_;
|
|
|
|
wxButton* btnDisconnect_;
|
2025-05-08 21:13:36 +08:00
|
|
|
};
|
|
|
|
|
2025-05-08 21:44:16 +08:00
|
|
|
#endif // HEADERCONTROL_H
|