移除Window::input_event,减少一次传递

This commit is contained in:
2025-07-03 10:24:30 +08:00
parent b6cf73deca
commit bc5623e462
3 changed files with 3 additions and 16 deletions

View File

@@ -1,5 +1,4 @@
#ifndef HGL_GRAPH_WINDOW_INCLUDE
#define HGL_GRAPH_WINDOW_INCLUDE
#pragma once
#include<hgl/type/String.h>
#include<hgl/io/event/WindowEvent.h>
@@ -21,14 +20,6 @@ namespace hgl
protected:
/**
* 外部输入事件<br>
* 比如Windows平台是由WindowProc函数传递过来的。
* 本事件传递器会呼叫io::WindowEvent的对象指针在本类中指向的是自己。<br>
* 注仅当前类会如此设计本身此Event是要放在外面的不该在此级别。
*/
io::EventDispatch input_event;
void OnResize(uint,uint) override;
void OnActive(bool) override;
void OnClose () override;
@@ -71,4 +62,3 @@ namespace hgl
void InitNativeWindowSystem();
}//namespace hgl
#endif//HGL_GRAPH_WINDOW_INCLUDE