Add basic information to wxDisplayChangedEvent documentation

The event had no description at all, so at least the very basic
information has been added.

Closes https://github.com/wxWidgets/wxWidgets/pull/1280
This commit is contained in:
PB
2019-03-29 21:51:10 +01:00
committed by Vadim Zeitlin
parent 198a1efee5
commit 15a68c9916

View File

@@ -3291,7 +3291,25 @@ public:
wxMouseCaptureLostEvent(wxWindowID windowId = 0); wxMouseCaptureLostEvent(wxWindowID windowId = 0);
}; };
/**
@class wxDisplayChangedEvent
A display changed event is sent to top-level windows when the display resolution has changed.
This event is currently emitted under Windows only.
@beginEventTable{wxDisplayChangedEvent}
@event{EVT_DISPLAY_CHANGED(func)}
Process a @c wxEVT_DISPLAY_CHANGED event.
@endEventTable
@onlyfor{wxmsw}
@library{wxcore}
@category{events}
@see wxDisplay
*/
class wxDisplayChangedEvent : public wxEvent class wxDisplayChangedEvent : public wxEvent
{ {