avoiding caret in all textctrls in 10.2
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33184 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
5576edf8d8
commit
8e15e610d1
@ -1532,24 +1532,28 @@ void wxMacMLTEControl::AdjustCreationAttributes( const wxColour &background, boo
|
|||||||
iControlTags, iControlData )) ;
|
iControlTags, iControlData )) ;
|
||||||
|
|
||||||
// setting the default font
|
// setting the default font
|
||||||
|
// under 10.2 this causes a visible caret, therefore we avoid it
|
||||||
|
|
||||||
Str255 fontName ;
|
if ( UMAGetSystemVersion() >= 0x1030 )
|
||||||
SInt16 fontSize ;
|
|
||||||
Style fontStyle ;
|
|
||||||
|
|
||||||
GetThemeFont(kThemeSystemFont , GetApplicationScript() , fontName , &fontSize , &fontStyle ) ;
|
|
||||||
|
|
||||||
TXNTypeAttributes typeAttr[] =
|
|
||||||
{
|
{
|
||||||
{ kTXNQDFontNameAttribute , kTXNQDFontNameAttributeSize , { (void*) fontName } } ,
|
Str255 fontName ;
|
||||||
{ kTXNQDFontSizeAttribute , kTXNFontSizeAttributeSize , { (void*) (fontSize << 16) } } ,
|
SInt16 fontSize ;
|
||||||
{ kTXNQDFontStyleAttribute , kTXNQDFontStyleAttributeSize , { (void*) normal } } ,
|
Style fontStyle ;
|
||||||
} ;
|
|
||||||
|
|
||||||
verify_noerr( TXNSetTypeAttributes (m_txn, sizeof( typeAttr ) / sizeof(TXNTypeAttributes) , typeAttr,
|
GetThemeFont(kThemeSystemFont , GetApplicationScript() , fontName , &fontSize , &fontStyle ) ;
|
||||||
kTXNStartOffset,
|
|
||||||
kTXNEndOffset) );
|
|
||||||
|
|
||||||
|
TXNTypeAttributes typeAttr[] =
|
||||||
|
{
|
||||||
|
{ kTXNQDFontNameAttribute , kTXNQDFontNameAttributeSize , { (void*) fontName } } ,
|
||||||
|
{ kTXNQDFontSizeAttribute , kTXNFontSizeAttributeSize , { (void*) (fontSize << 16) } } ,
|
||||||
|
{ kTXNQDFontStyleAttribute , kTXNQDFontStyleAttributeSize , { (void*) normal } } ,
|
||||||
|
} ;
|
||||||
|
|
||||||
|
verify_noerr( TXNSetTypeAttributes (m_txn, sizeof( typeAttr ) / sizeof(TXNTypeAttributes) , typeAttr,
|
||||||
|
kTXNStartOffset,
|
||||||
|
kTXNEndOffset) );
|
||||||
|
}
|
||||||
|
|
||||||
if ( m_windowStyle & wxTE_PASSWORD )
|
if ( m_windowStyle & wxTE_PASSWORD )
|
||||||
{
|
{
|
||||||
UniChar c = 0xA5 ;
|
UniChar c = 0xA5 ;
|
||||||
|
Loading…
Reference in New Issue
Block a user