CEGUI控件和响应函数的 联系机制

定义一个控件

CEGUI::Window *quit = wmgr.createWindow("TaharezLook/Button", "CEGUIDemo/QuitButton");

 

加载这个控件被点击,和点击处理函数的联系,消息处理函数为 bool Game::quit(const CEGUI::EventArgs &e)

quit->subscribeEvent(CEGUI::PushButton::EventClicked,CEGUI::Event::Subscriber(&BasicTutorial7::quit, this))

你可能感兴趣的:(CEGUI控件和响应函数的 联系机制)