From 18165c96e85757b32d146d79cfbcdbdb92bf88c5 Mon Sep 17 00:00:00 2001 From: mbirth Date: Wed, 8 Dec 2004 09:20:00 +0000 Subject: [PATCH] modified History.txt modified KBLVisualizer.dof modified KBLVisualizer.res modified KBLVisualizer.txt modified KBLVisualizerU.pas -Memo1 now jumps to cursor position upon click on a key in visual -more optimizations for GetFirstCharInLine and GetSelection --- History.txt | 8 ++++++ KBLVisualizer.dof | 4 +-- KBLVisualizer.res | Bin 4380 -> 4380 bytes KBLVisualizer.txt | 13 ++++++--- KBLVisualizerU.pas | 68 ++++++++++++++++++++++++++++++--------------- 5 files changed, 64 insertions(+), 29 deletions(-) diff --git a/History.txt b/History.txt index 0fa8fdc..f7a9513 100644 --- a/History.txt +++ b/History.txt @@ -3,6 +3,14 @@ KBL-Visualizer HISTORY x Fixed, + Added, * Improved/Changed, i Information +2004-02-21 +---------- + +x : Memo field now jumps to cursor position after key was clicked + +* : more optimizations + + 2004-02-20 (1.2) ---------------- diff --git a/KBLVisualizer.dof b/KBLVisualizer.dof index 43d627b..7eaa1b9 100644 --- a/KBLVisualizer.dof +++ b/KBLVisualizer.dof @@ -115,7 +115,7 @@ AutoIncBuild=1 MajorVer=1 MinorVer=2 Release=0 -Build=11 +Build=12 Debug=0 PreRelease=0 Special=0 @@ -126,7 +126,7 @@ CodePage=1252 [Version Info Keys] CompanyName= FileDescription=KBL-Visualizer -FileVersion=1.2.0.11 +FileVersion=1.2.0.12 InternalName=KBLVisualizer LegalCopyright=(c)2004 by Markus Birth LegalTrademarks= diff --git a/KBLVisualizer.res b/KBLVisualizer.res index c710d83b0cf875416ecdfb965f529aacb735db3c..e5966c60f6e57a958118eb5c97fbcc826377f880 100644 GIT binary patch delta 28 kcmbQEG)HMe11~2J0|NsS10w^^0) then begin + test := UpCase(KBLEditForm.Memo1.Lines.Strings[i][1]); + Stat('Memo1 #:'+IntToStr(i)+' - value: '+test); + if (test='M') then begin + Inc(m); + r := 0; + k := 0; + end; + if (test='R') then begin + Inc(r); + k := 0; + end; + if (test='K') OR (test='L') OR (test='S') then Inc(k); end; - if ((i=1) OR (Ord(t[i-1])=10)) AND (test='R') then begin - Inc(r); - k := 0; - end; - if ((i=1) OR (Ord(t[i-1])=10)) AND ((test='K') OR (test='L') OR (test='S')) then Inc(k); end; Result.map := m; Result.row := r; @@ -525,12 +536,17 @@ begin end; procedure TKBLEditForm.FormCreate(Sender: TObject); +var ts: TSelection; begin + ts.map := 0; + ts.row := 0; + ts.key := 0; if (debug) then Status.Visible := true; TimerScroll.Enabled := false; LabelFile.Caption := ''; LabelSyntax.Caption := ''; ClearScreen; + VisMap(1, ts); LoadUnicodes; end; @@ -599,11 +615,12 @@ procedure TKBLEditForm.ButtonNewClick(Sender: TObject); begin if (Memo1.Modified) then if (Application.MessageBox('Are you sure to clear everything?', 'Please confirm', MB_YESNO)=IDNO) then Exit; Memo1.Clear; - Memo1.SetFocus; ButtonSave.Enabled := false; Memo1.Modified := false; LabelFile.Caption := ''; UpdateTitle; + ClearScreen; + Memo1.SetFocus; end; procedure UpdateColor; @@ -688,13 +705,13 @@ begin end; end; -function GetFirstCharInLine(s: AnsiString; i: integer): char; -var j: integer; +function GetFirstCharInLine(m: TMemo): char; +var p: TRowCol; begin Result := Chr(0); - for j:=i downto 1 do begin - if (Ord(s[j])=13) OR (Ord(s[j])=10) then Break; - Result := s[j]; + p := GetMemoRowCol(m); + if (Length(m.Lines.Strings[p.row])>0) then begin + Result := m.Lines.Strings[p.row][1]; end; end; @@ -728,7 +745,7 @@ end; procedure TKBLEditForm.Memo1Change(Sender: TObject); var x: char; begin - x := GetFirstCharInLine(Memo1.Lines.Text, Memo1.SelStart); + x := GetFirstCharInLine(Memo1); SetSyntax(GetHelpByKey(x)); end; @@ -776,6 +793,7 @@ end; procedure MemoJumpTo(map, row, key: integer); var t: AnsiString; i: integer; + x: char; test: char; begin with KBLEditForm.Memo1 do begin @@ -789,6 +807,9 @@ begin end; if (map=0) AND (row=0) AND (key=0) then begin SelStart := i-1; + x := GetFirstCharInLine(KBLEditForm.Memo1); + Perform(EM_SCROLLCARET, 0, 0); + SetSyntax(GetHelpByKey(x)); SetFocus; Break; end; @@ -804,6 +825,7 @@ begin sel := GetClickedKey(SpinEdit1.Value,x,y); if (sel.map>0) then begin MemoJumpTo(sel.map, sel.row, sel.key); + VisMap(SpinEdit1.Value, sel); end; end; end;