aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/DialogOpenMode.cs
blob: 0d46a97346ea71a13bc8e0b9f3687d82b68dc387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.MachineStudio.DB.ViewModels
{
    public enum DialogOpenMode
    {
        Editing,
        Adding,
    }
}
e cref="TextArea"/> /// or <see cref="TextView"/>). /// </summary> public interface ITextEditorComponent : IServiceProvider { /// <summary> /// Gets the document being edited. /// </summary> TextDocument Document { get; } /// <summary> /// Occurs when the Document property changes (when the text editor is connected to another /// document - not when the document content changes). /// </summary> event EventHandler DocumentChanged; /// <summary> /// Gets the options of the text editor. /// </summary> TextEditorOptions Options { get; } /// <summary> /// Occurs when the Options property changes, or when an option inside the current option list /// changes. /// </summary> event PropertyChangedEventHandler OptionChanged; } }