ShareX/ShareX.HelpersLib/NameParser/CodeMenu.cs

165 lines
5.5 KiB
C#
Raw Normal View History

2014-08-11 22:40:14 +12:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2023-01-10 09:31:02 +13:00
Copyright (c) 2007-2023 ShareX Team
2014-08-11 22:40:14 +12:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
2014-12-11 09:25:20 +13:00
using ShareX.HelpersLib.Properties;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
2014-12-11 09:25:20 +13:00
namespace ShareX.HelpersLib
{
public class CodeMenu : ContextMenuStrip
{
public Point MenuLocation
{
get
{
if (MenuLocationBottom)
{
2022-04-09 08:06:08 +12:00
return new Point(MenuLocationOffset.X, textBoxBase.Height + MenuLocationOffset.Y + 1);
}
2022-04-09 08:06:08 +12:00
return new Point(textBoxBase.Width + MenuLocationOffset.X + 1, MenuLocationOffset.Y);
}
}
2022-04-09 08:06:08 +12:00
public Point MenuLocationOffset { get; set; }
public bool MenuLocationBottom { get; set; }
private TextBoxBase textBoxBase;
public CodeMenu(TextBoxBase tbb, CodeMenuItem[] items)
{
textBoxBase = tbb;
Font = new Font("Lucida Console", 8);
AutoClose = textBoxBase == null;
ShowImageMargin = false;
foreach (CodeMenuItem item in items)
2014-09-14 00:07:05 +12:00
{
ToolStripMenuItem tsmi = new ToolStripMenuItem { Text = $"{item.Name} - {item.Description}", Tag = item.Name };
2019-01-25 02:53:00 +13:00
tsmi.MouseUp += (sender, e) =>
{
if (textBoxBase != null && e.Button == MouseButtons.Left)
2019-01-25 02:53:00 +13:00
{
string text = ((ToolStripMenuItem)sender).Tag.ToString();
textBoxBase.AppendTextToSelection(text);
2019-01-25 02:53:00 +13:00
}
else
{
Close();
2019-01-25 02:53:00 +13:00
}
};
if (string.IsNullOrWhiteSpace(item.Category))
{
Items.Add(tsmi);
}
else
{
ToolStripMenuItem tsmiParent;
int index = Items.IndexOfKey(item.Category);
2018-05-16 20:23:13 +12:00
if (index < 0)
{
tsmiParent = new ToolStripMenuItem { Text = item.Category, Tag = item.Category, Name = item.Category };
tsmiParent.HideImageMargin();
Items.Add(tsmiParent);
}
else
{
tsmiParent = Items[index] as ToolStripMenuItem;
}
tsmiParent.DropDownItems.Add(tsmi);
}
}
Items.Add(new ToolStripSeparator());
ToolStripMenuItem tsmiClose = new ToolStripMenuItem(Resources.CodeMenu_Create_Close);
tsmiClose.Click += (sender, e) => Close();
Items.Add(tsmiClose);
2020-05-22 17:44:02 +12:00
if (ShareXResources.UseCustomTheme)
{
ShareXResources.ApplyCustomThemeToContextMenuStrip(this);
}
if (textBoxBase != null)
{
textBoxBase.MouseDown += (sender, e) =>
2014-09-14 00:07:05 +12:00
{
if (Items.Count > 0) Show(textBoxBase, MenuLocation);
2019-01-25 04:05:24 +13:00
};
textBoxBase.GotFocus += (sender, e) =>
2019-01-25 04:05:24 +13:00
{
if (Items.Count > 0) Show(textBoxBase, MenuLocation);
2019-01-25 04:05:24 +13:00
};
textBoxBase.LostFocus += (sender, e) =>
2019-01-25 04:05:24 +13:00
{
if (Visible) Close();
2019-01-25 04:05:24 +13:00
};
textBoxBase.KeyDown += (sender, e) =>
{
if ((e.KeyCode == Keys.Enter || e.KeyCode == Keys.Escape) && Visible)
2019-01-25 04:05:24 +13:00
{
Close();
2019-01-25 04:05:24 +13:00
e.SuppressKeyPress = true;
}
};
textBoxBase.Disposed += (sender, e) => Dispose();
}
}
public static CodeMenu Create<TEntry>(TextBoxBase tb, TEntry[] ignoreList, CodeMenuItem[] extraItems) where TEntry : CodeMenuEntry
{
List<CodeMenuItem> items = new List<CodeMenuItem>();
if (extraItems != null)
{
items.AddRange(extraItems);
}
IEnumerable<CodeMenuItem> codeMenuItems = Helpers.GetValueFields<TEntry>().Where(x => !ignoreList.Contains(x)).
Select(x => new CodeMenuItem(x.ToPrefixString(), x.Description, x.Category));
items.AddRange(codeMenuItems);
return new CodeMenu(tb, items.ToArray());
}
public static CodeMenu Create<TEntry>(TextBoxBase tb, params TEntry[] ignoreList) where TEntry : CodeMenuEntry
{
return Create(tb, ignoreList, (CodeMenuItem[])null);
}
}
2014-08-11 22:40:14 +12:00
}