internal LaunchEditorKeyProcessor(IWpfTextView view, RegexEditorService regexEditorService)
        {
            this.view = view;
            this.regexEditorService = regexEditorService;

            this.keyTypeConverter = new KeyTypeConverter();
        }
 internal LaunchEditorMouseProcessor(IWpfTextView view, RegexEditorService regexEditorService, IToolTipProviderFactory toolTipProviderFactory)
 {
     this.view = view;
     this.regexEditorService     = regexEditorService;
     this.toolTipProviderFactory = toolTipProviderFactory;
     this.IsToolTipShown         = false;
 }