Example #1
0
void GWinControl::Show(Bool Show)
{
	if ( m_Hwnd )
	{
		ShowWindow( m_Hwnd, Show ? SW_SHOW : SW_HIDE );
		GetStyleFlags();
	}
}
Example #2
0
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;
}