{******************************************************************************} { } { Tulip - User Interface Library } { } { Copyright(c) 2012 - 2013 Marcos Gomes. All rights Reserved. } { } { -------------------------------------------------------------------------- } { } { This product is based on Asphyre Sphinx (c) 2000 - 2012 Yuriy Kotsarenko. } { All rights reserved. Official web site: http://www.afterwarp.net } { } {******************************************************************************} { } { Important Notice: } { } { If you modify/use this code or one of its parts either in original or } { modified form, you must comply with Mozilla Public License Version 2.0, } { including section 3, "Responsibilities". Failure to do so will result in } { the license breach, which will be resolved in the court. Remember that } { violating author's rights either accidentally or intentionally is } { considered a serious crime in many countries. Thank you! } { } { !! Please *read* Mozilla Public License 2.0 document located at: } { http://www.mozilla.org/MPL/ } { } { -------------------------------------------------------------------------- } { } { The contents of this file are subject to the Mozilla Public License } { Version 2.0 (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/ } { } { Software distributed under the License is distributed on an "AS IS" } { basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the } { License for the specific language governing rights and limitations } { under the License. } { } { The Original Code is Tulip.UI.Labels.pas. } { } { The Initial Developer of the Original Code is Marcos Gomes. } { Portions created by Marcos Gomes are Copyright (C) 2012, Marcos Gomes. } { All Rights Reserved. } { } {******************************************************************************} { } { Tulip.UI.Labels.pas Modified: 23-Mar-2013 } { -------------------------------------------------------------------------- } { } { Base Implementations for Label Controls } { } { Version 1.03 } { } {******************************************************************************} unit Tulip.UI.Labels; interface uses System.SysUtils, System.Types, System.Classes, // Aspryre units AsphyreTypes, AbstractCanvas, AsphyreFonts, AsphyreImages, AsphyreUtils, Vectors2, // Tulip UI Units Tulip.UI.Classes, Tulip.UI.Types, Tulip.UI.Utils, Tulip.UI.Controls, Tulip.UI.Forms, Tulip.UI.Helpers; type {$REGION 'TCustomALabel'} TCustomALabel = class(TAControl) private FAntialiased: Boolean; FBorder: TBorder; FCanMoveHandle: Boolean; FCaption: String; FColor: TFillColor; FFocusControl: string; FFont: TFormatedFont; FImage: TImage; FMargin: Word; FTransparent: Boolean; FWordWrap: Boolean; procedure SetAntialiased(Value: Boolean); procedure SetBorder(Value: TBorder); procedure SetCanMoveHandle(Value: Boolean); procedure SetCaption(Value: String); procedure SetColor(Color: TFillColor); procedure SetFocusControl(Value: string); procedure SetFont(Value: TFormatedFont); procedure SetImage(Value: TImage); procedure SetMargin(Value: Word); procedure SetTransparent(Value: Boolean); procedure SetWordWrap(Value: Boolean); protected procedure AssignTo(Dest: TPersistent); override; procedure Paint; override; public constructor Create(AOwner: TComponent); override; destructor Destroy; override; procedure Click; override; procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Integer); override; procedure MouseMove(Shift: TShiftState; X, Y: Integer); override; procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: Integer); override; property Antialiased: Boolean read FAntialiased write SetAntialiased; property Border: TBorder read FBorder write SetBorder; property CanMoveHandle: Boolean read FCanMoveHandle write SetCanMoveHandle; property Caption: String read FCaption write SetCaption; property Color: TFillColor read FColor write SetColor; property FocusControl: string read FFocusControl write SetFocusControl; property Font: TFormatedFont read FFont write SetFont; property Image: TImage read FImage write SetImage; property Margin: Word read FMargin write SetMargin; property Transparent: Boolean read FTransparent write SetTransparent; property WordWrap: Boolean read FWordWrap write SetWordWrap; end; {$ENDREGION} implementation var XOffSet, YOffSet: Integer; {$REGION 'TCustomALabel'} { TCustomALabel } procedure TCustomALabel.AssignTo(Dest: TPersistent); begin ControlState := ControlState + [csReadingState]; inherited AssignTo(Dest); if Dest is TCustomALabel then with TCustomALabel(Dest) do begin Antialiased := Self.Antialiased; Border := Self.Border; CanMoveHandle := Self.CanMoveHandle; Caption := Self.Caption; Color := Self.Color; FocusControl := Self.FocusControl; Font := Self.Font; Image := Self.Image; Margin := Self.Margin; Transparent := Self.Transparent; WordWrap := Self.WordWrap; end; ControlState := ControlState - [csReadingState]; end; procedure TCustomALabel.Click; var Control: TAControl; begin Control := Self.Handle.FindChildControl(FFocusControl, True); if Control <> nil then if Control is TWControl then TWControl(Control).SetFocus; inherited Click; end; constructor TCustomALabel.Create(AOwner: TComponent); var Num: Integer; begin ControlState := ControlState + [csCreating]; inherited Create(AOwner); if (AOwner <> nil) and (AOwner <> Self) and (AOwner is TWControl) then begin // Auto generate name Num := 1; begin while (TWControl(AOwner).Handle.FindChildControl('Label' + IntToStr(Num), True) <> nil) do Inc(Num); Name := 'Label' + IntToStr(Num); end; end; // Fields FAntialiased := True; FBorder := TBorder.Create; FBorder.Color := $B0FFFFFF; FBorder.Size := 0; FCanMoveHandle := True; FCaption := Name; FColor := TFillColor.Create($FFA6CAF0, $FFA6CAF0, $FF4090F0, $FF4090F0); FFont := TFormatedFont.Create; FImage := TImage.Create; FMargin := 2; FTransparent := True; FWordWrap := False; // Properties Left := 0; Top := 0; Width := 72; Height := 24; Visible := True; ControlState := ControlState - [csCreating]; end; destructor TCustomALabel.Destroy; begin FBorder.Free; FColor.Free; FFont.Free; FImage.Free; inherited Destroy; end; procedure TCustomALabel.MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin // Start move the form Handle if (FCanMoveHandle) and (Handle is TCustomAForm) then begin if (Button = mbLeft) and (TCustomAForm(Handle).CanMove) then begin XOffSet := X - TCustomAForm(Handle).Left; YOffSet := Y - TCustomAForm(Handle).Top; TCustomAForm(Handle).IsMoving := True; end; end; inherited MouseDown(Button, Shift, X, Y); end; procedure TCustomALabel.MouseMove(Shift: TShiftState; X, Y: Integer); begin // Move the form Handle if (FCanMoveHandle) and (Handle is TCustomAForm) then begin if TCustomAForm(Handle).IsMoving = True then begin TCustomAForm(Handle).Left := X - XOffSet; TCustomAForm(Handle).Top := Y - YOffSet; end; end; inherited MouseMove(Shift, X, Y); end; procedure TCustomALabel.MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin // Stop move the form Handle if (FCanMoveHandle) and (Handle is TCustomAForm) then begin if (Button = mbLeft) and (TCustomAForm(Handle).IsMoving) then TCustomAForm(Handle).IsMoving := False; end; inherited MouseUp(Button, Shift, X, Y); end; procedure TCustomALabel.Paint; var X, Y: Integer; AFont: TAsphyreFont; AImage: TAsphyreImage; bTop, bBottom: TConstraintSize; ARect: TRect; AHeight, AWidth: Integer; vLeft, vTop: Integer; begin // Get size Canvas ARect := ControlManager.Canvas.ClipRect; // Set initial values X := ClientLeft; Y := ClientTop; ControlManager.Canvas.Antialias := FAntialiased; // Draw Background if not FTransparent then begin AImage := ControlManager.Images.Image[FImage.Image]; if AImage <> nil then begin ControlManager.Canvas.UseImagePx(AImage, pRect4(FImage.Rect)); ControlManager.Canvas.TexMap(pRect4(Rect(X, Y, X + Width, Y + Height)), cAlpha4(FColor), beNormal); end else begin ControlManager.Canvas.FillRect(Rect(X, Y, X + Width, Y + Height), cColor4(FColor), beNormal); end; end; // Draw Border if Border.Size > 0 then begin bTop := 0; bBottom := 0; if eTop in Border.Edges then begin ControlManager.Canvas.FillRect(Rect(X, Y, X + Width, Y + Border.Size), Border.Color, beNormal); bTop := Border.Size; end; if eBottom in Border.Edges then begin ControlManager.Canvas.FillRect(Rect(X, Y + Height - Border.Size, X + Width, Y + Height), Border.Color, beNormal); bBottom := Border.Size; end; if eLeft in Border.Edges then ControlManager.Canvas.FillRect(Rect(X, Y + bTop, X + Border.Size, Y + Height - bBottom), Border.Color, beNormal); if eRight in Border.Edges then ControlManager.Canvas.FillRect(Rect(X + Width - Border.Size, Y + bTop, X + Width, Y + Height - bBottom), Border.Color, beNormal); end; // Draw DisplayText AFont := ControlManager.Fonts.Font[FFont.Name]; if (AFont <> nil) and (FCaption <> '') then begin if WordWrap then begin AFont.TextRectEx(Point2(X + Border.Size + Margin, Y + Border.Size + Margin + 1), Point2(Width - (Border.Size * 2) - (Margin * 2), Height - (Border.Size * 2) - (Margin * 2)), FCaption, cColor2(FFont.Color), 1.0, FFont.HorizontalAlign, FFont.VerticalAlign, FFont.ParagraphLine); end else begin // Set Bounds X := ClientLeft + Margin + Border.Size; Y := ClientTop + Margin + Border.Size; AWidth := Width - Margin * 2 - Border.Size * 2; AHeight := Height - Margin * 2 - Border.Size * 2; // Set Rect Canvas ControlManager.Canvas.ClipRect := ShortRect(Rect(X - 1, Y, X + AWidth, Y + AHeight), ARect); case Self.FFont.VerticalAlign of aTop: vTop := Y; aMiddle: vTop := Y + (AHeight div 2) - (AFont.TexHeight(FCaption) div 2); aBottom: vTop := Y + AHeight - AFont.TexHeight(FCaption); else vTop := X; end; case FFont.HorizontalAlign of aLeft, aJustify: vLeft := X; aCenter: vLeft := X + (AWidth div 2) - Round(AFont.TextWidth(FCaption) / 2); aRight: vLeft := X + AWidth - Round(AFont.TextWidth(FCaption)); else vLeft := X; end; AFont.TextOut(Point2(vLeft, vTop),FCaption, cColor2(FFont.Color), 1.0); // Restore Rect Canvas ControlManager.Canvas.ClipRect := ARect; end; end; end; procedure TCustomALabel.SetAntialiased(Value: Boolean); begin FAntialiased := Value; end; procedure TCustomALabel.SetBorder(Value: TBorder); begin if Value <> nil then FBorder.Assign(Value); end; procedure TCustomALabel.SetCanMoveHandle(Value: Boolean); begin FCanMoveHandle := Value; end; procedure TCustomALabel.SetCaption(Value: String); begin FCaption := Value; end; procedure TCustomALabel.SetColor(Color: TFillColor); begin if Color <> nil then FColor.Assign(Color); end; procedure TCustomALabel.SetFocusControl(Value: string); begin FFocusControl := Value; end; procedure TCustomALabel.SetImage(Value: TImage); begin if Value <> nil then FImage.Assign(Value); end; procedure TCustomALabel.SetMargin(Value: Word); begin FMargin := Value; end; procedure TCustomALabel.SetFont(Value: TFormatedFont); begin if Value <> nil then FFont.Assign(Value); end; procedure TCustomALabel.SetTransparent(Value: Boolean); begin FTransparent := Value; end; procedure TCustomALabel.SetWordWrap(Value: Boolean); begin FWordWrap := Value; end; {$ENDREGION} end.