#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 ICSharpCode.TextEditor.Gui.CompletionWindow; namespace MiniSqlQuery.Core { /// /// The functions of the editing window. /// public interface IQueryEditor : IPerformTask, IFindReplaceProvider, INavigatableDocument, IQueryBatchProvider, IEditor { /// /// Gets a reference to the actual editor control. /// /// The editor control. Control EditorControl { get; } /// /// Sets the "status" text for the form. /// /// The message to appear in the status bar. void SetStatus(string text); /// /// Access to the code completion window. /// CodeCompletionWindow CodeCompletionWindow { get; set; } } }