Merge branch 'gtk-persist-tlw'

Fix bugs affecting wxPersistentTLW under GTK.

See https://github.com/wxWidgets/wxWidgets/pull/1419
This commit is contained in:
Vadim Zeitlin
2019-07-18 17:44:35 +02:00
5 changed files with 118 additions and 3 deletions

View File

@@ -112,6 +112,14 @@ public:
// size of WM decorations
struct DecorSize
{
DecorSize()
{
left =
right =
top =
bottom = 0;
}
int left, right, top, bottom;
};
DecorSize m_decorSize;
@@ -156,6 +164,9 @@ private:
// size hint increments
int m_incWidth, m_incHeight;
// position before it last changed
wxPoint m_lastPos;
// is the frame currently iconized?
bool m_isIconized;