]> git.saurik.com Git - wxWidgets.git/commitdiff
added native alignement support
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 28 Mar 2004 19:42:18 +0000 (19:42 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 28 Mar 2004 19:42:18 +0000 (19:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/window.cpp

index 1c98aa536bdf1e0d2f519f1e28eeb350921a784e..4ebd816b71c8a4307cb2b2fd2eaa31bbedc88634 100644 (file)
@@ -673,8 +673,18 @@ void wxWindowMac::MacUpdateControlFont()
            fontStyle.size = m_font.MacGetFontSize() ;
            fontStyle.flags = kControlUseFontMask | kControlUseFaceMask | kControlUseSizeMask ;
        }
+
+    fontStyle.just = teJustLeft ;
+    fontStyle.flags |= kControlUseJustMask ;
+    if ( ( GetWindowStyle() & wxALIGN_MASK ) & wxALIGN_CENTER_HORIZONTAL )
+        fontStyle.just = teJustCenter ;
+    else if ( ( GetWindowStyle() & wxALIGN_MASK ) & wxALIGN_RIGHT )
+        fontStyle.just = teJustRight ;
+
+    
     fontStyle.foreColor = MAC_WXCOLORREF(GetForegroundColour().GetPixel() ) ;
     fontStyle.flags |= kControlUseForeColorMask ;
+       
        ::SetControlFontStyle( (ControlRef) m_macControl , &fontStyle );
        Refresh() ;
 }