Index: vcl/aqua/source/gdi/salnativewidgets.cxx =================================================================== RCS file: /cvs/gsl/vcl/aqua/source/gdi/Attic/salnativewidgets.cxx,v retrieving revision 1.1.2.33 diff -u -r1.1.2.33 salnativewidgets.cxx --- vcl/aqua/source/gdi/salnativewidgets.cxx 23 May 2007 13:22:40 -0000 1.1.2.33 +++ vcl/aqua/source/gdi/salnativewidgets.cxx 25 May 2007 19:26:16 -0000 @@ -257,7 +257,7 @@ if( nPart == PART_ENTIRE_CONTROL || nPart == PART_TABS_DRAW_RTL || nPart == HAS_BACKGROUND_TEXTURE ) - return false; + return true; break; case CTRL_TOOLBAR: // ** TO DO + CHECK IF NEEDED ** @@ -497,9 +497,9 @@ switch( nType ) { // [FIXME] wait for clipping before to add the new controls below - //case CTRL_FIXEDBORDER: - //case CTRL_TAB_PANE: - //case CTRL_TAB_BODY: + case CTRL_FIXEDBORDER: + case CTRL_TAB_PANE: + case CTRL_TAB_BODY: case CTRL_TOOLBAR: { if( BeginGraphics() ) Index: vcl/aqua/source/window/salframe.cxx =================================================================== RCS file: /cvs/gsl/vcl/aqua/source/window/salframe.cxx,v retrieving revision 1.46.112.88 diff -u -r1.46.112.88 salframe.cxx --- vcl/aqua/source/window/salframe.cxx 24 May 2007 15:05:19 -0000 1.46.112.88 +++ vcl/aqua/source/window/salframe.cxx 25 May 2007 19:26:16 -0000 @@ -817,6 +817,19 @@ { StyleSettings aStyleSettings = rSettings.GetStyleSettings(); + // Background Color + Color aBackgroundColor = Color( 0xEC, 0xEC, 0xEC ); + aStyleSettings.Set3DColors( aBackgroundColor ); + aStyleSettings.SetFaceColor( aBackgroundColor ); + + // [FIXME] Dialog Color is the one to modify to complete Aqua Theme on windows + aStyleSettings.SetDialogColor( aBackgroundColor ); + aStyleSettings.SetLightBorderColor( aBackgroundColor ); + + // Selected Background Color + Color aSelectBackgroundColor = Color( 0x34, 0x70, 0xCC ); + aStyleSettings.SetHighlightColor( aSelectBackgroundColor ); + // get the system font settings Font aFont = aStyleSettings.GetAppFont(); aFont.SetHeight( 13 );