2015-04-07 10:39:15 -05:00
// 7 april 2015
# include "uipriv_windows.h"
/*
all container windows ( including the message - only window , hence this is not in container_windows . c ) have to call the sharedWndProc ( ) to ensure messages go in the right place and control colors are handled properly
*/
/*
all controls that have events receive the events themselves through subclasses
to do this , all container windows ( including the message - only window ; see http : //support.microsoft.com/default.aspx?scid=KB;EN-US;Q104069) forward WM_COMMAND to each control with this function, WM_NOTIFY with forwardNotify, etc.
*/
static LRESULT forwardCommand ( HWND hwnd , UINT uMsg , WPARAM wParam , LPARAM lParam )
{
HWND control = ( HWND ) lParam ;
// don't generate an event if the control (if there is one) is unparented (a child of the initial parent window)
if ( control ! = NULL & & IsChild ( initialParent , control ) = = 0 )
return SendMessageW ( control , msgCOMMAND , wParam , lParam ) ;
return DefWindowProcW ( hwnd , uMsg , wParam , lParam ) ;
}
static LRESULT forwardNotify ( HWND hwnd , UINT uMsg , WPARAM wParam , LPARAM lParam )
{
NMHDR * nmhdr = ( NMHDR * ) lParam ;
HWND control = nmhdr - > hwndFrom ;
// don't generate an event if the control (if there is one) is unparented (a child of the initial parent window)
if ( control ! = NULL & & IsChild ( initialParent , control ) = = 0 )
return SendMessageW ( control , msgNOTIFY , wParam , lParam ) ;
return DefWindowProcW ( hwnd , uMsg , wParam , lParam ) ;
}
BOOL sharedWndProc ( HWND hwnd , UINT uMsg , WPARAM wParam , LPARAM lParam , LRESULT * lResult )
{
switch ( uMsg ) {
case WM_COMMAND :
* lResult = forwardCommand ( hwnd , uMsg , wParam , lParam ) ;
return TRUE ;
case WM_NOTIFY :
* lResult = forwardNotify ( hwnd , uMsg , wParam , lParam ) ;
return TRUE ;
/*TODO case WM_CTLCOLORSTATIC:
case WM_CTLCOLORBTN :
// read-only TextFields and Textboxes are exempt
// this is because read-only edit controls count under WM_CTLCOLORSTATIC
if ( windowClassOf ( ( HWND ) lParam , L " edit " , NULL ) = = 0 )
if ( textfieldReadOnly ( ( HWND ) lParam ) )
return FALSE ;
if ( SetBkMode ( ( HDC ) wParam , TRANSPARENT ) = = 0 )
xpanic ( " error setting transparent background mode to Labels " , GetLastError ( ) ) ;
paintControlBackground ( ( HWND ) lParam , ( HDC ) wParam ) ;
* lResult = ( LRESULT ) hollowBrush ;
return TRUE ;
*/ }
return FALSE ;
}
2015-04-09 22:24:18 -05:00
// from https://msdn.microsoft.com/en-us/library/windows/desktop/dn742486.aspx#sizingandspacing
2015-04-09 14:30:24 -05:00
# define winXPadding 4
# define winYPadding 4
2015-04-09 12:51:01 -05:00
void resize ( uiControl * control , HWND parent , RECT r , RECT margin )
2015-04-07 10:39:15 -05:00
{
uiSizing d ;
2015-04-09 16:46:26 -05:00
uiSizingSys sys ;
2015-04-07 10:39:15 -05:00
HDC dc ;
2015-04-07 18:36:46 -05:00
HFONT prevfont ;
2015-04-07 10:39:15 -05:00
TEXTMETRICW tm ;
SIZE size ;
2015-04-08 19:14:10 -05:00
size . cx = 0 ;
size . cy = 0 ;
ZeroMemory ( & tm , sizeof ( TEXTMETRICW ) ) ;
2015-04-07 10:39:15 -05:00
dc = GetDC ( parent ) ;
if ( dc = = NULL )
2015-04-07 21:19:24 -05:00
logLastError ( " error getting DC in resize() " ) ;
2015-04-07 18:36:46 -05:00
prevfont = ( HFONT ) SelectObject ( dc , hMessageFont ) ;
if ( prevfont = = NULL )
2015-04-07 21:19:24 -05:00
logLastError ( " error loading control font into device context in resize() " ) ;
2015-04-07 10:39:15 -05:00
if ( GetTextMetricsW ( dc , & tm ) = = 0 )
2015-04-07 21:19:24 -05:00
logLastError ( " error getting text metrics in resize() " ) ;
2015-04-07 10:39:15 -05:00
if ( GetTextExtentPoint32W ( dc , L " ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz " , 52 , & size ) = = 0 )
2015-04-07 21:19:24 -05:00
logLastError ( " error getting text extent point in resize() " ) ;
2015-04-09 16:46:26 -05:00
sys . baseX = ( int ) ( ( size . cx / 26 + 1 ) / 2 ) ;
sys . baseY = ( int ) tm . tmHeight ;
sys . internalLeading = tm . tmInternalLeading ;
2015-04-07 18:36:46 -05:00
if ( SelectObject ( dc , prevfont ) ! = hMessageFont )
2015-04-07 21:19:24 -05:00
logLastError ( " error restoring previous font into device context in resize() " ) ;
2015-04-07 10:39:15 -05:00
if ( ReleaseDC ( parent , dc ) = = 0 )
2015-04-07 21:19:24 -05:00
logLastError ( " error releasing DC in resize() " ) ;
2015-04-09 17:45:58 -05:00
r . left + = uiDlgUnitsToX ( margin . left , sys . baseX ) ;
r . top + = uiDlgUnitsToY ( margin . top , sys . baseY ) ;
r . right - = uiDlgUnitsToX ( margin . right , sys . baseX ) ;
r . bottom - = uiDlgUnitsToY ( margin . bottom , sys . baseY ) ;
d . xPadding = uiDlgUnitsToX ( winXPadding , sys . baseX ) ;
d . yPadding = uiDlgUnitsToY ( winYPadding , sys . baseY ) ;
2015-04-09 16:46:26 -05:00
d . sys = & sys ;
uiControlResize ( control , r . left , r . top , r . right - r . left , r . bottom - r . top , & d ) ;
2015-04-07 10:39:15 -05:00
}
2015-04-08 17:04:46 -05:00
void updateParent ( uintptr_t h )
{
HWND hwnd ;
if ( h = = 0 ) // no parent
return ;
hwnd = ( HWND ) h ;
2015-04-08 19:53:34 -05:00
SendMessageW ( hwnd , msgUpdateChild , 0 , 0 ) ;
2015-04-08 17:04:46 -05:00
}