2018-01-17 23:17:49 -08:00
|
|
|
|
/*
|
2018-07-10 08:00:27 -07:00
|
|
|
|
Copyright (c) 2018, Lars Brubaker, John Lewin
|
2018-01-17 23:17:49 -08:00
|
|
|
|
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 MatterHackers.Agg;
|
2018-01-23 12:35:27 -08:00
|
|
|
|
using MatterHackers.Agg.Platform;
|
2018-01-17 23:17:49 -08:00
|
|
|
|
using MatterHackers.Agg.UI;
|
|
|
|
|
|
using MatterHackers.Localizations;
|
|
|
|
|
|
using MatterHackers.MatterControl.PartPreviewWindow;
|
|
|
|
|
|
using MatterHackers.MatterControl.PrintLibrary;
|
2018-03-08 17:23:03 -08:00
|
|
|
|
using MatterHackers.VectorMath;
|
2018-01-17 23:17:49 -08:00
|
|
|
|
|
|
|
|
|
|
namespace MatterHackers.MatterControl.CustomWidgets
|
|
|
|
|
|
{
|
2018-08-03 07:38:47 -07:00
|
|
|
|
public class InlineStringEdit : Toolbar
|
2018-01-17 23:17:49 -08:00
|
|
|
|
{
|
2018-08-03 07:35:17 -07:00
|
|
|
|
public event EventHandler ValueChanged;
|
2018-01-17 23:17:49 -08:00
|
|
|
|
|
|
|
|
|
|
private TextWidget titleText;
|
2018-08-02 13:18:37 -07:00
|
|
|
|
protected FlowLayoutWidget rightPanel;
|
2018-01-23 12:35:27 -08:00
|
|
|
|
private GuiWidget editButton;
|
|
|
|
|
|
private GuiWidget saveButton;
|
2018-01-17 23:17:49 -08:00
|
|
|
|
private SearchInputBox searchPanel;
|
|
|
|
|
|
|
2018-08-03 07:38:47 -07:00
|
|
|
|
public InlineStringEdit(string title, ThemeConfig theme, string automationName, bool boldFont = false)
|
2018-05-17 12:41:00 -07:00
|
|
|
|
: base(theme)
|
2018-01-17 23:17:49 -08:00
|
|
|
|
{
|
|
|
|
|
|
this.Padding = theme.ToolbarPadding;
|
|
|
|
|
|
this.HAnchor = HAnchor.Stretch;
|
|
|
|
|
|
this.VAnchor = VAnchor.Fit;
|
|
|
|
|
|
|
2018-01-17 23:41:44 -08:00
|
|
|
|
titleText = new TextWidget(title, textColor: ActiveTheme.Instance.PrimaryTextColor, pointSize: theme.DefaultFontSize, bold: boldFont)
|
2018-01-17 23:17:49 -08:00
|
|
|
|
{
|
|
|
|
|
|
VAnchor = VAnchor.Center,
|
|
|
|
|
|
AutoExpandBoundsToText = true,
|
|
|
|
|
|
EllipsisIfClipped = true,
|
|
|
|
|
|
Margin = new BorderDouble(left: 5)
|
|
|
|
|
|
};
|
|
|
|
|
|
this.AddChild(titleText);
|
|
|
|
|
|
|
|
|
|
|
|
this.ActionArea.VAnchor = VAnchor.Stretch;
|
2018-03-08 17:23:03 -08:00
|
|
|
|
this.ActionArea.MinimumSize = new Vector2(0, titleText.Height);
|
2018-01-17 23:17:49 -08:00
|
|
|
|
|
2018-04-12 08:42:10 -07:00
|
|
|
|
saveButton = new IconButton(AggContext.StaticData.LoadIcon("fa-save_16.png", 16, 16, theme.InvertIcons), theme)
|
2018-01-23 12:35:27 -08:00
|
|
|
|
{
|
|
|
|
|
|
ToolTipText = "Save".Localize(),
|
2018-01-24 17:49:16 -08:00
|
|
|
|
Visible = false,
|
|
|
|
|
|
Name = automationName + " Save",
|
2018-01-23 12:35:27 -08:00
|
|
|
|
};
|
2018-01-17 23:17:49 -08:00
|
|
|
|
|
2018-07-12 09:22:28 -07:00
|
|
|
|
searchPanel = new SearchInputBox(theme)
|
2018-01-17 23:17:49 -08:00
|
|
|
|
{
|
|
|
|
|
|
Visible = false,
|
2018-01-23 12:55:10 -08:00
|
|
|
|
Margin = new BorderDouble(left: 4)
|
2018-01-17 23:17:49 -08:00
|
|
|
|
};
|
|
|
|
|
|
searchPanel.searchInput.ActualTextEditWidget.EnterPressed += (s, e) =>
|
|
|
|
|
|
{
|
|
|
|
|
|
this.Text = searchPanel.Text;
|
|
|
|
|
|
this.SetVisibility(showEditPanel: false);
|
2018-08-03 07:35:17 -07:00
|
|
|
|
this.ValueChanged?.Invoke(this, null);
|
2018-01-17 23:17:49 -08:00
|
|
|
|
};
|
2018-01-23 12:35:27 -08:00
|
|
|
|
|
2018-01-24 17:49:16 -08:00
|
|
|
|
searchPanel.searchInput.Name = automationName + " Field";
|
|
|
|
|
|
|
2018-01-23 12:35:27 -08:00
|
|
|
|
searchPanel.ResetButton.Name = "Close Title Edit";
|
|
|
|
|
|
searchPanel.ResetButton.ToolTipText = "Close".Localize();
|
|
|
|
|
|
searchPanel.ResetButton.Click += (s, e) =>
|
2018-01-17 23:17:49 -08:00
|
|
|
|
{
|
|
|
|
|
|
this.SetVisibility(showEditPanel: false);
|
|
|
|
|
|
};
|
|
|
|
|
|
this.AddChild(searchPanel);
|
|
|
|
|
|
|
2018-08-02 13:18:37 -07:00
|
|
|
|
rightPanel = new FlowLayoutWidget();
|
2018-01-23 12:35:27 -08:00
|
|
|
|
|
2018-04-12 08:42:10 -07:00
|
|
|
|
editButton = new IconButton(AggContext.StaticData.LoadIcon("icon_edit.png", 16, 16, theme.InvertIcons), theme)
|
2018-01-23 12:35:27 -08:00
|
|
|
|
{
|
|
|
|
|
|
ToolTipText = "Edit".Localize(),
|
2018-01-24 17:49:16 -08:00
|
|
|
|
Name = automationName + " Edit"
|
2018-01-23 12:35:27 -08:00
|
|
|
|
};
|
2018-01-17 23:17:49 -08:00
|
|
|
|
editButton.Click += (s, e) =>
|
|
|
|
|
|
{
|
|
|
|
|
|
searchPanel.Text = this.Text;
|
|
|
|
|
|
this.SetVisibility(showEditPanel: true);
|
|
|
|
|
|
};
|
|
|
|
|
|
rightPanel.AddChild(editButton);
|
|
|
|
|
|
|
|
|
|
|
|
saveButton.Click += (s, e) =>
|
|
|
|
|
|
{
|
|
|
|
|
|
this.Text = searchPanel.Text;
|
|
|
|
|
|
this.SetVisibility(showEditPanel: false);
|
2018-08-03 07:35:17 -07:00
|
|
|
|
this.ValueChanged?.Invoke(this, null);
|
2018-01-17 23:17:49 -08:00
|
|
|
|
};
|
|
|
|
|
|
rightPanel.AddChild(saveButton);
|
|
|
|
|
|
|
|
|
|
|
|
this.SetRightAnchorItem(rightPanel);
|
2018-01-23 12:55:10 -08:00
|
|
|
|
|
|
|
|
|
|
this.ActionArea.Margin = this.ActionArea.Margin.Clone(right: rightPanel.Width + 5);
|
2018-01-17 23:17:49 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override string Text
|
|
|
|
|
|
{
|
|
|
|
|
|
get => titleText.Text;
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (titleText.Text != value)
|
|
|
|
|
|
{
|
|
|
|
|
|
titleText.Text = value;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void SetVisibility(bool showEditPanel)
|
|
|
|
|
|
{
|
|
|
|
|
|
editButton.Visible = !showEditPanel;
|
|
|
|
|
|
titleText.Visible = !showEditPanel;
|
|
|
|
|
|
|
|
|
|
|
|
saveButton.Visible = showEditPanel;
|
|
|
|
|
|
searchPanel.Visible = showEditPanel;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|