Add wxRendererNative implementation for wxQt

Closes #24223.
This commit is contained in:
ali kettab 2024-01-17 14:07:27 +01:00 committed by Vadim Zeitlin
parent 1b4dfc292a
commit 9e61385878
7 changed files with 848 additions and 5 deletions

View file

@ -383,6 +383,12 @@ private:
else
renderer.DrawChoice(this, dc,
wxRect(x2, y, width, GetCharHeight() * 3 / 2), m_flags);
y += lineHeight + heightGauge;
dc.DrawText("DrawTextCtrl()", x1, y);
renderer.DrawTextCtrl(this, dc,
wxRect(x2, y, width, GetCharHeight() * 3 / 2), m_flags);
}
int m_flags;