{----------------------------------------------------------------------------- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/MPL-1.1.html Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is: JvDotNetUtils.PAS, released on 2004-01-01. The Initial Developer of the Original Code is Marc Hoffman. Portions created by Marc Hoffman are Copyright (C) 2002 APRIORI business solutions AG. Portions created by APRIORI business solutions AG are Copyright (C) 2002 APRIORI business solutions AG All Rights Reserved. Contributor(s): You may retrieve the latest version of this file at the Project JEDI's JVCL home page, located at http://jvcl.delphi-jedi.org Known Issues: -----------------------------------------------------------------------------} // $Id: JvDotNetUtils.pas 12461 2009-08-14 17:21:33Z obones $ unit JvDotNetUtils; {$I jvcl.inc} interface uses {$IFDEF UNITVERSIONING} JclUnitVersioning, {$ENDIF UNITVERSIONING} Windows, Messages, Classes, Graphics, Controls; procedure DotNetMessageHandler(var Msg: TMessage; AControl: TWinControl; AColor: TColor; var InControl: Boolean); procedure DrawDotNetControl(Control: TWinControl; AColor: TColor; InControl: Boolean); procedure SetDotNetFrameColors(FocusedColor, UnfocusedColor: TColor); {$IFDEF UNITVERSIONING} const UnitVersioning: TUnitVersionInfo = ( RCSfile: '$URL: https://jvcl.svn.sourceforge.net/svnroot/jvcl/tags/JVCL3_39/run/JvDotNetUtils.pas $'; Revision: '$Revision: 12461 $'; Date: '$Date: 2009-08-14 19:21:33 +0200 (ven., 14 août 2009) $'; LogPath: 'JVCL\run' ); {$ENDIF UNITVERSIONING} implementation var InternalFocusedColor: TColor = TColor($00733800); InternalUnfocusedColor: TColor = clGray; procedure SetDotNetFrameColors(FocusedColor, UnfocusedColor: TColor); begin InternalFocusedColor := FocusedColor; InternalUnfocusedColor := UnfocusedColor; end; procedure DotNetMessageHandler(var Msg: TMessage; AControl: TWinControl; AColor: TColor; var InControl: Boolean); begin case Msg.Msg of CM_MOUSEENTER, CM_MOUSELEAVE, WM_SETFOCUS, WM_KILLFOCUS, WM_NCPAINT: begin // (rom) moved the if statements here for improved efficiency if Msg.Msg = CM_MOUSEENTER then InControl := True else if Msg.Msg = CM_MOUSELEAVE then InControl := False; DrawDotNetControl(AControl, AColor, InControl); end; end; end; procedure DrawDotNetControl(Control: TWinControl; AColor: TColor; InControl: Boolean); var DC: HDC; R: TRect; Canvas: TCanvas; begin DC := GetWindowDC(Control.Handle); try GetWindowRect(Control.Handle, R); OffsetRect(R, -R.Left, -R.Top); Canvas := TCanvas.Create; with Canvas do try Handle := DC; Brush.Color := InternalUnfocusedColor; if Control.Focused or InControl then Brush.Color := InternalFocusedColor; FrameRect(R); InflateRect(R, -1, -1); if not (Control.Focused or InControl) then Brush.Color := AColor; FrameRect(R); finally Free; end; finally ReleaseDC(Control.Handle, DC); end; end; {$IFDEF UNITVERSIONING} initialization RegisterUnitVersion(HInstance, UnitVersioning); finalization UnregisterUnitVersion(HInstance); {$ENDIF UNITVERSIONING} end.