本文整理汇总了C++中Label::SizeToContents方法的典型用法代码示例。如果您正苦于以下问题:C++ Label::SizeToContents方法的具体用法?C++ Label::SizeToContents怎么用?C++ Label::SizeToContents使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Label
的用法示例。
在下文中一共展示了Label::SizeToContents方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: AddFontsToList
void CSchemeVisualizer::AddFontsToList()
{
#ifdef POSIX
const char strOAccent[] = { 0xc3, 0x93, 0x00 }; // UTF-8 for U+00D3 (LATIN CAPITAL LETTER O WITH ACUTE)
#else
const uint8 strOAccent[] = { 0xd3, 0x00 };
#endif
// Stick an intl character in here to test accents (O')
CFmtStr fmtText( "ABCDEFGHIJKLMN%[email protected]#$%%^&*()-_=+", strOAccent );
const int nFontCount = m_pViewScheme->GetFontCount();
for ( int i = 0; i < nFontCount; ++i )
{
HFont hCurFont = m_pViewScheme->GetFontAtIndex( i );
const char *pCurFontName = m_pViewScheme->GetFontName( hCurFont );
CFmtStr fmtName( "FontPanel_%s", pCurFontName );
Label *pNewFontLabel = new Label( m_pList, fmtName.Access(), fmtText.Access() );
pNewFontLabel->SetFont( hCurFont );
pNewFontLabel->SizeToContents();
pNewFontLabel->SetWide( m_pList->GetWide() );
m_pList->AddItem( new Label( NULL, "Label", pCurFontName ), pNewFontLabel );
}
}
示例2: SetToolTip
void Base::SetToolTip( const UnicodeString& strText )
{
Label* tooltip = new Label( this );
tooltip->SetText( strText );
tooltip->SizeToContents();
SetToolTip( tooltip );
}
示例3: SetToolTip
void Base::SetToolTip( const TextObject & strText )
{
Label* tooltip = new Label( this );
tooltip->SetText( strText );
tooltip->SetTextColorOverride( GetSkin()->Colors.TooltipText );
tooltip->SetPadding( Padding( 5, 3, 5, 3 ) );
tooltip->SizeToContents();
SetToolTip( tooltip );
}