123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- unit MainUnit;
- (* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1 or LGPL 2.1 with linking exception
- *
- * 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/
- *
- * 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.
- *
- * Alternatively, the contents of this file may be used under the terms of the
- * Free Pascal modified version of the GNU Lesser General Public License
- * Version 2.1 (the "FPC modified LGPL License"), in which case the provisions
- * of this license are applicable instead of those above.
- * Please see the file LICENSE.txt for additional information concerning this
- * license.
- *
- * The Original Code is Polygons Example
- *
- * The Initial Developer of the Original Code is
- * Alex A. Denisov
- *
- * Portions created by the Initial Developer are Copyright (C) 2000-2010
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Christian-W. Budde
- *
- * ***** END LICENSE BLOCK ***** *)
- interface
- {$I GR32.inc}
- uses
- {$IFNDEF FPC} Windows, {$ELSE} LCLIntf, LResources, LCLType, Buttons, {$ENDIF}
- SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls, ComCtrls,
- GR32, GR32_Image, GR32_Layers, GR32_Polygons, GR32_Paths, GR32_Brushes;
- type
- TFormPolygons = class(TForm)
- BitmapList: TBitmap32List;
- BtnNewLine: TButton;
- CbxPattern: TCheckBox;
- CbxThickOutline: TCheckBox;
- FillAlpha: TTrackBar;
- Image: TImage32;
- LblFillOpacity: TLabel;
- LblLineOpacity: TLabel;
- LabelMiterLimit: TLabel;
- LabelOutlineThickness: TLabel;
- LineAlpha: TTrackBar;
- LineThickness: TTrackBar;
- MemoHint: TMemo;
- MiterLimit: TTrackBar;
- PanelControl: TPanel;
- RgpFillMode: TRadioGroup;
- RgpJointMode: TRadioGroup;
- procedure FormCreate(Sender: TObject);
- procedure FormDestroy(Sender: TObject);
- procedure ImageMouseDown(Sender: TObject; Button: TMouseButton;
- Shift: TShiftState; X, Y: Integer; Layer: TCustomLayer);
- procedure BtnNewLineClick(Sender: TObject);
- procedure FillAlphaChange(Sender: TObject);
- procedure FillModeChange(Sender: TObject);
- procedure ImageResize(Sender: TObject);
- procedure JointModeChange(Sender: TObject);
- procedure LineAlphaChange(Sender: TObject);
- procedure MiterLimitChange(Sender: TObject);
- procedure ParamsChanged(Sender: TObject);
- procedure PatternFillingChange(Sender: TObject);
- procedure ThicknessChanged(Sender: TObject);
- procedure ThickOutlineChange(Sender: TObject);
- private
- FCanvas: TCanvas32;
- FFiller: TBitmapPolygonFiller;
- FPoints: array of array of TPoint;
- FSolid: TSolidBrush;
- FStroke: TStrokeBrush;
- procedure Draw;
- end;
- var
- FormPolygons: TFormPolygons;
- implementation
- {$R *.dfm}
- uses
- {$IFDEF Darwin}
- MacOSAll,
- {$ENDIF}
- Math,
- Types,
- GR32.ImageFormats.JPG;
- { TFormPolygons }
- procedure TFormPolygons.FormCreate(Sender: TObject);
- begin
- // Load the textures (note size 256x256 is implicity expected!)
- BitmapList.Bitmap[0].LoadFromResourceName(HInstance, 'Delphi', RT_RCDATA);
- BitmapList.Bitmap[1].LoadFromResourceName(HInstance, 'TextureB', RT_RCDATA);
- Image.SetupBitmap;
- SetLength(FPoints, 1);
- SetLength(FPoints[0], 0);
- FCanvas := TCanvas32.Create(Image.Bitmap);
- FCanvas.Brushes.Add(TSolidBrush);
- FSolid := TSolidBrush(FCanvas.Brushes[0]);
- FSolid.FillColor := SetAlpha(clGreen32, FillAlpha.Position);
- FCanvas.Brushes.Add(TStrokeBrush);
- FStroke := TStrokeBrush(FCanvas.Brushes[1]);
- FStroke.FillColor := SetAlpha(clBlack32, LineAlpha.Position);
- FStroke.StrokeWidth := 1;
- FStroke.Visible := False;
- ThickOutlineChange(Self);
- {$ifndef FPC}
- LineAlpha.PositionToolTip := ptTop;
- LineThickness.PositionToolTip := ptTop;
- {$endif}
- end;
- procedure TFormPolygons.FormDestroy(Sender: TObject);
- begin
- FCanvas.Free;
- if Assigned(FFiller) then
- FFiller.Free;
- end;
- procedure TFormPolygons.Draw;
- var
- Index, PointIndex: Integer;
- begin
- Image.Bitmap.BeginUpdate;
- try
- Image.Bitmap.Clear(clWhite32);
- Image.Bitmap.Draw(50, 50, BitmapList.Bitmap[0]);
- for Index := 0 to Length(FPoints) - 1 do
- begin
- if Length(FPoints[Index]) = 0 then
- Continue;
- FCanvas.MoveTo(FPoints[Index, 0].X, FPoints[Index, 0].Y);
- for PointIndex := 1 to Length(FPoints[Index]) - 1 do
- FCanvas.LineTo(FPoints[Index, PointIndex].X, FPoints[Index, PointIndex].Y);
- FCanvas.EndPath(True);
- end;
- finally
- Image.Bitmap.EndUpdate;
- end;
- Image.Bitmap.Changed;
- Image.Refresh; // force repaint
- end;
- procedure TFormPolygons.ImageMouseDown(Sender: TObject; Button: TMouseButton;
- Shift: TShiftState; X, Y: Integer; Layer: TCustomLayer);
- var
- Index: Integer;
- PointIndex: Integer;
- begin
- if Button = mbLeft then
- begin
- Index := Length(FPoints) - 1;
- PointIndex := Length(FPoints[Index]);
- SetLength(FPoints[Index], PointIndex + 1);
- FPoints[Index, PointIndex].X := X;
- FPoints[Index, PointIndex].Y := Y;
- end
- else
- begin
- SetLength(FPoints, 1);
- SetLength(FPoints[0], 0);
- end;
- Draw;
- end;
- procedure TFormPolygons.ImageResize(Sender: TObject);
- begin
- Image.SetupBitmap;
- Draw;
- end;
- procedure TFormPolygons.LineAlphaChange(Sender: TObject);
- begin
- FStroke.FillColor := SetAlpha(clBlack32, LineAlpha.Position);
- Draw;
- end;
- procedure TFormPolygons.MiterLimitChange(Sender: TObject);
- begin
- FStroke.MiterLimit := MiterLimit.Position * 0.01;
- LabelMiterLimit.Caption := Format(LabelMiterLimit.Hint, [FStroke.MiterLimit]);
- Draw;
- end;
- procedure TFormPolygons.ParamsChanged(Sender: TObject);
- begin
- Draw;
- end;
- procedure TFormPolygons.FillAlphaChange(Sender: TObject);
- begin
- FSolid.FillColor := SetAlpha(clGreen32, FillAlpha.Position);
- BitmapList.Bitmap[1].MasterAlpha := FillAlpha.Position;
- Draw;
- end;
- procedure TFormPolygons.FillModeChange(Sender: TObject);
- begin
- FStroke.FillMode := TPolyFillMode(RgpFillMode.ItemIndex);
- FSolid.FillMode := TPolyFillMode(RgpFillMode.ItemIndex);
- Draw;
- end;
- procedure TFormPolygons.PatternFillingChange(Sender: TObject);
- begin
- if CbxPattern.Checked then
- begin
- BitmapList.Bitmap[1].MasterAlpha := FillAlpha.Position;
- BitmapList.Bitmap[1].DrawMode := dmBlend;
- FFiller := TBitmapPolygonFiller.Create;
- FFiller.Pattern := BitmapList.Bitmap[1];
- FCanvas.Renderer.Filler := FFiller;
- FSolid.Filler := FFiller;
- end
- else
- begin
- FCanvas.Renderer.Filler := nil;
- FSolid.Filler := nil;
- FreeAndNil(FFiller);
- end;
- Draw;
- end;
- procedure TFormPolygons.JointModeChange(Sender: TObject);
- begin
- FStroke.JoinStyle := TJoinStyle(RgpJointMode.ItemIndex);
- MiterLimit.Enabled := CbxThickOutline.Checked and
- (FStroke.JoinStyle in [jsMiter, jsRoundEx]);
- Draw;
- end;
- procedure TFormPolygons.BtnNewLineClick(Sender: TObject);
- begin
- SetLength(FPoints, Length(FPoints) + 1);
- end;
- procedure TFormPolygons.ThicknessChanged(Sender: TObject);
- begin
- FStroke.StrokeWidth := LineThickness.Position * 0.1;
- LabelOutlineThickness.Caption := Format(LabelOutlineThickness.Hint, [FStroke.StrokeWidth]);
- Draw;
- end;
- procedure TFormPolygons.ThickOutlineChange(Sender: TObject);
- begin
- FStroke.Visible := CbxThickOutline.Checked;
- LineThickness.Enabled := CbxThickOutline.Checked;
- RgpJointMode.Enabled := CbxThickOutline.Checked;
- MiterLimit.Enabled := CbxThickOutline.Checked and (FStroke.JoinStyle = jsMiter);
- Draw;
- end;
- end.
|