// Copyright (C) Stichting Deltares 2016. All rights reserved.
//
// This file is part of Ringtoets.
//
// Ringtoets is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see .
//
// All names, logos, and references to "Deltares" are registered trademarks of
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
using System;
using System.IO;
using System.Linq;
using System.Windows.Forms;
using Core.Common.Base;
using Core.Common.Controls.TreeView;
using Core.Common.Controls.Views;
using Core.Common.Gui.ContextMenu;
using Core.Common.IO.Exceptions;
using Core.Common.Utils.Builders;
using Core.Components.DotSpatial.Forms;
using Core.Components.Gis.Data;
using Core.Components.Gis.IO.Readers;
using DotSpatial.Data;
using DotSpatial.Topology;
using log4net;
using MapResources = Core.Plugins.Map.Properties.Resources;
using GuiResources = Core.Common.Gui.Properties.Resources;
using ILog = log4net.ILog;
namespace Core.Plugins.Map.Legend
{
///
/// The view which shows the data that is added to a .
///
public sealed partial class MapLegendView : UserControl, IView
{
private static readonly ILog log = LogManager.GetLogger(typeof(MapLegendView));
private readonly IContextMenuBuilderProvider contextMenuBuilderProvider;
private readonly IWin32Window parentWindow;
///
/// Creates a new instance of .
///
/// The to create context menus.
///
/// Thrown when or is null.
public MapLegendView(IContextMenuBuilderProvider contextMenuBuilderProvider, IWin32Window parentWindow)
{
if (contextMenuBuilderProvider == null)
{
throw new ArgumentNullException("contextMenuBuilderProvider", @"Cannot create a MapLegendView when the context menu builder provider is null.");
}
if (parentWindow == null)
{
throw new ArgumentNullException("parentWindow", @"Cannot create a MapLegendView when the parent window is null.");
}
this.contextMenuBuilderProvider = contextMenuBuilderProvider;
this.parentWindow = parentWindow;
InitializeComponent();
Text = MapResources.General_Map;
RegisterTreeNodeInfos();
}
public object Data
{
get
{
return (MapData) treeViewControl.Data;
}
set
{
treeViewControl.Data = (MapData) value;
}
}
private void RegisterTreeNodeInfos()
{
treeViewControl.RegisterTreeNodeInfo(new TreeNodeInfo
{
Text = mapPointData => mapPointData.Name,
Image = mapPointData => MapResources.PointsIcon,
CanDrag = (mapPointData, parentData) => true,
CanCheck = mapPointData => true,
IsChecked = mapPointData => mapPointData.IsVisible,
OnNodeChecked = PointBasedMapDataOnNodeChecked
});
treeViewControl.RegisterTreeNodeInfo(new TreeNodeInfo
{
Text = mapLineData => mapLineData.Name,
Image = mapLineData => MapResources.LineIcon,
CanDrag = (mapLineData, parentData) => true,
CanCheck = mapLineData => true,
IsChecked = mapLineData => mapLineData.IsVisible,
OnNodeChecked = PointBasedMapDataOnNodeChecked
});
treeViewControl.RegisterTreeNodeInfo(new TreeNodeInfo
{
Text = mapPolygonData => mapPolygonData.Name,
Image = mapPolygonData => MapResources.AreaIcon,
CanDrag = (mapPolygonData, parentData) => true,
CanCheck = mapPolygonData => true,
IsChecked = mapPolygonData => mapPolygonData.IsVisible,
OnNodeChecked = PointBasedMapDataOnNodeChecked
});
treeViewControl.RegisterTreeNodeInfo(new TreeNodeInfo
{
Text = mapDataCollection => mapDataCollection.Name,
Image = mapDataCollection => GuiResources.folder,
ChildNodeObjects = mapDataCollection => mapDataCollection.Collection.Reverse().Cast