Toolbar and Rebar encapsulations
In Owlet, TToolbar was added in [r3668]. The implementation is in the early stages and far from complete. Only the member function Send has been implemented, and only a few of the Toolbar messages have dispatch specialisations (TDispatch_TB). But you can already do: void AddToolbar(TWindow* frame, const TImageList& images) { const auto t = new TToolbar{frame, IDW_TOOLBAR}; const auto imagesId = 0; t->Send<TB_SETIMAGELIST>(imagesId, images.GetHandle()); TBBUTTON buttons[] = {...}; t->Send<TB_BUTTONSTRUCTSIZE>(sizeof(TBBUTTON));...
CHG: Routine Owlet update [owlnext:code:r8872].
CHG: Owlet: Eliminated TUIFace.
CHG: Owlet: Eliminated TUIPart, obsoleted by TDC::DrawFrameControl [r5451].
CHG: Owlet: Removed TUIHandle (not used, obsolete).
CHG: Routine Owlet update [owlnext:code:r8869].
CHG: Owlet: Eliminated TDib and TDibDC, for the sake of simplicity.