#region License
// Copyright 2005-2019 Paul Kohler (https://github.com/paulkohler/minisqlquery). All rights reserved.
// This source code is made available under the terms of the GNU Lesser General Public License v3.0
// https://github.com/paulkohler/minisqlquery/blob/master/LICENSE
#endregion
using System.Windows.Forms;
using MiniSqlQuery.Core;
using MiniSqlQuery.PlugIns.SearchTools.Commands;
namespace MiniSqlQuery.PlugIns.SearchTools
{
/// The search tools loader.
public class SearchToolsLoader : PluginLoaderBase
{
/// Initializes a new instance of the class.
public SearchToolsLoader()
: base(
"迷你SQL查询搜索工具",
"文本搜索工具-通用查找文本工具窗口。",
50)
{
}
/// Iinitialize the plug in.
public override void InitializePlugIn()
{
Services.RegisterComponent("GoToLineForm");
//zhenggc 2023-11-28 modify GetMenuItem("edit") GetMenuItem("editmenu")
ToolStripMenuItem editMenu = Services.HostWindow.GetMenuItem("editmenu");
// add the find to the plugins menu
editMenu.DropDownItems.Add(CommandControlBuilder.CreateToolStripMenuItem());
editMenu.DropDownItems.Add(CommandControlBuilder.CreateToolStripMenuItem());
editMenu.DropDownItems.Add(CommandControlBuilder.CreateToolStripMenuItem());
editMenu.DropDownItems.Add(CommandControlBuilder.CreateToolStripMenuItem());
// get the new item and make in invisible - the shortcut key is still available etc ;-)
ToolStripItem item = editMenu.DropDownItems["FindNextStringCommandToolStripMenuItem"];
item.Visible = false;
item = editMenu.DropDownItems["ReplaceStringCommandToolStripMenuItem"];
item.Visible = false;
// append the button the the toolbar items
Services.HostWindow.AddToolStripSeperator(null);
Services.HostWindow.AddToolStripCommand(null);
}
}
}