virtual void MacVisibilityChanged() ;
virtual void MacEnabledStateChanged() ;
+ virtual void MacHiliteChanged() ;
bool MacIsReallyShown() ;
bool MacIsReallyEnabled() ;
+ bool MacIsReallyHilited() ;
bool MacIsUserPane() { return m_macIsUserPane; }
void MacCreateScrollBars( long style ) ;
void MacRepositionScrollBars() ;
void MacUpdateControlFont() ;
+
void MacPropagateVisibilityChanged() ;
void MacPropagateEnabledStateChanged() ;
+ void MacPropagateHiliteChanged() ;
#if WXWIN_COMPATIBILITY_2_4
wxRect rect;
GetFieldRect(i, rect);
- if ( !MacGetTopLevelWindow()->MacGetMetalAppearance() && !IsWindowHilited( MAC_WXHWND( MacGetTopLevelWindowRef() ) ) )
+ if ( !MacIsReallyHilited() )
{
dc.SetTextForeground( wxColour( 0x80 , 0x80 , 0x80 ) ) ;
}
dc.GetTextExtent(text, &x, &y);
int xpos = rect.x + leftMargin + 1 ;
- int ypos = 2 ;
+ int ypos = 1 ;
+ if ( MacGetTopLevelWindow()->MacGetMetalAppearance() )
+ ypos++ ;
+
dc.SetClippingRegion(rect.x, 0, rect.width, h);
dc.DrawText(text, xpos, ypos);
int w, h ;
GetSize( &w , &h ) ;
- if ( IsWindowHilited( MAC_WXHWND( MacGetTopLevelWindowRef() ) ) || MacGetTopLevelWindow()->MacGetMetalAppearance() )
+ if ( MacIsReallyHilited() )
{
wxPen white( wxWHITE , 1 , wxSOLID ) ;
if (major >= 10 )
for ( i = 0; i < m_nFields; i ++ )
DrawField(dc, i);
}
+
+void wxStatusBarMac::MacHiliteChanged()
+{
+ Refresh() ;
+ Update() ;
+}
return m_label ;
}
+bool wxWindowMac::Show(bool show)
+{
+ if ( !wxWindowBase::Show(show) )
+ return FALSE;
+
+ // TODO use visibilityChanged Carbon Event for OSX
+ bool former = MacIsReallyShown() ;
+
+ SetControlVisibility( (ControlRef) m_macControl , show , true ) ;
+ if ( former != MacIsReallyShown() )
+ MacPropagateVisibilityChanged() ;
+ return TRUE;
+}
+
+bool wxWindowMac::Enable(bool enable)
+{
+ wxASSERT( m_macControl != NULL ) ;
+ if ( !wxWindowBase::Enable(enable) )
+ return FALSE;
+
+ bool former = MacIsReallyEnabled() ;
+ if ( enable )
+ EnableControl( (ControlRef) m_macControl ) ;
+ else
+ DisableControl( (ControlRef) m_macControl ) ;
+
+ if ( former != MacIsReallyEnabled() )
+ MacPropagateEnabledStateChanged() ;
+ return TRUE;
+}
+
+//
+// status change propagations (will be not necessary for OSX later )
+//
+
void wxWindowMac::MacPropagateVisibilityChanged()
{
MacVisibilityChanged() ;
}
}
-bool wxWindowMac::Show(bool show)
+void wxWindowMac::MacPropagateEnabledStateChanged( )
{
- if ( !wxWindowBase::Show(show) )
- return FALSE;
+ MacEnabledStateChanged() ;
- // TODO use visibilityChanged Carbon Event for OSX
- bool former = MacIsReallyShown() ;
+ wxWindowListNode *node = GetChildren().GetFirst();
+ while ( node )
+ {
+ wxWindowMac *child = node->GetData();
+ if ( child->IsEnabled() )
+ child->MacPropagateEnabledStateChanged() ;
+ node = node->GetNext();
+ }
+}
+
+void wxWindowMac::MacPropagateHiliteChanged( )
+{
+ MacHiliteChanged() ;
- SetControlVisibility( (ControlRef) m_macControl , show , true ) ;
- if ( former != MacIsReallyShown() )
- MacPropagateVisibilityChanged() ;
- return TRUE;
+ wxWindowListNode *node = GetChildren().GetFirst();
+ while ( node )
+ {
+ wxWindowMac *child = node->GetData();
+ // if ( child->IsEnabled() )
+ child->MacPropagateHiliteChanged() ;
+ node = node->GetNext();
+ }
+}
+
+//
+// status change notifications
+//
+
+void wxWindowMac::MacVisibilityChanged()
+{
+}
+
+void wxWindowMac::MacHiliteChanged()
+{
+}
+
+void wxWindowMac::MacEnabledStateChanged()
+{
}
+//
+// status queries on the inherited window's state
+//
+
bool wxWindowMac::MacIsReallyShown()
{
// only under OSX the visibility of the TLW is taken into account
#endif
}
-void wxWindowMac::MacVisibilityChanged()
-{
-}
-
-void wxWindowMac::MacPropagateEnabledStateChanged( )
-{
- MacEnabledStateChanged() ;
-
- wxWindowListNode *node = GetChildren().GetFirst();
- while ( node )
- {
- wxWindowMac *child = node->GetData();
- if ( child->IsEnabled() )
- child->MacPropagateEnabledStateChanged() ;
- node = node->GetNext();
- }
-}
-
-bool wxWindowMac::Enable(bool enable)
-{
- wxASSERT( m_macControl != NULL ) ;
- if ( !wxWindowBase::Enable(enable) )
- return FALSE;
-
- bool former = MacIsReallyEnabled() ;
- if ( enable )
- UMAActivateControl( (ControlRef) m_macControl ) ;
- else
- UMADeactivateControl( (ControlRef) m_macControl ) ;
-
- if ( former != MacIsReallyEnabled() )
- MacPropagateEnabledStateChanged() ;
- return TRUE;
-}
-
bool wxWindowMac::MacIsReallyEnabled()
{
return IsControlEnabled( (ControlRef) m_macControl ) ;
}
-void wxWindowMac::MacEnabledStateChanged()
+bool wxWindowMac::MacIsReallyHilited()
{
+ return IsControlActive( (ControlRef) m_macControl ) ;
}
+//
+//
+//
+
int wxWindowMac::GetCharHeight() const
{
wxClientDC dc ( (wxWindowMac*)this ) ;