-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTodo.txt
45 lines (33 loc) · 1.51 KB
/
Todo.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
RC 1.2
* figure of what MatchList does
* change about box
* Document is screwed if .rgx file is invalid!
* design issue: should not MainFrm.file_info be part of the Document class?
* how about adding drag and drop on main windows, like hashbrown works!
1. groups need to be displayed in someway.
2. file save should save both panes or seperart pane.
3. sytax highlight
//private void SyntaxHighlight()
//{
// string input = rtb_regx.Text;
// MatchCollection mc = Regex.Matches( input, syntax, RegexOptions.Multiline );
// int idx = rtb_regx.SelectionStart;
// foreach( Match m in mc )
// {
// Group g = m.Groups["g1"];
// rtb_regx.SelectionStart = g.Index;
// rtb_regx.SelectionLength = g.Length;
// rtb_regx.SelectionBackColor = Color.Yellow;
// g = m.Groups["g2"];
// rtb_regx.SelectionStart = g.Index;
// rtb_regx.SelectionLength = g.Length;
// rtb_regx.SelectionBackColor = Color.Green;
// g = m.Groups["g3"];
// rtb_regx.SelectionStart = g.Index;
// rtb_regx.SelectionLength = g.Length;
// rtb_regx.SelectionBackColor = Color.Blue;
// }
// rtb_regx.SelectionStart = idx;
// rtb_regx.SelectionLength = 0;
// rtb_regx.SelectionColor = Properties.Settings.Current.exp_backcolor;
//}