Allow selecting specific network plugin versions

This commit is contained in:
Maciej Wilczyński
2025-12-14 09:30:11 +01:00
parent 59ad126b48
commit a4d4bfff27
28 changed files with 1388 additions and 77 deletions

View File

@@ -32,6 +32,7 @@ public:
wxString GetPageText(size_t n) const;
const wxSize& GetPaddingSize(size_t n);
void SetPaddingSize(const wxSize& size);
void SetFooterText(const wxString& text);
TabButton* pageButton;
private:
@@ -43,6 +44,7 @@ private:
int m_selection {-1};
int m_btn_margin;
int m_line_margin;
wxStaticText* m_footer_text {nullptr};
};
class Tabbook: public wxBookCtrlBase
@@ -261,6 +263,11 @@ public:
GetBtnsListCtrl()->Rescale();
}
void SetFooterText(const wxString& text)
{
GetBtnsListCtrl()->SetFooterText(text);
}
void OnNavigationKey(wxNavigationKeyEvent& event)
{
if (event.IsWindowChange()) {