git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@55 05c56307-c608-d34a-929d-697000501d7a
768 lines
26 KiB
ObjectPascal
768 lines
26 KiB
ObjectPascal
|
|
{********************************************************************}
|
|
{ }
|
|
{ Developer Express Visual Component Library }
|
|
{ ExpressLayoutControl main components }
|
|
{ }
|
|
{ Copyright (c) 2001-2009 Developer Express Inc. }
|
|
{ ALL RIGHTS RESERVED }
|
|
{ }
|
|
{ The entire contents of this file is protected by U.S. and }
|
|
{ International Copyright Laws. Unauthorized reproduction, }
|
|
{ reverse-engineering, and distribution of all or any portion of }
|
|
{ the code contained in this file is strictly prohibited and may }
|
|
{ result in severe civil and criminal penalties and will be }
|
|
{ prosecuted to the maximum extent possible under the law. }
|
|
{ }
|
|
{ RESTRICTIONS }
|
|
{ }
|
|
{ THIS SOURCE CODE AND ALL RESULTING INTERMEDIATE FILES }
|
|
{ (DCU, OBJ, DLL, ETC.) ARE CONFIDENTIAL AND PROPRIETARY TRADE }
|
|
{ SECRETS OF DEVELOPER EXPRESS INC. THE REGISTERED DEVELOPER IS }
|
|
{ LICENSED TO DISTRIBUTE THE EXPRESSLAYOUTCONTROL AND ALL }
|
|
{ ACCOMPANYING VCL CONTROLS AS PART OF AN EXECUTABLE PROGRAM }
|
|
{ ONLY. }
|
|
{ }
|
|
{ THE SOURCE CODE CONTAINED WITHIN THIS FILE AND ALL RELATED }
|
|
{ FILES OR ANY PORTION OF ITS CONTENTS SHALL AT NO TIME BE }
|
|
{ COPIED, TRANSFERRED, SOLD, DISTRIBUTED, OR OTHERWISE MADE }
|
|
{ AVAILABLE TO OTHER INDIVIDUALS WITHOUT EXPRESS WRITTEN CONSENT }
|
|
{ AND PERMISSION FROM DEVELOPER EXPRESS INC. }
|
|
{ }
|
|
{ CONSULT THE END USER LICENSE AGREEMENT FOR INFORMATION ON }
|
|
{ ADDITIONAL RESTRICTIONS. }
|
|
{ }
|
|
{********************************************************************}
|
|
|
|
unit dxLayoutPainters;
|
|
|
|
{$I cxVer.inc}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, Types, Windows, Graphics, dxLayoutLookAndFeels, dxLayoutControl,
|
|
cxLookAndFeels, cxLookAndFeelPainters, dxLayoutCommon;
|
|
|
|
type
|
|
TdxLayoutGroupStandardViewInfo = class;
|
|
TdxLayoutGroupWebViewInfo = class;
|
|
TdxLayoutGroupCaptionStandardViewInfo = class;
|
|
|
|
{ Painters }
|
|
|
|
TdxLayoutGroupStandardPainter = class(TdxLayoutGroupPainter)
|
|
private
|
|
function GetViewInfo: TdxLayoutGroupStandardViewInfo;
|
|
protected
|
|
function GetCaptionPainterClass: TdxCustomLayoutItemCaptionPainterClass; override;
|
|
procedure DoDrawBorders; override;
|
|
procedure DrawFrame; virtual;
|
|
property ViewInfo: TdxLayoutGroupStandardViewInfo read GetViewInfo;
|
|
end;
|
|
|
|
TdxLayoutGroupOfficePainter = class(TdxLayoutGroupStandardPainter)
|
|
protected
|
|
function GetCaptionPainterClass: TdxCustomLayoutItemCaptionPainterClass; override;
|
|
procedure DrawFrame; override;
|
|
end;
|
|
|
|
TdxLayoutGroupWebPainter = class(TdxLayoutGroupPainter)
|
|
private
|
|
function GetLayoutLookAndFeel: TdxLayoutWebLookAndFeel;
|
|
function GetViewInfo: TdxLayoutGroupWebViewInfo;
|
|
protected
|
|
procedure DoDrawBorders; override;
|
|
function HasCaptionBackground: Boolean; override;
|
|
procedure DrawCaptionSeparator; virtual;
|
|
procedure DrawFrame; virtual;
|
|
property LayoutLookAndFeel: TdxLayoutWebLookAndFeel read GetLayoutLookAndFeel;
|
|
property ViewInfo: TdxLayoutGroupWebViewInfo read GetViewInfo;
|
|
end;
|
|
|
|
TdxLayoutGroupCaptionStandardPainter = class(TdxLayoutGroupCaptionPainter)
|
|
private
|
|
function GetViewInfo: TdxLayoutGroupCaptionStandardViewInfo;
|
|
protected
|
|
procedure DoDrawText; override;
|
|
property ViewInfo: TdxLayoutGroupCaptionStandardViewInfo read GetViewInfo;
|
|
end;
|
|
|
|
{ ViewInfos }
|
|
|
|
// standard
|
|
|
|
TdxLayoutGroupCaptionStandardViewInfo = class(TdxLayoutGroupCaptionViewInfo)
|
|
private
|
|
function GetItemViewInfo: TdxLayoutGroupStandardViewInfo;
|
|
protected
|
|
function GetAlignHorz: TAlignment; override;
|
|
function GetContentOffsets: TRect; override;
|
|
function GetTextAreaBounds: TRect; override;
|
|
property ItemViewInfo: TdxLayoutGroupStandardViewInfo read GetItemViewInfo;
|
|
end;
|
|
|
|
TdxLayoutGroupStandardViewInfo = class(TdxLayoutGroupViewInfo)
|
|
private
|
|
function GetStandardLookAndFeel: TdxLayoutStandardLookAndFeel;
|
|
protected
|
|
function GetCaptionViewInfoClass: TdxCustomLayoutItemCaptionViewInfoClass; override;
|
|
function GetMinVisibleWidth: Integer; override;
|
|
function GetButtonsViewInfoOffset: Integer; override;
|
|
function GetCaptionViewInfoOffset: Integer; override;
|
|
|
|
function GetFrameBounds: TRect; virtual;
|
|
|
|
property CaptionViewInfoOffset: Integer read GetCaptionViewInfoOffset;
|
|
property LayoutLookAndFeel: TdxLayoutStandardLookAndFeel read GetStandardLookAndFeel;
|
|
public
|
|
property FrameBounds: TRect read GetFrameBounds;
|
|
end;
|
|
|
|
// office
|
|
|
|
TdxLayoutGroupCaptionOfficeViewInfo = class(TdxLayoutGroupCaptionViewInfo)
|
|
protected
|
|
function GetContentOffsets: TRect; override;
|
|
public
|
|
function GetTextAreaBounds: TRect; override;
|
|
end;
|
|
|
|
TdxLayoutGroupOfficeViewInfo = class(TdxLayoutGroupStandardViewInfo)
|
|
protected
|
|
function GetCaptionViewInfoClass: TdxCustomLayoutItemCaptionViewInfoClass; override;
|
|
function GetCaptionViewInfoOffset: Integer; override;
|
|
function GetFrameBounds: TRect; override;
|
|
function GetMinVisibleWidth: Integer; override;
|
|
end;
|
|
|
|
// web
|
|
|
|
TdxLayoutGroupCaptionWebViewInfo = class(TdxLayoutGroupCaptionViewInfo)
|
|
private
|
|
function GetItemViewInfo: TdxLayoutGroupWebViewInfo;
|
|
function GetWebLookAndFeel: TdxLayoutWebLookAndFeel;
|
|
function GetOptionsEx: TdxLayoutWebLookAndFeelGroupCaptionOptions;
|
|
function GetSeparatorWidth: Integer;
|
|
protected
|
|
function GetAlignVert: TdxAlignmentVert; override;
|
|
function GetColor: TColor; override;
|
|
function IsDefaultColor: Boolean; override;
|
|
|
|
property ItemViewInfo: TdxLayoutGroupWebViewInfo read GetItemViewInfo;
|
|
property LookAndFeel: TdxLayoutWebLookAndFeel read GetWebLookAndFeel;
|
|
property Options: TdxLayoutWebLookAndFeelGroupCaptionOptions read GetOptionsEx;
|
|
public
|
|
function CalculateHeight: Integer; override;
|
|
|
|
property SeparatorWidth: Integer read GetSeparatorWidth;
|
|
end;
|
|
|
|
TdxLayoutGroupWebViewInfo = class(TdxLayoutGroupViewInfo)
|
|
private
|
|
function GetCaptionViewInfo: TdxLayoutGroupCaptionWebViewInfo;
|
|
function GetWebLookAndFeel: TdxLayoutWebLookAndFeel;
|
|
function GetOptionsEx: TdxLayoutWebLookAndFeelGroupOptions;
|
|
protected
|
|
procedure CalculateButtonsViewInfoBounds; override;
|
|
procedure CalculateCaptionViewInfoBounds; override;
|
|
function GetCaptionViewInfoClass: TdxCustomLayoutItemCaptionViewInfoClass; override;
|
|
function GetCaptionViewInfoOffset: Integer; override;
|
|
function GetMinVisibleWidth: Integer; override;
|
|
function GetRestSpaceBounds: TRect; override;
|
|
|
|
function GetCaptionSeparatorAreaBounds: TRect; virtual;
|
|
function GetCaptionSeparatorBounds: TRect; virtual;
|
|
|
|
property LookAndFeel: TdxLayoutWebLookAndFeel read GetWebLookAndFeel;
|
|
property Options: TdxLayoutWebLookAndFeelGroupOptions read GetOptionsEx;
|
|
public
|
|
property CaptionSeparatorAreaBounds: TRect read GetCaptionSeparatorAreaBounds;
|
|
property CaptionSeparatorBounds: TRect read GetCaptionSeparatorBounds;
|
|
property CaptionViewInfo: TdxLayoutGroupCaptionWebViewInfo read GetCaptionViewInfo;
|
|
end;
|
|
|
|
{ TdxLayoutGroupCaptionCxLookAndFeelViewInfo }
|
|
|
|
TdxLayoutGroupCaptionCxLookAndFeelViewInfo = class(TdxLayoutGroupCaptionStandardViewInfo)
|
|
private
|
|
function GetIsSkinPainterUsed: Boolean;
|
|
function GetLookAndFeelPainter: TcxCustomLookAndFeelPainterClass;
|
|
protected
|
|
function GetContentOffsets: TRect; override;
|
|
public
|
|
property IsSkinPainterUsed: Boolean read GetIsSkinPainterUsed;
|
|
property LookAndFeelPainter: TcxCustomLookAndFeelPainterClass read GetLookAndFeelPainter;
|
|
end;
|
|
|
|
{ TdxLayoutGroupCxLookAndFeelViewInfo }
|
|
|
|
TdxLayoutGroupCxLookAndFeelViewInfo = class(TdxLayoutGroupStandardViewInfo)
|
|
private
|
|
function GetLookAndFeelPainter: TcxCustomLookAndFeelPainterClass;
|
|
function GetCaptionViewInfo: TdxLayoutGroupCaptionCxLookAndFeelViewInfo;
|
|
protected
|
|
function CanDrawBackground: Boolean; override;
|
|
function GetCaptionViewInfoClass: TdxCustomLayoutItemCaptionViewInfoClass; override;
|
|
function GetFrameBounds: TRect; override;
|
|
function GetIsSkinPainterUsed: Boolean; override;
|
|
//
|
|
property LookAndFeelPainter: TcxCustomLookAndFeelPainterClass read GetLookAndFeelPainter;
|
|
public
|
|
property CaptionViewInfo: TdxLayoutGroupCaptionCxLookAndFeelViewInfo read GetCaptionViewInfo;
|
|
end;
|
|
|
|
{ TdxLayoutGroupCaptionCxLookAndFeelPainter }
|
|
|
|
TdxLayoutGroupCaptionCxLookAndFeelPainter = class(TdxLayoutGroupCaptionPainter)
|
|
private
|
|
function GetLookAndFeelPainter: TcxCustomLookAndFeelPainterClass;
|
|
protected
|
|
procedure DoDrawText; override;
|
|
public
|
|
property LookAndFeelPainter: TcxCustomLookAndFeelPainterClass read GetLookAndFeelPainter;
|
|
end;
|
|
|
|
{ TdxLayoutGroupCxLookAndFeelPainter }
|
|
|
|
TdxLayoutGroupCxLookAndFeelPainter = class(TdxLayoutGroupStandardPainter)
|
|
private
|
|
function GetLookAndFeelPainter: TcxCustomLookAndFeelPainterClass;
|
|
protected
|
|
function GetCaptionPainterClass: TdxCustomLayoutItemCaptionPainterClass; override;
|
|
function HasCaptionBackground: Boolean; override;
|
|
procedure DrawFrame; override;
|
|
public
|
|
property LookAndFeelPainter: TcxCustomLookAndFeelPainterClass read GetLookAndFeelPainter;
|
|
end;
|
|
|
|
{ TdxLayoutItemCaptionCxLookAndFeelViewInfo }
|
|
|
|
TdxLayoutItemCaptionCxLookAndFeelViewInfo = class(TdxLayoutItemCaptionViewInfo)
|
|
private
|
|
function GetLookAndFeelPainter: TcxCustomLookAndFeelPainterClass;
|
|
public
|
|
property LookAndFeelPainter: TcxCustomLookAndFeelPainterClass read GetLookAndFeelPainter;
|
|
end;
|
|
|
|
{ TdxLayoutItemCxLookAndFeelViewInfo }
|
|
|
|
TdxLayoutItemCxLookAndFeelViewInfo = class(TdxLayoutItemViewInfo)
|
|
protected
|
|
function CanDrawBackground: Boolean; override;
|
|
function GetCaptionViewInfoClass: TdxCustomLayoutItemCaptionViewInfoClass; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
{$IFDEF DELPHI7}
|
|
UxTheme, Themes,
|
|
{$ENDIF}
|
|
Math, cxGraphics, cxGeometry;
|
|
|
|
type
|
|
TdxLayoutControlViewInfoAccess = class(TdxLayoutControlViewInfo);
|
|
TdxCustomLayoutItemCaptionViewInfoAccess = class(TdxCustomLayoutItemCaptionViewInfo);
|
|
|
|
{ TdxLayoutGroupStandardPainter }
|
|
|
|
function TdxLayoutGroupStandardPainter.GetViewInfo: TdxLayoutGroupStandardViewInfo;
|
|
begin
|
|
Result := TdxLayoutGroupStandardViewInfo(inherited ViewInfo);
|
|
end;
|
|
|
|
function TdxLayoutGroupStandardPainter.GetCaptionPainterClass: TdxCustomLayoutItemCaptionPainterClass;
|
|
begin
|
|
Result := TdxLayoutGroupCaptionStandardPainter;
|
|
end;
|
|
|
|
procedure TdxLayoutGroupStandardPainter.DoDrawBorders;
|
|
begin
|
|
inherited;
|
|
DrawFrame;
|
|
end;
|
|
|
|
procedure TdxLayoutGroupStandardPainter.DrawFrame;
|
|
var
|
|
R: TRect;
|
|
begin
|
|
{$IFDEF DELPHI7}
|
|
if ThemeServices.ThemesEnabled then
|
|
begin
|
|
ThemeServices.DrawElement(Canvas.Handle, ThemeServices.GetElementDetails(tbGroupBoxNormal),
|
|
ViewInfo.FrameBounds);
|
|
Exit;
|
|
end;
|
|
{$ENDIF}
|
|
R := ViewInfo.FrameBounds;
|
|
Canvas.DrawEdge(R, True, True);
|
|
InflateRect(R, -1, -1);
|
|
Canvas.DrawEdge(R, False, False);
|
|
end;
|
|
|
|
{ TdxLayoutGroupOfficePainter }
|
|
|
|
function TdxLayoutGroupOfficePainter.GetCaptionPainterClass: TdxCustomLayoutItemCaptionPainterClass;
|
|
begin
|
|
Result := TdxLayoutGroupCaptionPainter;
|
|
end;
|
|
|
|
procedure TdxLayoutGroupOfficePainter.DrawFrame;
|
|
var
|
|
R: TRect;
|
|
begin
|
|
R := ViewInfo.FrameBounds;
|
|
with Canvas do
|
|
begin
|
|
DrawEdge(R, True, True, [bTop]);
|
|
Inc(R.Top);
|
|
DrawEdge(R, False, False, [bTop]);
|
|
end;
|
|
end;
|
|
|
|
{ TdxLayoutGroupWebPainter }
|
|
|
|
function TdxLayoutGroupWebPainter.GetLayoutLookAndFeel: TdxLayoutWebLookAndFeel;
|
|
begin
|
|
Result := TdxLayoutWebLookAndFeel(inherited LayoutLookAndFeel);
|
|
end;
|
|
|
|
function TdxLayoutGroupWebPainter.GetViewInfo: TdxLayoutGroupWebViewInfo;
|
|
begin
|
|
Result := TdxLayoutGroupWebViewInfo(inherited ViewInfo);
|
|
end;
|
|
|
|
procedure TdxLayoutGroupWebPainter.DoDrawBorders;
|
|
begin
|
|
DrawFrame;
|
|
DrawCaptionSeparator;
|
|
inherited;
|
|
end;
|
|
|
|
function TdxLayoutGroupWebPainter.HasCaptionBackground: Boolean;
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
procedure TdxLayoutGroupWebPainter.DrawCaptionSeparator;
|
|
begin
|
|
with Canvas do
|
|
begin
|
|
Brush.Color := ViewInfo.Color;
|
|
FillRect(ViewInfo.CaptionSeparatorAreaBounds);
|
|
Brush.Color := ViewInfo.Options.GetFrameColor;
|
|
FillRect(ViewInfo.CaptionSeparatorBounds);
|
|
end;
|
|
end;
|
|
|
|
procedure TdxLayoutGroupWebPainter.DrawFrame;
|
|
var
|
|
R: TRect;
|
|
I: Integer;
|
|
begin
|
|
if not ViewInfo.CaptionViewInfo.IsTransparent then
|
|
begin
|
|
Canvas.Brush.Color := ViewInfo.CaptionViewInfo.Color;
|
|
R := cxRectInflate(ViewInfo.Bounds, -ViewInfo.Options.FrameWidth, -ViewInfo.Options.FrameWidth);
|
|
R.Bottom := R.Top + Max(ViewInfo.CaptionViewInfo.CalculateHeight, ViewInfo.ButtonsViewInfo.CalculateHeight);
|
|
Canvas.FillRect(R);
|
|
end;
|
|
R := ViewInfo.Bounds;
|
|
for I := 1 to ViewInfo.Options.FrameWidth do
|
|
begin
|
|
Canvas.FrameRect(R, ViewInfo.Options.GetFrameColor);
|
|
InflateRect(R, -1, -1);
|
|
end;
|
|
end;
|
|
|
|
{ TdxLayoutGroupCaptionStandardPainter }
|
|
|
|
procedure TdxLayoutGroupCaptionStandardPainter.DoDrawText;
|
|
{$IFDEF DELPHI7}
|
|
const
|
|
Enableds: array[Boolean] of Integer = (DTT_GRAYED, 0);
|
|
{$ENDIF}
|
|
begin
|
|
{$IFDEF DELPHI7}
|
|
if (ViewInfo.TextColor = clDefault) and ThemeServices.ThemesEnabled then
|
|
with ViewInfo do
|
|
ThemeServices.DrawText(Canvas.Handle, ThemeServices.GetElementDetails(tbGroupBoxNormal),
|
|
Text, TextAreaBounds, cxFlagsToDTFlags(CalculateTextFlags), Enableds[Enabled])
|
|
else
|
|
inherited;
|
|
{$ELSE}
|
|
inherited;
|
|
{$ENDIF}
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionStandardPainter.GetViewInfo: TdxLayoutGroupCaptionStandardViewInfo;
|
|
begin
|
|
Result := inherited ViewInfo as TdxLayoutGroupCaptionStandardViewInfo;
|
|
end;
|
|
|
|
{ TdxLayoutGroupStandardCaptionViewInfo }
|
|
|
|
function TdxLayoutGroupCaptionStandardViewInfo.GetItemViewInfo: TdxLayoutGroupStandardViewInfo;
|
|
begin
|
|
Result := TdxLayoutGroupStandardViewInfo(inherited ItemViewInfo);
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionStandardViewInfo.GetAlignHorz: TAlignment;
|
|
begin
|
|
Result := taCenter;
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionStandardViewInfo.GetContentOffsets: TRect;
|
|
begin
|
|
Result := Rect(2, 0, 2, 0);
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionStandardViewInfo.GetTextAreaBounds: TRect;
|
|
begin
|
|
Result := inherited GetTextAreaBounds;
|
|
if IsTextVisible and IsImageVisible and (GetTextHeight < GetImageHeight) then
|
|
Result := cxRectOffset(Result, 0, (GetImageHeight - GetTextHeight) div 2);
|
|
end;
|
|
|
|
{ TdxLayoutGroupStandardViewInfo }
|
|
|
|
function TdxLayoutGroupStandardViewInfo.GetStandardLookAndFeel: TdxLayoutStandardLookAndFeel;
|
|
begin
|
|
Result := TdxLayoutStandardLookAndFeel(inherited LayoutLookAndFeel);
|
|
end;
|
|
|
|
function TdxLayoutGroupStandardViewInfo.GetCaptionViewInfoClass: TdxCustomLayoutItemCaptionViewInfoClass;
|
|
begin
|
|
Result := TdxLayoutGroupCaptionStandardViewInfo;
|
|
end;
|
|
|
|
function TdxLayoutGroupStandardViewInfo.GetMinVisibleWidth: Integer;
|
|
begin
|
|
Result := inherited GetMinVisibleWidth;
|
|
if HasCaption then
|
|
Inc(Result, 2 * CaptionViewInfoOffset)
|
|
else
|
|
if HasButtons then
|
|
Inc(Result, 2 * ButtonsViewInfoOffset);
|
|
end;
|
|
|
|
function TdxLayoutGroupStandardViewInfo.GetButtonsViewInfoOffset: Integer;
|
|
begin
|
|
Result := CaptionViewInfoOffset;
|
|
end;
|
|
|
|
function TdxLayoutGroupStandardViewInfo.GetCaptionViewInfoOffset: Integer;
|
|
begin
|
|
Result := LayoutLookAndFeel.HDLUToPixels(CaptionViewInfo.Font, 7) - 2;
|
|
end;
|
|
|
|
function TdxLayoutGroupStandardViewInfo.GetFrameBounds: TRect;
|
|
begin
|
|
Result := Bounds;
|
|
Result.Top := FCaptionAreaBounds.Top;
|
|
Inc(Result.Top, LayoutLookAndFeel.VDLUToPixels(CaptionViewInfo.Font, 4) -
|
|
LayoutLookAndFeel.FrameWidths[sdTop] div 2 +
|
|
(TdxCustomLayoutItemCaptionViewInfoAccess(CaptionViewInfo).GetAvailableHeight -
|
|
TdxCustomLayoutItemCaptionViewInfoAccess(CaptionViewInfo).GetAvailableTextHeight) div 2);
|
|
end;
|
|
|
|
{ TdxLayoutGroupOfficeCaptionViewInfo }
|
|
|
|
function TdxLayoutGroupCaptionOfficeViewInfo.GetTextAreaBounds: TRect;
|
|
begin
|
|
Result := inherited GetTextAreaBounds;
|
|
if IsTextVisible and IsImageVisible and (GetTextHeight < GetImageHeight) then
|
|
Result := cxRectOffset(Result, 0, (GetImageHeight - GetTextHeight) div 2);
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionOfficeViewInfo.GetContentOffsets: TRect;
|
|
var
|
|
AOffset: Integer;
|
|
begin
|
|
AOffset := LayoutLookAndFeel.HDLUToPixels(Font, 5);
|
|
Result := Rect(AOffset, 0, AOffset, 0);
|
|
if AlignHorz = taLeftJustify then
|
|
Result.Left := 0;
|
|
if AlignHorz = taRightJustify then
|
|
Result.Right := 0;
|
|
end;
|
|
|
|
{ TdxLayoutGroupOfficeViewInfo }
|
|
|
|
function TdxLayoutGroupOfficeViewInfo.GetCaptionViewInfoClass: TdxCustomLayoutItemCaptionViewInfoClass;
|
|
begin
|
|
Result := TdxLayoutGroupCaptionOfficeViewInfo;
|
|
end;
|
|
|
|
function TdxLayoutGroupOfficeViewInfo.GetCaptionViewInfoOffset: Integer;
|
|
begin
|
|
Result := 0;
|
|
end;
|
|
|
|
function TdxLayoutGroupOfficeViewInfo.GetFrameBounds: TRect;
|
|
begin
|
|
Result := inherited GetFrameBounds;
|
|
Result.Bottom := Result.Top + 2;
|
|
end;
|
|
|
|
function TdxLayoutGroupOfficeViewInfo.GetMinVisibleWidth: Integer;
|
|
begin
|
|
Result := inherited GetMinVisibleWidth;
|
|
if HasCaption or HasButtons then
|
|
Inc(Result, 20);
|
|
end;
|
|
|
|
{ TdxLayoutGroupCaptionWebViewInfo }
|
|
|
|
function TdxLayoutGroupCaptionWebViewInfo.GetItemViewInfo: TdxLayoutGroupWebViewInfo;
|
|
begin
|
|
Result := TdxLayoutGroupWebViewInfo(inherited ItemViewInfo);
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionWebViewInfo.GetWebLookAndFeel: TdxLayoutWebLookAndFeel;
|
|
begin
|
|
Result := TdxLayoutWebLookAndFeel(inherited LayoutLookAndFeel);
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionWebViewInfo.GetOptionsEx: TdxLayoutWebLookAndFeelGroupCaptionOptions;
|
|
begin
|
|
Result := TdxLayoutWebLookAndFeelGroupCaptionOptions(inherited Options);
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionWebViewInfo.GetSeparatorWidth: Integer;
|
|
begin
|
|
Result := Options.SeparatorWidth;
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionWebViewInfo.GetAlignVert: TdxAlignmentVert;
|
|
begin
|
|
Result := tavCenter;
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionWebViewInfo.GetColor: TColor;
|
|
begin
|
|
Result := Options.GetColor;
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionWebViewInfo.IsDefaultColor: Boolean;
|
|
begin
|
|
Result := Options.Color = clDefault;
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionWebViewInfo.CalculateHeight: Integer;
|
|
begin
|
|
if Visible then
|
|
Result := LookAndFeel.VDLUToPixels(Font, 11{12}) + Max(GetAvailableTextHeight, GetImageHeight) - GetAvailableTextHeight
|
|
else
|
|
Result := inherited CalculateHeight;
|
|
end;
|
|
|
|
{ TdxLayoutGroupWebViewInfo }
|
|
|
|
function TdxLayoutGroupWebViewInfo.GetCaptionViewInfo: TdxLayoutGroupCaptionWebViewInfo;
|
|
begin
|
|
Result := TdxLayoutGroupCaptionWebViewInfo(inherited CaptionViewInfo);
|
|
end;
|
|
|
|
function TdxLayoutGroupWebViewInfo.GetWebLookAndFeel: TdxLayoutWebLookAndFeel;
|
|
begin
|
|
Result := TdxLayoutWebLookAndFeel(inherited LayoutLookAndFeel);
|
|
end;
|
|
|
|
function TdxLayoutGroupWebViewInfo.GetOptionsEx: TdxLayoutWebLookAndFeelGroupOptions;
|
|
begin
|
|
Result := TdxLayoutWebLookAndFeelGroupOptions(inherited Options);
|
|
end;
|
|
|
|
procedure TdxLayoutGroupWebViewInfo.CalculateButtonsViewInfoBounds;
|
|
begin
|
|
inherited;
|
|
FButtonsAreaBounds := cxRectOffset(FButtonsAreaBounds, -Options.FrameWidth, Options.FrameWidth);
|
|
end;
|
|
|
|
procedure TdxLayoutGroupWebViewInfo.CalculateCaptionViewInfoBounds;
|
|
begin
|
|
inherited;
|
|
FCaptionAreaBounds := cxRectOffset(FCaptionAreaBounds, 0, Options.FrameWidth);
|
|
if Item.CaptionOptions.AlignHorz in [taLeftJustify, taRightJustify] then
|
|
FCaptionAreaBounds := cxRectOffset(FCaptionAreaBounds, Options.FrameWidth, 0, Item.CaptionOptions.AlignHorz = taLeftJustify);
|
|
end;
|
|
|
|
function TdxLayoutGroupWebViewInfo.GetCaptionViewInfoClass: TdxCustomLayoutItemCaptionViewInfoClass;
|
|
begin
|
|
Result := TdxLayoutGroupCaptionWebViewInfo;
|
|
end;
|
|
|
|
function TdxLayoutGroupWebViewInfo.GetCaptionViewInfoOffset: Integer;
|
|
begin
|
|
if Options.OffsetCaption then
|
|
Result := LookAndFeel.VDLUToPixels(CaptionViewInfo.Font, 5)
|
|
else
|
|
Result := LookAndFeel.DLUToPixels(CaptionViewInfo.Font, 2);
|
|
end;
|
|
|
|
function TdxLayoutGroupWebViewInfo.GetMinVisibleWidth: Integer;
|
|
begin
|
|
Result := inherited GetMinVisibleWidth;
|
|
if HasCaption then
|
|
Inc(Result, 2 * CaptionViewInfoOffset)
|
|
else
|
|
if HasButtons then
|
|
Inc(Result, 2 * ButtonsViewInfoOffset);
|
|
Inc(Result, 2 * Options.FrameWidth);
|
|
end;
|
|
|
|
function TdxLayoutGroupWebViewInfo.GetRestSpaceBounds: TRect;
|
|
begin
|
|
Result := cxRectInflate(inherited GetRestSpaceBounds, -Options.FrameWidth, -Options.FrameWidth);
|
|
if HasCaption then
|
|
Result.Top := CaptionViewInfo.Bounds.Bottom;
|
|
if Options.HasCaptionSeparator(HasCaption) then
|
|
Inc(Result.Top, CaptionViewInfo.SeparatorWidth);
|
|
end;
|
|
|
|
function TdxLayoutGroupWebViewInfo.GetCaptionSeparatorAreaBounds: TRect;
|
|
begin
|
|
Result := RestSpaceBounds;
|
|
Result.Bottom := Result.Top;
|
|
Dec(Result.Top, CaptionViewInfo.SeparatorWidth);
|
|
end;
|
|
|
|
function TdxLayoutGroupWebViewInfo.GetCaptionSeparatorBounds: TRect;
|
|
begin
|
|
Result := CaptionSeparatorAreaBounds;
|
|
if not Options.OffsetCaption and not Options.OffsetItems and
|
|
(Options.FrameWidth = 0) and (CaptionViewInfo.Color = Color) then
|
|
begin
|
|
Result.Left := ClientBounds.Left;
|
|
Result.Right := ClientBounds.Right;
|
|
end;
|
|
end;
|
|
|
|
{ TdxLayoutGroupCaptionCxLookAndFeelViewInfo }
|
|
|
|
function TdxLayoutGroupCaptionCxLookAndFeelViewInfo.GetContentOffsets: TRect;
|
|
begin
|
|
Result := LookAndFeelPainter.GroupBoxBorderSize(True, cxgpTop);
|
|
Result.Left := 2;
|
|
Result.Right := 2;
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionCxLookAndFeelViewInfo.GetIsSkinPainterUsed: Boolean;
|
|
begin
|
|
Result := TdxLayoutCxLookAndFeel(LayoutLookAndFeel).IsSkinPainterUsed;
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionCxLookAndFeelViewInfo.GetLookAndFeelPainter: TcxCustomLookAndFeelPainterClass;
|
|
begin
|
|
Result := TdxLayoutCxLookAndFeel(LayoutLookAndFeel).LookAndFeel.Painter;
|
|
end;
|
|
|
|
{ TdxLayoutGroupCxLookAndFeelViewInfo }
|
|
|
|
function TdxLayoutGroupCxLookAndFeelViewInfo.CanDrawBackground: Boolean;
|
|
begin
|
|
Result := not (IsDefaultColor or IsTransparent) or Specific.CanDrawBackground or
|
|
(Group.IsRoot and TdxLayoutControlViewInfoAccess(ContainerViewInfo).NeedHighlightRoot);
|
|
end;
|
|
|
|
function TdxLayoutGroupCxLookAndFeelViewInfo.GetCaptionViewInfoClass: TdxCustomLayoutItemCaptionViewInfoClass;
|
|
begin
|
|
Result := TdxLayoutGroupCaptionCxLookAndFeelViewInfo;
|
|
end;
|
|
|
|
function TdxLayoutGroupCxLookAndFeelViewInfo.GetFrameBounds: TRect;
|
|
begin
|
|
if IsSkinPainterUsed then
|
|
begin
|
|
Result := Bounds;
|
|
if HasCaption or HasButtons then
|
|
Result.Top := Result.Top + Max(CaptionViewInfo.GetAvailableHeight, ButtonsViewInfo.CalculateHeight);
|
|
end
|
|
else
|
|
Result := inherited GetFrameBounds;
|
|
end;
|
|
|
|
function TdxLayoutGroupCxLookAndFeelViewInfo.GetIsSkinPainterUsed: Boolean;
|
|
begin
|
|
Result := TdxLayoutCxLookAndFeel(LayoutLookAndFeel).IsSkinPainterUsed;
|
|
end;
|
|
|
|
function TdxLayoutGroupCxLookAndFeelViewInfo.GetLookAndFeelPainter: TcxCustomLookAndFeelPainterClass;
|
|
begin
|
|
Result := TdxLayoutCxLookAndFeel(LayoutLookAndFeel).LookAndFeelPainter;
|
|
end;
|
|
|
|
function TdxLayoutGroupCxLookAndFeelViewInfo.GetCaptionViewInfo: TdxLayoutGroupCaptionCxLookAndFeelViewInfo;
|
|
begin
|
|
Result := inherited CaptionViewInfo as TdxLayoutGroupCaptionCxLookAndFeelViewInfo;
|
|
end;
|
|
|
|
{ TdxLayoutGroupCaptionCxLookAndFeelPainter }
|
|
|
|
procedure TdxLayoutGroupCaptionCxLookAndFeelPainter.DoDrawText;
|
|
begin
|
|
with TdxLayoutGroupCaptionCxLookAndFeelViewInfo(ViewInfo) do
|
|
Self.Canvas.DrawText(Text, TextAreaBounds, CalculateTextFlags);
|
|
end;
|
|
|
|
function TdxLayoutGroupCaptionCxLookAndFeelPainter.GetLookAndFeelPainter: TcxCustomLookAndFeelPainterClass;
|
|
begin
|
|
Result := TdxLayoutCxLookAndFeel(LayoutLookAndFeel).LookAndFeelPainter;
|
|
end;
|
|
|
|
{ TdxLayoutGroupCxLookAndFeelPainter }
|
|
|
|
procedure TdxLayoutGroupCxLookAndFeelPainter.DrawFrame;
|
|
const
|
|
CaptionPositionMap: array[Boolean] of TcxGroupBoxCaptionPosition = (cxgpCenter, cxgpTop);
|
|
var
|
|
R: TRect;
|
|
begin
|
|
if ViewInfo.IsSkinPainterUsed and (ViewInfo.HasCaption or ViewInfo.HasBorder) then
|
|
begin
|
|
R := ViewInfo.Bounds;
|
|
R.Bottom := ViewInfo.FrameBounds.Top;
|
|
LookAndFeelPainter.DrawGroupBoxCaption(Canvas, R, cxgpTop);
|
|
end;
|
|
R := ViewInfo.FrameBounds;
|
|
LookAndFeelPainter.DrawGroupBoxFrame(Canvas, R, ViewInfo.Enabled, CaptionPositionMap[ViewInfo.HasCaption or ViewInfo.HasButtons]);
|
|
end;
|
|
|
|
function TdxLayoutGroupCxLookAndFeelPainter.GetCaptionPainterClass: TdxCustomLayoutItemCaptionPainterClass;
|
|
begin
|
|
Result := TdxLayoutGroupCaptionCxLookAndFeelPainter;
|
|
end;
|
|
|
|
function TdxLayoutGroupCxLookAndFeelPainter.HasCaptionBackground: Boolean;
|
|
begin
|
|
Result := not ViewInfo.IsSkinPainterUsed;
|
|
end;
|
|
|
|
function TdxLayoutGroupCxLookAndFeelPainter.GetLookAndFeelPainter: TcxCustomLookAndFeelPainterClass;
|
|
begin
|
|
Result := TdxLayoutCxLookAndFeel(LayoutLookAndFeel).LookAndFeelPainter;
|
|
end;
|
|
|
|
{ TdxLayoutItemCxLookAndFeelViewInfo }
|
|
|
|
function TdxLayoutItemCxLookAndFeelViewInfo.CanDrawBackground: Boolean;
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function TdxLayoutItemCxLookAndFeelViewInfo.GetCaptionViewInfoClass: TdxCustomLayoutItemCaptionViewInfoClass;
|
|
begin
|
|
Result := TdxLayoutItemCaptionCxLookAndFeelViewInfo;
|
|
end;
|
|
|
|
{ TdxLayoutItemCaptionCxLookAndFeelViewInfo }
|
|
|
|
function TdxLayoutItemCaptionCxLookAndFeelViewInfo.GetLookAndFeelPainter: TcxCustomLookAndFeelPainterClass;
|
|
begin
|
|
Result := TdxLayoutCxLookAndFeel(LayoutLookAndFeel).LookAndFeelPainter;
|
|
end;
|
|
|
|
end.
|