{----------------------------------------------------------------------------- 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: JvXPContainer.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.sourceforge.net Known Issues: -----------------------------------------------------------------------------} // $Id: JvXPContainer.pas 10613 2006-05-19 19:21:43Z jfudickar $ unit JvXPContainer; {$I jvcl.inc} interface uses {$IFDEF USEJVCL} {$IFDEF UNITVERSIONING} JclUnitVersioning, {$ENDIF UNITVERSIONING} {$ENDIF USEJVCL} TypInfo, Classes, Windows, Controls, Graphics, StdCtrls, ExtCtrls, {$IFDEF USEJVCL} JvJCLUtils, {$ENDIF USEJVCL} JvXPCore, JvXPCoreUtils; type TJvXPPaintEvent = procedure(Sender: TObject; Rect: TRect; ACanvas: TCanvas; AFont: TFont) of object; TJvXPEnabledMode = (emAffectChilds, emNormal); TJvXPCustomContainer = class(TJvXPCustomControl) private FAlignment: TAlignment; FBorderWidth: TBorderWidth; FBoundColor: TColor; FBoundLines: TJvXPBoundLines; FEnabledMode: TJvXPEnabledMode; FFocusable: Boolean; FGlyph: TBitmap; FGlyphLayout: TJvXPGlyphLayout; FLayout: TTextLayout; FShowBoundLines: Boolean; FShowCaption: Boolean; FSpacing: Byte; FWordWrap: Boolean; FOnEnabledChanged: TNotifyEvent; FOnPaint: TJvXPPaintEvent; procedure SetAlignment(Value: TAlignment); procedure SetBorderWidth(Value: TBorderWidth); procedure SetBoundColor(Value: TColor); procedure SetBoundLines(Value: TJvXPBoundLines); procedure SetEnabledMode(Value: TJvXPEnabledMode); procedure SetGlyph(Value: TBitmap); procedure SetGlyphLayout(Value: TJvXPGlyphLayout); procedure SetLayout(Value: TTextLayout); procedure SetShowBoundLines(Value: Boolean); procedure SetShowCaption(Value: Boolean); procedure SetSpacing(Value: Byte); procedure SetWordWrap(Value: Boolean); protected {$IFDEF VCL} procedure CreateParams(var Params: TCreateParams); override; {$ENDIF VCL} procedure AdjustClientRect(var Rect: TRect); override; procedure HookEnabledChanged; override; procedure HookMouseDown; override; procedure HookPosChanged; override; procedure Paint; override; property Alignment: TAlignment read FAlignment write SetAlignment default taCenter; property BorderWidth: TBorderWidth read FBorderWidth write SetBorderWidth default 0; property BoundColor: TColor read FBoundColor write SetBoundColor default clGray; property BoundLines: TJvXPBoundLines read FBoundLines write SetBoundLines default []; property EnabledMode: TJvXPEnabledMode read FEnabledMode write SetEnabledMode default emNormal; property Focusable: Boolean read FFocusable write FFocusable default False; property Glyph: TBitmap read FGlyph write SetGlyph; property GlyphLayout: TJvXPGlyphLayout read FGlyphLayout write SetGlyphLayout default glCenter; property Layout: TTextLayout read FLayout write SetLayout default tlCenter; property Height default 41; property ShowBoundLines: Boolean read FShowBoundLines write SetShowBoundLines default True; property ShowCaption: Boolean read FShowCaption write SetShowCaption default False; property Spacing: Byte read FSpacing write SetSpacing default 5; property Width default 185; property WordWrap: Boolean read FWordWrap write SetWordWrap default False; property OnEnabledChanged: TNotifyEvent read FOnEnabledChanged write FOnEnabledChanged; property OnPaint: TJvXPPaintEvent read FOnPaint write FOnPaint; public constructor Create(AOwner: TComponent); override; destructor Destroy; override; end; TJvXPContainer = class(TJvXPCustomContainer) published property Alignment; {$IFDEF VCL} property AutoSize; {$ENDIF VCL} property BorderWidth; property BoundColor; property BoundLines; property Caption; property Color; property Enabled; property EnabledMode; property Focusable; property Glyph; property GlyphLayout; property Layout; property ParentColor; property ShowBoundLines; property ShowCaption; property Spacing; property WordWrap; property OnEnabledChanged; property OnDblClick; property OnPaint; property OnResize; //property BevelInner; //property BevelOuter; //property BevelWidth; //property BiDiMode; //property Ctl3D; //property DockSite; //property ParentBiDiMode; //property ParentCtl3D; //property TabOrder; //property TabStop; //property UseDockManager default True; property Align; property Anchors; //property AutoSize; property Constraints; {$IFDEF VCL} property DragCursor; property DragKind; property OnCanResize; {$ENDIF VCL} property DragMode; //property Enabled; property Font; property ParentFont; property ParentShowHint; property PopupMenu; property ShowHint; property Visible; //property OnDockDrop; //property OnDockOver; //property OnEndDock; //property OnGetSiteInfo; //property OnStartDock; //property OnUnDock; property OnClick; property OnConstrainedResize; property OnContextPopup; property OnDragDrop; property OnDragOver; property OnEndDrag; property OnEnter; property OnExit; property OnKeyDown; property OnKeyPress; property OnKeyUp; property OnMouseDown; property OnMouseEnter; property OnMouseLeave; property OnMouseMove; property OnMouseUp; property OnStartDrag; end; {$IFDEF USEJVCL} {$IFDEF UNITVERSIONING} const UnitVersioning: TUnitVersionInfo = ( RCSfile: '$URL: https://jvcl.svn.sourceforge.net/svnroot/jvcl/tags/JVCL3_32/run/JvXPContainer.pas $'; Revision: '$Revision: 10613 $'; Date: '$Date: 2006-05-19 21:21:43 +0200 (ven., 19 mai 2006) $'; LogPath: 'JVCL\run' ); {$ENDIF UNITVERSIONING} {$ENDIF USEJVCL} implementation //=== { TJvXPCustomContainer } =============================================== constructor TJvXPCustomContainer.Create(AOwner: TComponent); begin inherited Create(AOwner); ControlStyle := ControlStyle + [csAcceptsControls]; Height := 41; Width := 185; FAlignment := taCenter; FBoundColor := clGray; FBoundLines := []; FEnabledMode := emNormal; FFocusable := False; FGlyph := TBitmap.Create; FGlyph.Assign(nil); FGlyphLayout := glCenter; FLayout := tlCenter; FShowBoundLines := True; FShowCaption := False; FSpacing := 5; FWordWrap := False; end; destructor TJvXPCustomContainer.Destroy; begin FGlyph.Free; inherited Destroy; end; {$IFDEF VCL} procedure TJvXPCustomContainer.CreateParams(var Params: TCreateParams); begin inherited CreateParams(Params); with Params do WindowClass.Style := WindowClass.Style and not (CS_HREDRAW or CS_VREDRAW); end; {$ENDIF VCL} procedure TJvXPCustomContainer.HookEnabledChanged; var I: Integer; begin inherited HookEnabledChanged; if FEnabledMode = emAffectChilds then for I := 0 to ControlCount - 1 do Controls[I].Enabled := Enabled; if Assigned(FOnEnabledChanged) then FOnEnabledChanged(Self); end; procedure TJvXPCustomContainer.HookMouseDown; begin if FFocusable then inherited HookMouseDown else begin DrawState := DrawState + [dsClicked]; InternalRedraw; end; end; procedure TJvXPCustomContainer.HookPosChanged; begin inherited HookPosChanged; InternalRedraw; end; procedure TJvXPCustomContainer.AdjustClientRect(var Rect: TRect); begin inherited AdjustClientRect(Rect); JvXPAdjustBoundRect(BorderWidth, FShowBoundLines, FBoundLines, Rect); if not FGlyph.Empty then Inc(Rect.Left, FGlyph.Width); end; procedure TJvXPCustomContainer.SetAlignment(Value: TAlignment); begin if Value <> FAlignment then begin FAlignment := Value; InternalRedraw; end; end; procedure TJvXPCustomContainer.SetBoundColor(Value: TColor); begin if Value <> FBoundColor then begin FBoundColor := Value; InternalRedraw; end; end; procedure TJvXPCustomContainer.SetBoundLines(Value: TJvXPBoundLines); begin if Value <> FBoundLines then begin FBoundLines := Value; Realign; InternalRedraw; end; end; procedure TJvXPCustomContainer.SetBorderWidth(Value: TBorderWidth); begin if Value <> FBorderWidth then begin FBorderWidth := Value; Realign; InternalRedraw; end; end; procedure TJvXPCustomContainer.SetEnabledMode(Value: TJvXPEnabledMode); begin if Value <> FEnabledMode then begin FEnabledMode := Value; HookEnabledChanged; end; end; procedure TJvXPCustomContainer.SetGlyph(Value: TBitmap); begin if Value <> FGlyph then begin FGlyph.Assign(Value); Realign; InternalRedraw; end; end; procedure TJvXPCustomContainer.SetGlyphLayout(Value: TJvXPGlyphLayout); begin if FGlyphLayout <> Value then begin FGlyphLayout := Value; InternalRedraw; end; end; procedure TJvXPCustomContainer.SetLayout(Value: TTextLayout); begin if FLayout <> Value then begin FLayout := Value; InternalRedraw; end; end; procedure TJvXPCustomContainer.SetShowBoundLines(Value: Boolean); begin if Value <> FShowBoundLines then begin FShowBoundLines := Value; Realign; InternalRedraw; end; end; procedure TJvXPCustomContainer.SetShowCaption(Value: Boolean); begin if Value <> FShowCaption then begin FShowCaption := Value; InternalRedraw; end; end; procedure TJvXPCustomContainer.SetSpacing(Value: Byte); begin if Value <> FSpacing then begin FSpacing := Value; InternalRedraw; end; end; procedure TJvXPCustomContainer.SetWordWrap(Value: Boolean); begin if Value <> FWordWrap then begin FWordWrap := Value; InternalRedraw; end; end; procedure DxDrawText(AParent: TJvXPCustomControl; ACaption: TCaption; AFont: TFont; AAlignment: TAlignment; ALayout: TTextLayout; AWordWrap: Boolean; var ARect: TRect); const Alignments: array [TAlignment] of Word = (DT_LEFT, DT_RIGHT, DT_CENTER); WordWraps: array [Boolean] of Word = (0, DT_WORDBREAK); var DrawStyle: Longint; CalcRect: TRect; procedure DoDrawText(ACanvas: TCanvas; const ACaption: TCaption; var ARect: TRect; AFlags: Integer); begin {$IFDEF USEJVCL} DrawText(ACanvas, ACaption, -1, ARect, AFlags); {$ELSE} // (rom) Kludge! This will probably not work for CLX DrawText(ACanvas.Handle, PChar(ACaption), -1, ARect, AFlags); {$ENDIF USEJVCL} end; begin with AParent, Canvas do begin DrawStyle := Alignments[AAlignment]; if (DrawStyle <> DT_LEFT) and (ARect.Right - ARect.Left < TextWidth(ACaption)) then DrawStyle := DT_LEFT; DrawStyle := DrawStyle or DT_EXPANDTABS or WordWraps[AWordWrap] or DT_END_ELLIPSIS; if ALayout <> tlTop then begin CalcRect := ARect; DoDrawText(Canvas, ACaption, CalcRect, DrawStyle or DT_CALCRECT); if ALayout = tlBottom then OffsetRect(ARect, 0, ARect.Bottom - CalcRect.Bottom) else OffsetRect(ARect, 0, (ARect.Bottom - CalcRect.Bottom) div 2); end; DoDrawText(Canvas, ACaption, ARect, DrawStyle); end; end; procedure TJvXPCustomContainer.Paint; var Rect: TRect; begin with Canvas do begin Rect := GetClientRect; Brush.Color := Self.Color; FillRect(Rect); if csDesigning in ComponentState then DrawFocusRect(Rect); Brush.Style := bsClear; if (FShowBoundLines) and (FBoundLines <> []) then JvXPDrawBoundLines(Self.Canvas, FBoundLines, FBoundColor, Rect); JvXPAdjustBoundRect(BorderWidth, FShowBoundLines, FBoundLines, Rect); if Assigned(FOnPaint) then FOnPaint(Self, Rect, Self.Canvas, Font); if not FGlyph.Empty then begin FGlyph.Transparent := True; if FGlyphLayout = glBottom then Draw(Rect.Left, Rect.Bottom - FGlyph.Height, FGlyph); if FGlyphLayout = glCenter then Draw(Rect.Left, ((Rect.Bottom - Rect.Top) - FGlyph.Height) div 2 + 1, FGlyph); if FGlyphLayout = glTop then Draw(Rect.Left, Rect.Top, FGlyph); Inc(Rect.Left, FGlyph.Width); end; if FShowCaption then begin Font.Assign(Self.Font); InflateRect(Rect, -FSpacing, -1); if csDesigning in ComponentState then begin Pen.Color := clGray; Pen.Style := psSolid; MoveTo(Rect.Left, Rect.Top); LineTo(Rect.Left, Rect.Bottom); MoveTo(Rect.Right, Rect.Top); LineTo(Rect.Right, Rect.Bottom); end; {$IFDEF VisualCLX} Inc(Rect.Left, 4); Dec(Rect.Right, 4); {$ENDIF VisualCLX} DxDrawText(Self, Caption, Font, FAlignment, FLayout, FWordWrap, Rect); //JvXPPlaceText(Self, Canvas, Caption, Font, Enabled, False, FAlignment, // FWordWrap, Rect); end; end; end; {$IFDEF USEJVCL} {$IFDEF UNITVERSIONING} initialization RegisterUnitVersion(HInstance, UnitVersioning); finalization UnregisterUnitVersion(HInstance); {$ENDIF UNITVERSIONING} {$ENDIF USEJVCL} end.