mattercontrol/PartPreviewWindow/MainTab.cs
John Lewin a3cbe6acbe Compute opaque theme colors, save before slice, revise icon styling
- Change slicing hash generation method/name
- Add ComputeFileSha1 to ApplicationController
- Issue MatterHackers/MCCentral#2307
Same color supplied for both tab and border
- Issue MatterHackers/MCCentral#2304
Have to Save file to make slicing go after change to scene
2017-11-21 11:11:07 -08:00

215 lines
6.2 KiB
C#

/*
Copyright (c) 2017, Lars Brubaker, John Lewin
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
using System;
using System.Linq;
using MatterHackers.Agg;
using MatterHackers.Agg.Image;
using MatterHackers.Agg.UI;
using MatterHackers.Agg.VertexSource;
using MatterHackers.Localizations;
namespace MatterHackers.MatterControl.PartPreviewWindow
{
public class MainTab : GuiWidget, ITab
{
public event EventHandler CloseClicked;
private SimpleTabs parentTabControl;
public MainTab(string tabLabel, SimpleTabs parentTabControl, GuiWidget tabContent, ThemeConfig theme, string tabImageUrl = null)
{
this.HAnchor = HAnchor.Fit;
this.VAnchor = VAnchor.Fit | VAnchor.Bottom;
this.Padding = 0;
this.Margin = 0;
this.theme = theme;
this.TabContent = tabContent;
this.parentTabControl = parentTabControl;
this.AddChild(
new TabPill(tabLabel, ActiveTheme.Instance.PrimaryTextColor, tabImageUrl)
{
Margin = new BorderDouble(right: 16)
});
var closeButton = ApplicationController.Instance.Theme.CreateSmallResetButton();
closeButton.HAnchor = HAnchor.Right;
closeButton.Margin = new BorderDouble(right: 7, top: 1);
closeButton.Name = "Close Tab Button";
closeButton.ToolTipText = "Close".Localize();
closeButton.Click += (sender, e) =>
{
UiThread.RunOnIdle(() =>
{
this.parentTabControl.RemoveTab(this);
this.CloseClicked?.Invoke(this, null);
});
};
this.AddChild(closeButton);
}
private ThemeConfig theme;
public GuiWidget TabContent { get; }
private static int tabInsetDistance = 14 / 2;
internal MainTab NextTab { get; set; }
internal MainTab PreviousTab { get; set; }
public override void OnDraw(Graphics2D graphics2D)
{
var rect = LocalBounds;
var centerY = rect.YCenter;
var siblings = this.Parent.Children.OfType<MainTab>().ToList();
int position = siblings.IndexOf(this);
//MainTab leftSibling = (position > 0) ? siblings[position - 1] : null;
//MainTab rightSibling = (position < siblings.Count - 1) ? siblings[position + 1] : null;
var activeTab = parentTabControl.ActiveTab;
bool isFirstTab = position == 0;
bool rightSiblingSelected = this.NextTab == activeTab;
// Tab - core
var tabShape = new VertexStorage();
tabShape.MoveTo(rect.Left, centerY);
tabShape.LineTo(rect.Left + tabInsetDistance, rect.Top);
tabShape.LineTo(rect.Right - tabInsetDistance, rect.Top);
tabShape.LineTo(rect.Right, centerY);
if (!rightSiblingSelected)
{
tabShape.LineTo(rect.Right, rect.Bottom);
}
tabShape.LineTo(rect.Right - tabInsetDistance, rect.Bottom);
tabShape.LineTo(rect.Left + tabInsetDistance, rect.Bottom);
if (isFirstTab)
{
tabShape.LineTo(rect.Left, rect.Bottom);
}
graphics2D.Render(
tabShape,
(this == activeTab) ? theme.ActiveTabColor : theme.InactiveTabColor);
if (!isFirstTab)
{
DrawTabLowerLeft(
graphics2D,
rect,
(this.PreviousTab == activeTab || this == activeTab) ? theme.ActiveTabColor : theme.InactiveTabColor);
}
if (rightSiblingSelected)
{
DrawTabLowerRight(graphics2D, rect, theme.ActiveTabColor);
}
base.OnDraw(graphics2D);
}
public static void DrawTabLowerRight(Graphics2D graphics2D, RectangleDouble rect, Color color)
{
// Tab - right nub
var tabRight = new VertexStorage();
tabRight.MoveTo(rect.Right, rect.YCenter);
tabRight.LineTo(rect.Right, rect.Bottom);
tabRight.LineTo(rect.Right - tabInsetDistance, rect.Bottom);
graphics2D.Render(tabRight, color);
}
public static void DrawTabLowerLeft(Graphics2D graphics2D, RectangleDouble rect, Color color)
{
// Tab - left nub
var tabLeft = new VertexStorage();
tabLeft.MoveTo(rect.Left, rect.YCenter);
tabLeft.LineTo(rect.Left + tabInsetDistance, rect.Bottom);
tabLeft.LineTo(rect.Left, rect.Bottom);
graphics2D.Render(tabLeft, color);
}
private class TabPill : FlowLayoutWidget
{
private TextWidget label;
public TabPill(string tabTitle, Color textColor, string imageUrl = null)
{
this.Selectable = false;
this.Padding = new BorderDouble(10, 5, 10, 4);
if (!string.IsNullOrEmpty(imageUrl))
{
var imageWidget = new ImageWidget(new ImageBuffer(16, 16))
{
Margin = new BorderDouble(right: 6, bottom: 2),
VAnchor = VAnchor.Center
};
this.AddChild(imageWidget);
// Attempt to load image
try
{
// TODO: Must use caching
ApplicationController.Instance.DownloadToImageAsync(imageWidget.Image, imageUrl, false);
}
catch { }
}
label = new TextWidget(tabTitle)
{
TextColor = textColor,
VAnchor = VAnchor.Center
};
this.AddChild(label);
}
public Color TextColor
{
get => label.TextColor;
set => label.TextColor = value;
}
public override string Text
{
get => label.Text;
set => label.Text = value;
}
}
}
}