Implement SetForegroundColour and SetBackgroundColour for wxQt

Closes https://github.com/wxWidgets/wxWidgets/pull/1373
This commit is contained in:
Graham Dawes
2019-06-28 13:13:39 +01:00
committed by Vadim Zeitlin
parent 9e35bb92c0
commit e5ba6d9393
2 changed files with 41 additions and 2 deletions

View File

@@ -131,6 +131,9 @@ public:
virtual bool SetTransparent(wxByte alpha) wxOVERRIDE;
virtual bool CanSetTransparent() wxOVERRIDE { return true; }
virtual bool SetBackgroundColour(const wxColour& colour) wxOVERRIDE;
virtual bool SetForegroundColour(const wxColour& colour) wxOVERRIDE;
QWidget *GetHandle() const wxOVERRIDE;
#if wxUSE_DRAG_AND_DROP