miniSql

汉化
zgc authored at 11/28/2023 1:00:12 PM zgc committed at 11/28/2023 1:00:26 PM
1.46 KiB
TemplateViewerLoader.cs
#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 MiniSqlQuery.Core;
using MiniSqlQuery.PlugIns.TemplateViewer.Commands;
using WeifenLuo.WinFormsUI.Docking;

namespace MiniSqlQuery.PlugIns.TemplateViewer
{
    /// <summary>The template viewer loader.</summary>
    public class TemplateViewerLoader : PluginLoaderBase
    {
        /// <summary>Initializes a new instance of the <see cref="TemplateViewerLoader"/> class.</summary>
        public TemplateViewerLoader()
            : base("模板查看器", "用于显示模板SQL项的迷你SQL查询插件。", 50)
        {
        }

        /// <summary>Iinitialize the plug in.</summary>
        public override void InitializePlugIn()
        {
            Services.RegisterEditor<TemplateEditorForm>(new FileEditorDescriptor("Template Editor", "mt-editor", "mt"));
            Services.RegisterComponent<TemplateHost>("TemplateHost");
            Services.RegisterComponent<TemplateData>("TemplateData");

            Services.RegisterComponent<TemplateViewForm>("TemplateViewForm");
            Services.HostWindow.AddPluginCommand<RunTemplateCommand>();
            Services.HostWindow.ShowToolWindow(Services.Resolve<TemplateViewForm>(), DockState.DockLeft);
        }
    }
}