12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- using System;
- using System.Collections;
- using System.ComponentModel;
- using FastReport.Utils;
- namespace FastReport
- {
- /// <summary>
- /// Base class for report pages and dialog forms.
- /// </summary>
- public abstract partial class PageBase : ComponentBase
- {
- #region Fields
- private string pageName;
- private bool needRefresh;
- private bool needModify;
- #endregion
- #region Properties
- internal string PageName
- {
- get
- {
- if (!String.IsNullOrEmpty(pageName))
- return pageName;
- return Name;
-
- //string pageName = Name;
- //if (pageName.StartsWith(BaseName))
- // pageName = pageName.Replace(BaseName, Res.Get("Objects," + ClassName));
- //return pageName;
- }
- set { pageName = value; }
- }
-
- internal bool NeedRefresh
- {
- get { return needRefresh; }
- set { needRefresh = value; }
- }
- internal bool NeedModify
- {
- get { return needModify; }
- set { needModify = value; }
- }
- #endregion
- #region Public Methods
- /// <summary>
- /// Causes the page to refresh in the preview window.
- /// </summary>
- /// <remarks>
- /// Call this method when you handle object's MouseMove, MouseDown, MouseUp, MouseEnter, MouseLeave events
- /// and want to refresh the preview window.
- /// <note type="caution">
- /// If you have changed some objects on a page, the <b>Refresh</b> method will not save the changes.
- /// This means when you print or export the page, you will see original (unmodified) page content.
- /// If you want to save the changes, you have to use the <see cref="Modify"/> method instead.
- /// </note>
- /// </remarks>
- public void Refresh()
- {
- needRefresh = true;
- }
- /// <summary>
- /// Modifies the page content and refresh it in the preview window.
- /// </summary>
- /// <remarks>
- /// Call this method when you handle object's Click, MouseDown or MouseUp events
- /// and want to modify an object and refresh the preview window.
- /// </remarks>
- public void Modify()
- {
- needModify = true;
- needRefresh = true;
- }
- #endregion
- /// <summary>
- /// Initializes a new instance of the <see cref="PageBase"/> class with default settings.
- /// </summary>
- public PageBase()
- {
- SetFlags(Flags.CanMove | Flags.CanResize | Flags.CanDelete | Flags.CanChangeOrder |
- Flags.CanChangeParent | Flags.CanCopy, false);
- }
- }
- }
|