CNotifyPump 主要进行的是消息的映射还有相关VirtualWnd的操作

class UILIB_API CNotifyPump
{
public:
    bool AddVirtualWnd(CDuiString strName,CNotifyPump* pObject);
    bool RemoveVirtualWnd(CDuiString strName);
    void NotifyPump(TNotifyUI& msg);
    bool LoopDispatch(TNotifyUI& msg);
    DUI_DECLARE_MESSAGE_MAP()
private:
    CStdStringPtrMap m_VirtualWndMap;
};
View Code

相关文章:

  • 2021-04-14
  • 2021-09-02
  • 2021-11-30
  • 2021-09-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-04
猜你喜欢
  • 2021-12-01
  • 2021-09-14
  • 2021-10-26
  • 2021-11-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案