-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathPageBase.cs
91 lines (82 loc) · 2.76 KB
/
PageBase.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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);
}
}
}