123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using FastReport.Utils;
- using System.Windows.Forms;
- using System.Drawing.Design;
- namespace FastReport
- {
- /// <summary>
- /// Specifies the watermark image size mode.
- /// </summary>
- public enum WatermarkImageSize
- {
- /// <summary>
- /// Specifies the normal (original) size.
- /// </summary>
- Normal,
- /// <summary>
- /// Specifies the centered image.
- /// </summary>
- Center,
- /// <summary>
- /// Specifies the stretched image.
- /// </summary>
- Stretch,
- /// <summary>
- /// Specifies the stretched image that keeps its aspect ratio.
- /// </summary>
- Zoom,
- /// <summary>
- /// Specifies the tiled image.
- /// </summary>
- Tile
- }
- /// <summary>
- /// Specifies the watermark text rotation.
- /// </summary>
- public enum WatermarkTextRotation
- {
- /// <summary>
- /// Specifies a horizontal text.
- /// </summary>
- Horizontal,
- /// <summary>
- /// Specifies a vertical text.
- /// </summary>
- Vertical,
- /// <summary>
- /// Specifies a diagonal text.
- /// </summary>
- ForwardDiagonal,
- /// <summary>
- /// Specifies a backward diagonal text.
- /// </summary>
- BackwardDiagonal
- }
- /// <summary>
- /// Represents the report page watermark.
- /// </summary>
- /// <remarks>
- /// Watermark can draw text and/or image behind the page objects on in front of them. To enable
- /// watermark, set its <b>Enabled</b> property to <b>true</b>.
- /// </remarks>
- [TypeConverter(typeof(FastReport.TypeConverters.FRExpandableObjectConverter))]
- [EditorAttribute("FastReport.TypeEditors.WatermarkEditor, FastReport", typeof(UITypeEditor))]
- public class Watermark : IDisposable
- {
- #region Fields
- private bool enabled;
- private PictureObject pictureObject;
- private TextObject textObject;
- private WatermarkTextRotation textRotation;
- private WatermarkImageSize imageSize;
- private bool showImageOnTop;
- private bool showTextOnTop;
- #endregion
- #region Properties
- /// <summary>
- /// Gets or sets avalue indicating that watermark is enabled.
- /// </summary>
- [DefaultValue(false)]
- public bool Enabled
- {
- get { return enabled; }
- set { enabled = value; }
- }
- /// <summary>
- /// Gets or sets the watermark image.
- /// </summary>
- public Image Image
- {
- get { return pictureObject.Image; }
- set { pictureObject.Image = value; }
- }
- /// <summary>
- /// Gets or sets the watermark image size mode.
- /// </summary>
- [DefaultValue(WatermarkImageSize.Zoom)]
- public WatermarkImageSize ImageSize
- {
- get { return imageSize; }
- set { imageSize = value; }
- }
- /// <summary>
- /// Gets or sets an image transparency.
- /// </summary>
- /// <remarks>
- /// Valid values are 0..1. 1 means totally transparent image.
- /// </remarks>
- [DefaultValue(0f)]
- public float ImageTransparency
- {
- get { return pictureObject.Transparency; }
- set { pictureObject.Transparency = value; }
- }
- /// <summary>
- /// Gets or sets the watermark text.
- /// </summary>
- public string Text
- {
- get { return textObject.Text; }
- set { textObject.Text = value; }
- }
- /// <summary>
- /// Gets or sets a font of the watermark text.
- /// </summary>
- public Font Font
- {
- get { return textObject.Font; }
- set { textObject.Font = value; }
- }
- /// <summary>
- /// Gets or sets a text fill.
- /// </summary>
- [Editor("FastReport.TypeEditors.FillEditor, FastReport", typeof(UITypeEditor))]
- public FillBase TextFill
- {
- get { return textObject.TextFill; }
- set { textObject.TextFill = value; }
- }
- /// <summary>
- /// Gets or sets a text rotation.
- /// </summary>
- [DefaultValue(WatermarkTextRotation.ForwardDiagonal)]
- public WatermarkTextRotation TextRotation
- {
- get { return textRotation; }
- set { textRotation = value; }
- }
- /// <summary>
- /// Gets or sets a value indicates that the text should be displayed on top of all page objects.
- /// </summary>
- [DefaultValue(true)]
- public bool ShowTextOnTop
- {
- get { return showTextOnTop; }
- set { showTextOnTop = value; }
- }
- /// <summary>
- /// Gets or sets a value indicates that the image should be displayed on top of all page objects.
- /// </summary>
- [DefaultValue(false)]
- public bool ShowImageOnTop
- {
- get { return showImageOnTop; }
- set { showImageOnTop = value; }
- }
- internal TextObject TextObject
- {
- get { return textObject; }
- }
- /// <summary>
- ///
- /// </summary>
- public PictureObject PictureObject
- {
- get { return pictureObject; }
- set { pictureObject = value; }
- }
- #endregion
- #region Private Methods
- //private bool ShouldSerializeFont()
- //{
- // return Font.Name != DrawUtils.DefaultReportFont.Name || Font.Size != 60 || Font.Style != FontStyle.Regular;
- //}
- private bool ShouldSerializeTextFill()
- {
- return !(TextFill is SolidFill) || (TextFill as SolidFill).Color != Color.LightGray;
- }
- private bool ShouldSerializeImage()
- {
- return Image != null;
- }
- #endregion
- #region Public Methods
- /// <summary>
- /// Draws watermark image.
- /// </summary>
- /// <param name="e"></param>
- /// <param name="displayRect"></param>
- /// <param name="report"></param>
- /// <param name="isPrinting"></param>
- public virtual void DrawImage(FRPaintEventArgs e, RectangleF displayRect, Report report, bool isPrinting)
- {
- pictureObject.SetReport(report);
- pictureObject.Bounds = displayRect;
- PictureBoxSizeMode sizeMode = PictureBoxSizeMode.Normal;
- if (ImageSize == WatermarkImageSize.Stretch)
- sizeMode = PictureBoxSizeMode.StretchImage;
- else if (ImageSize == WatermarkImageSize.Zoom)
- sizeMode = PictureBoxSizeMode.Zoom;
- else if (ImageSize == WatermarkImageSize.Center)
- sizeMode = PictureBoxSizeMode.CenterImage;
- pictureObject.SizeMode = sizeMode;
- pictureObject.Tile = ImageSize == WatermarkImageSize.Tile;
- pictureObject.SetPrinting(isPrinting);
- pictureObject.DrawImage(e);
- }
- /// <summary>
- /// Draws watermark text.
- /// </summary>
- /// <param name="e"></param>
- /// <param name="displayRect"></param>
- /// <param name="report"></param>
- /// <param name="isPrinting"></param>
- public void DrawText(FRPaintEventArgs e, RectangleF displayRect, Report report, bool isPrinting)
- {
- textObject.SetReport(report);
- textObject.Bounds = displayRect;
- int angle = 0;
- switch (TextRotation)
- {
- case WatermarkTextRotation.Horizontal:
- angle = 0;
- break;
- case WatermarkTextRotation.Vertical:
- angle = 270;
- break;
- case WatermarkTextRotation.ForwardDiagonal:
- angle = 360 - (int)(Math.Atan(displayRect.Height / displayRect.Width) * (180 / Math.PI));
- break;
- case WatermarkTextRotation.BackwardDiagonal:
- angle = (int)(Math.Atan(displayRect.Height / displayRect.Width) * (180 / Math.PI));
- break;
- }
- textObject.Angle = angle;
- textObject.SetPrinting(isPrinting);
- textObject.DrawText(e);
- }
- /// <summary>
- /// Serializes the watermark.
- /// </summary>
- /// <param name="writer">Writer object.</param>
- /// <param name="prefix">The watermark property name.</param>
- /// <param name="c">Another Watermark object to compare with.</param>
- /// <remarks>
- /// This method is for internal use only.
- /// </remarks>
- public void Serialize(FRWriter writer, string prefix, Watermark c)
- {
- if (Enabled != c.Enabled)
- writer.WriteBool(prefix + ".Enabled", Enabled);
- if (!writer.AreEqual(Image, c.Image))
- writer.WriteValue(prefix + ".Image", Image);
- if (ImageSize != c.ImageSize)
- writer.WriteValue(prefix + ".ImageSize", ImageSize);
- if (ImageTransparency != c.ImageTransparency)
- writer.WriteFloat(prefix + ".ImageTransparency", ImageTransparency);
- if (Text != c.Text)
- writer.WriteStr(prefix + ".Text", Text);
- if ((writer.SerializeTo != SerializeTo.Preview || !writer.AreEqual(Font, c.Font)) && writer.ItemName != "inherited")
- writer.WriteValue(prefix + ".Font", Font);
- TextFill.Serialize(writer, prefix + ".TextFill", c.TextFill);
- if (TextRotation != c.TextRotation)
- writer.WriteValue(prefix + ".TextRotation", TextRotation);
- if (ShowTextOnTop != c.ShowTextOnTop)
- writer.WriteBool(prefix + ".ShowTextOnTop", ShowTextOnTop);
- if (ShowImageOnTop != c.ShowImageOnTop)
- writer.WriteBool(prefix + ".ShowImageOnTop", ShowImageOnTop);
- }
- /// <summary>
- /// Disposes resources used by the watermark.
- /// </summary>
- public void Dispose()
- {
- pictureObject.Dispose();
- textObject.Dispose();
- }
- /// <summary>
- /// Assigns values from another source.
- /// </summary>
- /// <param name="source">Source to assign from.</param>
- public void Assign(Watermark source)
- {
- Enabled = source.Enabled;
- Image = source.Image == null ? null : source.Image.Clone() as Image;
- ImageSize = source.ImageSize;
- ImageTransparency = source.ImageTransparency;
- Text = source.Text;
- Font = source.Font;
- TextFill = source.TextFill.Clone();
- TextRotation = source.TextRotation;
- ShowTextOnTop = source.ShowTextOnTop;
- ShowImageOnTop = source.ShowImageOnTop;
- }
- /// <summary>
- /// Creates exact copy of this <b>Watermark</b>.
- /// </summary>
- /// <returns>Copy of this watermark.</returns>
- public Watermark Clone()
- {
- Watermark result = new Watermark();
- result.Assign(this);
- return result;
- }
- #endregion
- /// <summary>
- /// Initializes a new instance of the <see cref="Watermark"/> class with default settings.
- /// </summary>
- public Watermark()
- {
- pictureObject = new PictureObject();
- textObject = new TextObject();
- pictureObject.ShowErrorImage = false;
- textObject.HorzAlign = HorzAlign.Center;
- textObject.VertAlign = VertAlign.Center;
- ImageSize = WatermarkImageSize.Zoom;
- Font = new Font(DrawUtils.DefaultReportFont.Name, 60);
- TextFill = new SolidFill(Color.FromArgb(40, Color.Gray));
- TextRotation = WatermarkTextRotation.ForwardDiagonal;
- ShowTextOnTop = true;
- }
- }
- }
|