Remove wxGTK1 mentions from the documentation

GTK1 is no longer supported, so do not document control limitations when using it.
This commit is contained in:
PB
2021-05-12 18:46:15 +02:00
committed by paulcor
parent 363216ab29
commit 99bcb29fce
3 changed files with 6 additions and 6 deletions

View File

@@ -50,7 +50,7 @@ enum wxCheckBoxState
@style{wxCHK_2STATE} @style{wxCHK_2STATE}
Create a 2-state checkbox. This is the default. Create a 2-state checkbox. This is the default.
@style{wxCHK_3STATE} @style{wxCHK_3STATE}
Create a 3-state checkbox. Not implemented in wxGTK1. Create a 3-state checkbox.
@style{wxCHK_ALLOW_3RD_STATE_FOR_USER} @style{wxCHK_ALLOW_3RD_STATE_FOR_USER}
By default a user can't set a 3-state checkbox to the third state. By default a user can't set a 3-state checkbox to the third state.
It can only be done from code. Using this flags allows the user to It can only be done from code. Using this flags allows the user to

View File

@@ -1029,7 +1029,7 @@ public:
show it. It doesn't do anything under other platforms. show it. It doesn't do anything under other platforms.
@style{wxHSCROLL} @style{wxHSCROLL}
A horizontal scrollbar will be created and used, so that text won't A horizontal scrollbar will be created and used, so that text won't
be wrapped. No effect under wxGTK1. be wrapped.
@style{wxTE_NO_VSCROLL} @style{wxTE_NO_VSCROLL}
For multiline controls only: vertical scrollbar will never be For multiline controls only: vertical scrollbar will never be
created. This limits the amount of text which can be entered into created. This limits the amount of text which can be entered into

View File

@@ -2196,10 +2196,10 @@ public:
virtual bool HasTransparentBackground(); virtual bool HasTransparentBackground();
/** /**
Causes this window, and all of its children recursively (except under wxGTK1 Causes this window, and all of its children recursively, to be repainted.
where this is not implemented), to be repainted. Note that repainting doesn't Note that repainting doesn't happen immediately but only during the next
happen immediately but only during the next event loop iteration, if you need event loop iteration, if you need to update the window immediately you
to update the window immediately you should use Update() instead. should use Update() instead.
@param eraseBackground @param eraseBackground
If @true, the background will be erased. If @true, the background will be erased.