In the mean time, you can handle notus::events::native event to process the OS native events that are not mapped to notus events.
On Win32, notus::events::native is defined in platform/win32/traits.hpp as
struct native_event_data
{
MSG msg_;
mutable PAINTSTRUCT ps_;
};
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i tried this framework.
very good architecture.
by the way,is there any reason why WM_ERASEBKGND handler is not defined by default?
if no any reason, i want to use it.
WM_ERASEBKGND is on my list of things to do.
In the mean time, you can handle notus::events::native event to process the OS native events that are not mapped to notus events.
On Win32, notus::events::native is defined in platform/win32/traits.hpp as
struct native_event_data
{
MSG msg_;
mutable PAINTSTRUCT ps_;
};
thx!
:-)