Adding theme drawing for list header under 10.3
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32200 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -147,6 +147,50 @@ wxRendererMac::DrawHeaderButton(wxWindow *win,
|
|||||||
|
|
||||||
dc.SetBrush( *wxTRANSPARENT_BRUSH );
|
dc.SetBrush( *wxTRANSPARENT_BRUSH );
|
||||||
|
|
||||||
|
#if defined(__WXMAC_OSX__) && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3 )
|
||||||
|
if ( HIThemeDrawButton != 0 )
|
||||||
|
{
|
||||||
|
HIRect headerRect = CGRectMake( x , y , w , h );
|
||||||
|
if ( dc.IsKindOf( CLASSINFO( wxPaintDC ) ) == false )
|
||||||
|
{
|
||||||
|
Rect r = { (short) headerRect.origin.y , (short) headerRect.origin.x ,
|
||||||
|
(short) (headerRect.origin.y + headerRect.size.height) , (short) (headerRect.origin.x + headerRect.size.width) } ;
|
||||||
|
RgnHandle updateRgn = NewRgn() ;
|
||||||
|
RectRgn( updateRgn , &r ) ;
|
||||||
|
HIViewSetNeedsDisplayInRegion( (HIViewRef) win->GetHandle() , updateRgn , true ) ;
|
||||||
|
DisposeRgn( updateRgn ) ;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
CGContextRef cgContext ;
|
||||||
|
#if wxMAC_USE_CORE_GRAPHICS
|
||||||
|
cgContext = dynamic_cast<wxMacCGContext*>(dc.GetGraphicContext())->GetNativeContext() ;
|
||||||
|
#else
|
||||||
|
Rect bounds ;
|
||||||
|
GetPortBounds( (CGrafPtr) dc.m_macPort , &bounds ) ;
|
||||||
|
QDBeginCGContext( (CGrafPtr) dc.m_macPort , &cgContext ) ;
|
||||||
|
CGContextTranslateCTM( cgContext , 0 , bounds.bottom - bounds.top ) ;
|
||||||
|
CGContextScaleCTM( cgContext , 1 , -1 ) ;
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
HIThemeButtonDrawInfo drawInfo ;
|
||||||
|
HIRect labelRect ;
|
||||||
|
memset( &drawInfo , 0 , sizeof(drawInfo) ) ;
|
||||||
|
drawInfo.version = 0 ;
|
||||||
|
drawInfo.state = kThemeStateActive ;
|
||||||
|
drawInfo.kind = kThemeListHeaderButton ;
|
||||||
|
drawInfo.value = 0 ;
|
||||||
|
drawInfo.adornment = kThemeAdornmentNone ;
|
||||||
|
HIThemeDrawButton( &headerRect , &drawInfo , cgContext , kHIThemeOrientationNormal , &labelRect ) ;
|
||||||
|
}
|
||||||
|
#if wxMAC_USE_CORE_GRAPHICS
|
||||||
|
#else
|
||||||
|
QDEndCGContext( (CGrafPtr) dc.m_macPort , &cgContext ) ;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
#endif
|
||||||
if ( major >= 10 )
|
if ( major >= 10 )
|
||||||
{
|
{
|
||||||
dc.SetPen( wxPen( wxColour( 0xC5 , 0xC5 , 0xC5 ) , 1 , wxSOLID ) );
|
dc.SetPen( wxPen( wxColour( 0xC5 , 0xC5 , 0xC5 ) , 1 , wxSOLID ) );
|
||||||
@@ -243,8 +287,8 @@ wxRendererMac::DrawSplitterSash(wxWindow *win,
|
|||||||
wxOrientation orient,
|
wxOrientation orient,
|
||||||
int WXUNUSED(flags))
|
int WXUNUSED(flags))
|
||||||
{
|
{
|
||||||
#if ( TARGET_API_MAC_OSX == 1 ) && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3 )
|
#if defined(__WXMAC_OSX__) && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3 )
|
||||||
if ( UMAGetSystemVersion() >= 0x1030 )
|
if ( HIThemeDrawPaneSplitter != 0 )
|
||||||
{
|
{
|
||||||
bool hasMetal = win->MacGetTopLevelWindow()->MacGetMetalAppearance() ;
|
bool hasMetal = win->MacGetTopLevelWindow()->MacGetMetalAppearance() ;
|
||||||
SInt32 height ;
|
SInt32 height ;
|
||||||
@@ -254,7 +298,9 @@ wxRendererMac::DrawSplitterSash(wxWindow *win,
|
|||||||
splitterRect = CGRectMake( position , 0 , height, size.y);
|
splitterRect = CGRectMake( position , 0 , height, size.y);
|
||||||
else
|
else
|
||||||
splitterRect = CGRectMake( 0 , position , size.x , height );
|
splitterRect = CGRectMake( 0 , position , size.x , height );
|
||||||
|
#if !wxMAC_USE_CORE_GRAPHICS
|
||||||
HIViewConvertRect( &splitterRect , (HIViewRef) win->GetHandle() , (HIViewRef) win->MacGetTopLevelWindow()->GetHandle() ) ;
|
HIViewConvertRect( &splitterRect , (HIViewRef) win->GetHandle() , (HIViewRef) win->MacGetTopLevelWindow()->GetHandle() ) ;
|
||||||
|
#endif
|
||||||
|
|
||||||
// under compositing we should only draw when called by the OS, otherwise just issue a redraw command
|
// under compositing we should only draw when called by the OS, otherwise just issue a redraw command
|
||||||
// strange redraw errors occur if we don't do this
|
// strange redraw errors occur if we don't do this
|
||||||
@@ -270,22 +316,25 @@ wxRendererMac::DrawSplitterSash(wxWindow *win,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#if wxMAC_USE_CORE_GRAPHICS
|
|
||||||
#else
|
|
||||||
CGContextRef cgContext ;
|
CGContextRef cgContext ;
|
||||||
|
#if wxMAC_USE_CORE_GRAPHICS
|
||||||
|
cgContext = dynamic_cast<wxMacCGContext*>(dc.GetGraphicContext())->GetNativeContext() ;
|
||||||
|
#else
|
||||||
Rect bounds ;
|
Rect bounds ;
|
||||||
GetPortBounds( (CGrafPtr) dc.m_macPort , &bounds ) ;
|
GetPortBounds( (CGrafPtr) dc.m_macPort , &bounds ) ;
|
||||||
QDBeginCGContext( (CGrafPtr) dc.m_macPort , &cgContext ) ;
|
QDBeginCGContext( (CGrafPtr) dc.m_macPort , &cgContext ) ;
|
||||||
CGContextTranslateCTM( cgContext , 0 , bounds.bottom - bounds.top ) ;
|
CGContextTranslateCTM( cgContext , 0 , bounds.bottom - bounds.top ) ;
|
||||||
CGContextScaleCTM( cgContext , 1 , -1 ) ;
|
CGContextScaleCTM( cgContext , 1 , -1 ) ;
|
||||||
|
#endif
|
||||||
|
|
||||||
{
|
|
||||||
HIThemeSplitterDrawInfo drawInfo ;
|
HIThemeSplitterDrawInfo drawInfo ;
|
||||||
drawInfo.version = 0 ;
|
drawInfo.version = 0 ;
|
||||||
drawInfo.state = kThemeStateActive ;
|
drawInfo.state = kThemeStateActive ;
|
||||||
drawInfo.adornment = hasMetal ? kHIThemeSplitterAdornmentMetal : kHIThemeSplitterAdornmentNone ;
|
drawInfo.adornment = hasMetal ? kHIThemeSplitterAdornmentMetal : kHIThemeSplitterAdornmentNone ;
|
||||||
HIThemeDrawPaneSplitter( &splitterRect , &drawInfo , cgContext , kHIThemeOrientationNormal ) ;
|
HIThemeDrawPaneSplitter( &splitterRect , &drawInfo , cgContext , kHIThemeOrientationNormal ) ;
|
||||||
}
|
|
||||||
|
#if wxMAC_USE_CORE_GRAPHICS
|
||||||
|
#else
|
||||||
QDEndCGContext( (CGrafPtr) dc.m_macPort , &cgContext ) ;
|
QDEndCGContext( (CGrafPtr) dc.m_macPort , &cgContext ) ;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@@ -293,14 +342,6 @@ wxRendererMac::DrawSplitterSash(wxWindow *win,
|
|||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
#if 0
|
|
||||||
dc.SetPen(*wxLIGHT_GREY_PEN);
|
|
||||||
dc.SetBrush(*wxWHITE_BRUSH);
|
|
||||||
if ( orient == wxVERTICAL )
|
|
||||||
dc.DrawRectangle(position, 0, 7, size.y);
|
|
||||||
else
|
|
||||||
dc.DrawRectangle(0, position, size.x, 7);
|
|
||||||
#else
|
|
||||||
// Do the gradient fill:
|
// Do the gradient fill:
|
||||||
static int grayValues[] =
|
static int grayValues[] =
|
||||||
{
|
{
|
||||||
@@ -327,7 +368,6 @@ wxRendererMac::DrawSplitterSash(wxWindow *win,
|
|||||||
dc.DrawRectangle( 0, position+i, size.x, 1 );
|
dc.DrawRectangle( 0, position+i, size.x, 1 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user