MCPcopy Create free account
hub / github.com/acl-dev/acl / SetShowResizeGrip

Method SetShowResizeGrip

lib_acl_cpp/samples/gui_rpc/ui/WndResizer.cpp:860–869  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

858 return TRUE;
859}
860void CWndResizer::SetShowResizeGrip(BOOL show)
861{
862 CGripperPanel * pPanel = (CGripperPanel *)FindPanelByName(&root, _T("_resizeGrip"));
863 ASSERT(pPanel != NULL);
864 if ( pPanel->m_bVisible != show )
865 {
866 pPanel->m_bVisible = show;
867 m_pHookedWnd->Invalidate(TRUE);
868 }
869}
870BOOL CWndResizer::GetShowResizeGrip()
871{
872 CGripperPanel * pPanel = (CGripperPanel *)FindPanelByName(&root, _T("_resizeGrip"));

Callers 1

OnInitDialogMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected