Been having a heck of a time with ComboBoxEx32 windows. Now an issue has shown up in our app when one of our dialogs has an instance of that control AND the user moves another window. We have a "normal" paradigm in code where we perform a "TrackMove" which essentially captures the mouse in a loop and where we call while( GetMessage(&msg, nullptr, WM_PAINT, WM_PAINT, PM_REMOVE) ) { DispatchMessage(&msg); }
The issue is that we never leave the GetMessage loop. The ComboBoxEx32 window just keeps getting WM_PAINT messages. The app locks up. I have verified this stream of messages are different (time stamp shows that).
It appears that either the object's rect is never validated or something in the skinning code is causing paint messages to be sent.
I can turn skinning off when a dialog with a ComboBoxEx32 is created (assuming I always know when that might happen, which I don't in reality due to third party code) to avoid the issue.
I can also add a call to ValidateRect in the GetMessage loop to avoid the issue. That's what I'm busy doing now to all the code where we have such code.
Another issue that showed up is that another window we create and show doesn't completely paint. That's independent of the lockup unless I try to drag that window in which case it paints and we lock up. To fix that update issue I have to find where we calls ShowWindow and follow it up with UpdateWindow. I have found that the OnPaint message for this window isn't called. Only the background paints unless I call UpdateWindow.
Also, the lockup occurs whether I add a ComboBox synonym for ComboBoxEx32 which I posted about to fix another drawing issue where the background color of the the ComboBoxEx32 uses a skin color but the text does not.
A ComboBoxEx32 has a ComboBox child window. Perhaps this is the root of the issues we are having with ComboBoxEx32 windows. The ComboBox child window also uses owner draw.
Why hasn't CodeJock implemented a skin class specific to ComboBoxEx32? Is there some other way to work around these issues with the extended combobox?
|