Hi! I am writing a GUI wrapper for windows api right now ( i can't use qt or mfc ). The library itself is extremely basic. After subclassing windows common controls ( and wrapping them into the classes ) i have faced a problem. As far as i know (and i hope i am wrong), only parent control can handle a message like WM_CTLCOLOREDIT and the same. But i want to be able to write something like this:
myedit->SetBkColor ( RGB ( 0, 0, 0 ) );
Is it possible to implement at all ( like in windows forms, for example ), or i should write a new controll from scratch, and write the painting by myself?
Thank you, #535.