void GWinControl::Show(Bool Show) { if ( m_Hwnd ) { ShowWindow( m_Hwnd, Show ? SW_SHOW : SW_HIDE ); GetStyleFlags(); } }
CStandardLayoutNodeList::SNode CStandardLayoutNodeList::GetNode (index_t index) const { SNode result; const CVisibleGraphNode* node = nodes[index].node; result.rect = nodes[index].rect; result.node = node; result.style = GetStyle (node); result.styleFlags = GetStyleFlags (node); return result; }