]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/utils.cpp
SetValue is not adding a line if values does not exist
[wxWidgets.git] / src / mac / carbon / utils.cpp
index be4535ea94f526596acd2f2fb5b86a2bd9b419df..180fb5004b11034b433536f1a7b60ef85a528e08 100644 (file)
@@ -1597,6 +1597,12 @@ void wxMacControl::SetFont( const wxFont & font , const wxColour& foreground , l
        ::SetControlFontStyle( m_controlRef , &fontStyle );
 }
 
+void wxMacControl::SetBackground( const wxBrush &WXUNUSED(brush) ) 
+{
+    // TODO 
+    // setting up a color proc is not recommended anymore
+}
+
 void wxMacControl::SetRange( SInt32 minimum , SInt32 maximum )
 {
     ::SetControl32BitMinimum( m_controlRef , minimum ) ;
@@ -1695,8 +1701,8 @@ void  wxMacControl::Convert( wxPoint *pt , wxMacControl *from , wxMacControl *to
     hiPoint.x = pt->x ;
     hiPoint.y = pt->y ;
     HIViewConvertPoint( &hiPoint , from->m_controlRef , to->m_controlRef  ) ;
-    pt->x = hiPoint.x ;
-    pt->y = hiPoint.y ;
+    pt->x = (int)hiPoint.x ;
+    pt->y = (int)hiPoint.y ;
 #endif
 }
 
@@ -1723,14 +1729,20 @@ void wxMacControl::GetRectInWindowCoords( Rect *r )
 
 void wxMacControl::GetBestRect( Rect *r ) 
 {
-    Rect    bestsize = { 0 , 0 , 0 , 0 } ;
     short   baselineoffset ;
     GetBestControlRect( m_controlRef , r , &baselineoffset ) ;
 }
 
 void wxMacControl::SetTitle( const wxString &title ) 
 {
-    UMASetControlTitle(  m_controlRef , title , m_font.GetEncoding() ) ;
+    wxFontEncoding encoding;
+
+    if ( m_font.Ok() )
+        encoding = m_font.GetEncoding();
+    else
+        encoding = wxFont::GetDefaultEncoding();
+    
+    UMASetControlTitle(  m_controlRef , title , encoding ) ;
 }
 
 void wxMacControl::GetFeatures( UInt32 * features )