using System;
|
using System.Windows.Forms;
|
using System.Text.RegularExpressions;
|
using System.Collections.Generic;
|
|
namespace LB_VisionControls
|
{
|
public partial class ReplaceForm : Form
|
{
|
FastColoredTextBox tb;
|
bool firstSearch = true;
|
Place startPlace;
|
|
public ReplaceForm(FastColoredTextBox tb)
|
{
|
InitializeComponent();
|
this.tb = tb;
|
}
|
|
private void btClose_Click(object sender, EventArgs e)
|
{
|
Close();
|
}
|
|
private void btFindNext_Click(object sender, EventArgs e)
|
{
|
try
|
{
|
if (!Find(tbFind.Text))
|
MessageBox.Show("Not found");
|
}
|
catch (Exception ex)
|
{
|
MessageBox.Show(ex.Message);
|
}
|
}
|
|
public List<Range> FindAll(string pattern)
|
{
|
RegexOptions opt = cbMatchCase.Checked ? RegexOptions.None : RegexOptions.IgnoreCase;
|
if (!cbRegex.Checked)
|
pattern = Regex.Escape(pattern);
|
if (cbWholeWord.Checked)
|
pattern = "\\b" + pattern + "\\b";
|
//
|
Range range = tb.Selection.Clone();
|
range.Normalize();
|
range.Start = range.End;
|
range.End = new Place(tb.GetLineLength(tb.LinesCount - 1), tb.LinesCount - 1);
|
//
|
List<Range> list = new List<Range>();
|
foreach (var r in range.GetRangesByLines(pattern, opt))
|
list.Add(r);
|
|
return list;
|
}
|
|
public bool Find(string pattern)
|
{
|
RegexOptions opt = cbMatchCase.Checked ? RegexOptions.None : RegexOptions.IgnoreCase;
|
if (!cbRegex.Checked)
|
pattern = Regex.Escape(pattern);
|
if (cbWholeWord.Checked)
|
pattern = "\\b" + pattern + "\\b";
|
//
|
Range range = tb.Selection.Clone();
|
range.Normalize();
|
//
|
if (firstSearch)
|
{
|
startPlace = range.Start;
|
firstSearch = false;
|
}
|
//
|
range.Start = range.End;
|
if (range.Start >= startPlace)
|
range.End = new Place(tb.GetLineLength(tb.LinesCount - 1), tb.LinesCount - 1);
|
else
|
range.End = startPlace;
|
//
|
foreach (var r in range.GetRangesByLines(pattern, opt))
|
{
|
tb.Selection.Start = r.Start;
|
tb.Selection.End = r.End;
|
tb.DoSelectionVisible();
|
tb.Invalidate();
|
return true;
|
}
|
if (range.Start >= startPlace && startPlace > Place.Empty)
|
{
|
tb.Selection.Start = new Place(0, 0);
|
return Find(pattern);
|
}
|
return false;
|
}
|
|
private void tbFind_KeyPress(object sender, KeyPressEventArgs e)
|
{
|
if (e.KeyChar == '\r')
|
btFindNext_Click(sender, null);
|
if (e.KeyChar == '\x1b')
|
Hide();
|
}
|
|
private void FindForm_FormClosing(object sender, FormClosingEventArgs e)
|
{
|
if (e.CloseReason == CloseReason.UserClosing)
|
{
|
e.Cancel = true;
|
Hide();
|
}
|
}
|
|
private void btReplace_Click(object sender, EventArgs e)
|
{
|
try
|
{
|
if (tb.SelectionLength != 0)
|
tb.InsertText(tbReplace.Text);
|
btFindNext_Click(sender, null);
|
}
|
catch (Exception ex)
|
{
|
MessageBox.Show(ex.Message);
|
}
|
}
|
|
private void btReplaceAll_Click(object sender, EventArgs e)
|
{
|
try
|
{
|
tb.Selection.BeginUpdate();
|
tb.Selection.Start = new Place(0, 0);
|
//search
|
var ranges = FindAll(tbFind.Text);
|
//replace
|
if (ranges.Count > 0)
|
{
|
tb.TextSource.Manager.ExecuteCommand(new ReplaceTextCommand(tb.TextSource, ranges, tbReplace.Text));
|
tb.Selection.Start = new Place(0, 0);
|
}
|
//
|
tb.Invalidate();
|
MessageBox.Show(ranges.Count + " occurrence(s) replaced");
|
}
|
catch (Exception ex)
|
{
|
MessageBox.Show(ex.Message);
|
}
|
tb.Selection.EndUpdate();
|
}
|
|
protected override void OnActivated(EventArgs e)
|
{
|
tbFind.Focus();
|
ResetSerach();
|
}
|
|
void ResetSerach()
|
{
|
firstSearch = true;
|
}
|
|
private void cbMatchCase_CheckedChanged(object sender, EventArgs e)
|
{
|
ResetSerach();
|
}
|
}
|
}
|