Support SetLabel/GetLabel for wxRadioBox/wxRadioButton on wxQt.

This commit is contained in:
Alex Shvartzkop 2024-02-12 18:31:19 +03:00
parent 7a0149dfcb
commit afa4294ef1
4 changed files with 29 additions and 0 deletions

View file

@ -79,6 +79,9 @@ public:
virtual void SetSelection(int n) override;
virtual int GetSelection() const override;
virtual void SetLabel(const wxString &label) override;
virtual wxString GetLabel() const override;
virtual QWidget *GetHandle() const override;
private:

View file

@ -35,6 +35,9 @@ public:
virtual void SetValue(bool value) override;
virtual bool GetValue() const override;
virtual void SetLabel(const wxString &label) override;
virtual wxString GetLabel() const override;
virtual QWidget *GetHandle() const override;
private: