123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- using FastReport.Controls;
- using FastReport.DevComponents.DotNetBar;
- using FastReport.Forms;
- using FastReport.Utils;
- using System;
- using System.Windows.Forms;
- namespace FastReport.Design.ToolWindows
- {
- /// <summary>
- /// Base class for all tool windows such as "Properties", "Data Dictionary" etc.
- /// </summary>
- /// <remarks>
- /// <para>Use this class to create own tool window. To do this:</para>
- /// <para>- in the constructor, set the <b>Name</b> and <b>Image</b> properties and create necessary controls.
- /// The <b>Name</b> will be used to restore window's state;</para>
- /// <para>- override the <b>SelectionChanged</b> method. This method is called when current selection
- /// is changed. In this method, you should update buttons state to reflect the current selection.
- /// Selected objects can be accessed via <b>Designer.SelectedObjects</b> property;</para>
- /// <para>- override the <b>UpdateContent</b> method. This method is called when the report
- /// content was changed. Typically you need to do the same actions in <b>SelectionChanged</b> and
- /// <b>UpdateContent</b> methods;</para>
- /// <para>- to register a toolwindow, add its type to the <see cref="DesignerPlugins"/> global collection:
- /// <code>
- /// DesignerPlugins.Add(typeof(MyToolWindow));
- /// </code>
- /// </para>
- /// </remarks>
- public class ToolWindowBase : DockContainerItem, IDesignerPlugin
- {
- #region Properties
- /// <summary>
- /// Gets the report designer.
- /// </summary>
- public Designer Designer { get; }
- /// <summary>
- /// Gets a value indicating that window is locked.
- /// </summary>
- public bool Locked { get; private set; }
- /// <inheritdoc/>
- public string PluginName => Name;
- /// <summary>
- /// Gets or sets shortcut keys used to show this toolwindow.
- /// </summary>
- public eShortcut Shortcut { get; set; }
- /// <summary>
- /// Gets or sets a value indicating that the toolwindow can be closed by the x button.
- /// </summary>
- public bool CanHide
- {
- get => Bar.CanHide;
- set => Bar.CanHide = value;
- }
- internal Bar Bar
- {
- get
- {
- BaseItem item = this;
- while (item.Parent != null)
- item = item.Parent;
- return item.ContainerControl as Bar;
- }
- }
- /// <summary>
- /// Gets the control collection.
- /// </summary>
- public Control.ControlCollection Controls => Control.Controls;
- private ControlStorageService storage;
- public ControlStorageService Storage => storage ?? new ControlStorageService(Control, "Designer," + Name);
- #endregion
- #region Private Methods
- private Bar CreateBar()
- {
- Bar bar = new Bar();
- bar.Name = Name + "Bar";
- bar.CanHide = true;
- bar.CloseSingleTab = true;
- bar.GrabHandleStyle = eGrabHandleStyle.Caption;
- bar.LayoutType = eLayoutType.DockContainer;
- bar.Stretch = true;
- bar.AutoSyncBarCaption = true;
- DockTo(bar);
- return bar;
- }
- #endregion
- #region Public Methods
- internal void DoDefaultDock()
- {
- DockTo(Designer.DotNetBarManager.RightDockSite, Designer.DataWindow, eDockSide.Top);
- }
- internal void DockTo(DockSite site)
- {
- site.GetDocumentUIManager().Dock(CreateBar());
- }
- internal void DockTo(DockSite site, ToolWindowBase referenceWindow, eDockSide side)
- {
- site.GetDocumentUIManager().Dock(referenceWindow.Bar, CreateBar(), side);
- }
- internal void DockTo(ToolWindowBase win)
- {
- DockTo(win.Bar);
- }
- internal void DockTo(Bar bar)
- {
- bar.Controls.Add(Control);
- bar.Items.Add(this);
- }
- /// <summary>
- /// Shows the toolwindow.
- /// </summary>
- public void Show()
- {
- // force SetDockContainerVisible to do the work
- Visible = false;
- BarUtilities.SetDockContainerVisible(this, true);
- Activate();
- }
- /// <summary>
- /// Hides the toolwindow.
- /// </summary>
- public void Hide()
- {
- BarUtilities.SetDockContainerVisible(this, false);
- }
- internal void Close()
- {
- Bar bar = Bar;
- if (bar != null)
- bar.CloseDockTab(this);
- }
- internal void Activate()
- {
- Bar bar = Bar;
- if (bar != null)
- {
- bar.SelectedDockContainerItem = this;
- if (bar.AutoHide)
- bar.AutoHide = false;
- }
- }
- internal ToolbarButton AddButton(int imageIndex, EventHandler click) => AddButton(imageIndex, false, click);
- internal ToolbarButton AddButton(int imageIndex, bool imageAndText, EventHandler click)
- {
- var button = new ToolbarButton("", imageIndex, click);
- if (imageAndText)
- button.ButtonStyle = eButtonStyle.ImageAndText;
- return button;
- }
- internal ContextMenuItem AddMenuItem(int imageIndex, EventHandler click)
- {
- var mi = new ContextMenuItem();
- mi.Image = Designer.GetImage(imageIndex);
- mi.ImageIndex = imageIndex;
- mi.Click += click;
- return mi;
- }
- internal ContextMenuItem AddMenuItem(EventHandler click)
- {
- return AddMenuItem(-1, click);
- }
- #endregion
- #region IDesignerPlugin
- /// <inheritdoc/>
- public virtual void SaveState()
- {
- }
- /// <inheritdoc/>
- public virtual void RestoreState()
- {
- }
- /// <inheritdoc/>
- public virtual void SelectionChanged()
- {
- }
- /// <inheritdoc/>
- public virtual void UpdateContent()
- {
- }
- /// <inheritdoc/>
- public virtual void Lock()
- {
- Locked = true;
- }
- /// <inheritdoc/>
- public virtual void Unlock()
- {
- Locked = false;
- UpdateContent();
- }
- /// <inheritdoc/>
- public virtual void Localize()
- {
- }
- /// <summary>
- /// Implements <see cref="IDesignerPlugin.GetOptionsPage"/> method.
- /// </summary>
- /// <returns>The options page, if implemented; otherwise, <b>null</b>.</returns>
- public virtual DesignerOptionsPage GetOptionsPage()
- {
- return null;
- }
- /// <inheritdoc/>
- public virtual void UpdateUIStyle()
- {
- }
- /// <inheritdoc/>
- public new virtual void UpdateDpiDependencies()
- {
- if (Bar != null)
- {
- Bar.UpdateDpiDependencies();
- // this will take effect if high dpi is not enabled in DpiHelper
- Bar.DockTabStripHeight = Designer.LogicalToDevice(25);
- Bar.PaddingLeft = -2;
- Bar.PaddingRight = -2;
- Bar.PaddingTop = -2;
- Bar.PaddingBottom = -2;
- }
- base.UpdateDpiDependencies();
- }
- #endregion
- /// <summary>
- /// Initializes a new instance of the <see cref="ToolWindowBase"/> class with default settings.
- /// </summary>
- /// <param name="designer">The report designer.</param>
- /// <remarks>
- /// You don't need to call this constructor. The designer will do this automatically.
- /// </remarks>
- public ToolWindowBase(Designer designer) : base()
- {
- Designer = designer;
- Shortcut = eShortcut.None;
- Control = new PanelDockContainer();
- }
- }
- }
|