本文整理汇总了C++中CCoolBarItem::SetTextColour方法的典型用法代码示例。如果您正苦于以下问题:C++ CCoolBarItem::SetTextColour方法的具体用法?C++ CCoolBarItem::SetTextColour怎么用?C++ CCoolBarItem::SetTextColour使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CCoolBarItem
的用法示例。
在下文中一共展示了CCoolBarItem::SetTextColour方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: OnUpdateMediaRecord
void CMonitorWnd::OnUpdateMediaRecord(CCmdUI* pCmdUI)
{
pCmdUI->Enable( m_wndChild.m_pSelected != 0 );
HINSTANCE hPrevInst = AfxGetResourceHandle();
AfxSetResourceHandle( m_hInstance );
CCoolBarItem* pItem = m_wndBottom.GetID( ID_MEDIA_RECORD );
UINT nTextID = 0;
UINT nTipID = 0;
CNetworkThumb* pWindow = m_wndChild.m_pSelected;
if ( pWindow && pWindow->IsRecording() )
{
if ( pItem ) pItem->SetTextColour( RGB( 255, 0, 0 ) );
nTextID = IDS_MEDIA_RECORDING;
nTipID = ID_MEDIA_REC_STOP;
}
else if ( pItem )
{
if ( pItem->m_bEnabled )
pItem->SetTextColour( CoolInterface.m_crCmdText );
else
pItem->SetTextColour( CoolInterface.m_crDisabled );
nTextID = IDS_MEDIA_RECORD;
nTipID = ID_MEDIA_RECORD;
}
CString strText;
LoadString( strText, nTextID );
if ( pItem ) pItem->SetText( strText );
LoadString( strText, nTipID );
if ( pItem ) pItem->SetTip( strText );
if ( pItem ) pItem->SetImage( nTipID );
AfxSetResourceHandle( hPrevInst );
}
示例2: OnUpdateNetworkConnect
void CPlayerWnd::OnUpdateNetworkConnect(CCmdUI* pCmdUI)
{
HINSTANCE hPrevInst = AfxGetResourceHandle();
AfxSetResourceHandle( m_hInstance );
CCoolBarItem* pItem = m_wndHeaderBar.GetID( ID_NETWORK_CONNECT );
UINT nTextID = 0;
UINT nTipID = 0;
if ( FALSE )
{
if ( pItem ) pItem->SetCheck( TRUE );
if ( pItem ) pItem->SetTextColour( CoolInterface.m_crCmdText == 0 ? RGB( 255, 0, 0 ) : CoolInterface.m_crCmdText );
nTextID = IDS_NETWORK_DISCONNECT;
nTipID = ID_NETWORK_DISCONNECT;
}
else
{
if ( pItem ) pItem->SetCheck( FALSE );
if ( pItem ) pItem->SetTextColour( CoolInterface.m_crCmdText == 0 ? RGB( 0, 127, 0 ) : CoolInterface.m_crCmdText );
nTextID = IDS_NETWORK_CONNECT;
nTipID = ID_NETWORK_CONNECT;
}
CString strText;
LoadString( strText, nTextID );
if ( pItem ) pItem->SetText( strText );
LoadString( strText, nTipID );
if ( pItem ) pItem->SetTip( strText );
if ( pItem ) pItem->SetImage( nTipID );
AfxSetResourceHandle( hPrevInst );
}