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
This commit is contained in:
parent
68aa99aee4
commit
18165c96e8
@ -3,6 +3,14 @@ KBL-Visualizer HISTORY
|
|||||||
x Fixed, + Added, * Improved/Changed, i Information
|
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)
|
2004-02-20 (1.2)
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@ AutoIncBuild=1
|
|||||||
MajorVer=1
|
MajorVer=1
|
||||||
MinorVer=2
|
MinorVer=2
|
||||||
Release=0
|
Release=0
|
||||||
Build=11
|
Build=12
|
||||||
Debug=0
|
Debug=0
|
||||||
PreRelease=0
|
PreRelease=0
|
||||||
Special=0
|
Special=0
|
||||||
@ -126,7 +126,7 @@ CodePage=1252
|
|||||||
[Version Info Keys]
|
[Version Info Keys]
|
||||||
CompanyName=
|
CompanyName=
|
||||||
FileDescription=KBL-Visualizer
|
FileDescription=KBL-Visualizer
|
||||||
FileVersion=1.2.0.11
|
FileVersion=1.2.0.12
|
||||||
InternalName=KBLVisualizer
|
InternalName=KBLVisualizer
|
||||||
LegalCopyright=(c)2004 by Markus Birth <mbirth@webwriters.de>
|
LegalCopyright=(c)2004 by Markus Birth <mbirth@webwriters.de>
|
||||||
LegalTrademarks=
|
LegalTrademarks=
|
||||||
|
Binary file not shown.
@ -9,15 +9,20 @@ devices.
|
|||||||
|
|
||||||
The program itself should be self-explanatory.
|
The program itself should be self-explanatory.
|
||||||
The left area is the working space which
|
The left area is the working space which
|
||||||
contains the keyboard layout you are working
|
contains the keyboard layout source code you
|
||||||
on. You can open and save your work using the
|
are working on. The syntax of the command in
|
||||||
buttons above the text area.
|
the current line is displayed above the text
|
||||||
|
area. You can open and save your work using
|
||||||
|
the buttons above the syntax line.
|
||||||
|
|
||||||
The right hand side shows a preview of the
|
The right hand side shows a preview of the
|
||||||
keyboard so that you get an idea how it
|
keyboard so that you get an idea how it
|
||||||
looks like. Use the SpinControl next to the
|
looks like. Use the SpinControl next to the
|
||||||
"Visualize!"-button to select the map you
|
"Visualize!"-button to select the map you
|
||||||
want to see.
|
want to see. Click on a key to jump to that
|
||||||
|
key in the KBL source code. The key at the
|
||||||
|
cursor position is highlighted using a red
|
||||||
|
border.
|
||||||
|
|
||||||
The bottom left corner contains the unicode
|
The bottom left corner contains the unicode
|
||||||
table. It is loaded from the file
|
table. It is loaded from the file
|
||||||
|
@ -4,7 +4,7 @@ interface
|
|||||||
|
|
||||||
uses
|
uses
|
||||||
Windows, Forms, Graphics, SysUtils, StrUtils, Spin, ExtCtrls, Dialogs,
|
Windows, Forms, Graphics, SysUtils, StrUtils, Spin, ExtCtrls, Dialogs,
|
||||||
StdCtrls, Controls, Classes, ComCtrls, Grids, Clipbrd;
|
StdCtrls, Controls, Classes, ComCtrls, Grids, Clipbrd, Messages;
|
||||||
|
|
||||||
type
|
type
|
||||||
TKBLEditForm = class(TForm)
|
TKBLEditForm = class(TForm)
|
||||||
@ -81,6 +81,9 @@ type
|
|||||||
row: integer;
|
row: integer;
|
||||||
key: integer;
|
key: integer;
|
||||||
end;
|
end;
|
||||||
|
TRowCol = record
|
||||||
|
row, col: integer;
|
||||||
|
end;
|
||||||
TKey = record
|
TKey = record
|
||||||
typ: char;
|
typ: char;
|
||||||
value: string;
|
value: string;
|
||||||
@ -148,6 +151,12 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function GetMemoRowCol(M: TMemo): TRowCol;
|
||||||
|
begin
|
||||||
|
Result.row := M.Perform(EM_LINEFROMCHAR, M.SelStart, 0);
|
||||||
|
Result.col := M.SelStart - M.Perform(EM_LINEINDEX, Result.row, 0);
|
||||||
|
end;
|
||||||
|
|
||||||
procedure UpdateTitle;
|
procedure UpdateTitle;
|
||||||
begin
|
begin
|
||||||
with KBLEditForm do begin
|
with KBLEditForm do begin
|
||||||
@ -199,28 +208,30 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
function GetCursorPos: TSelection;
|
function GetCursorPos: TSelection;
|
||||||
var cp, i: integer;
|
var i: integer;
|
||||||
t: AnsiString;
|
|
||||||
test: char;
|
test: char;
|
||||||
m, r, k: integer;
|
m, r, k: integer;
|
||||||
|
cpos: TRowCol;
|
||||||
begin
|
begin
|
||||||
m := 0;
|
m := 0;
|
||||||
r := 0;
|
r := 0;
|
||||||
k := 0;
|
k := 0;
|
||||||
t := KBLEditForm.Memo1.Lines.Text;
|
cpos := GetMemoRowCol(KBLEditForm.Memo1);
|
||||||
cp := KBLEditForm.Memo1.SelStart;
|
for i:=0 to cpos.row do begin
|
||||||
for i:=1 to cp+1 do begin
|
if (Length(KBLEditForm.Memo1.Lines.Strings[i])>0) then begin
|
||||||
test := UpCase(t[i]);
|
test := UpCase(KBLEditForm.Memo1.Lines.Strings[i][1]);
|
||||||
if ((i=1) OR (Ord(t[i-1])=10)) AND (test='M') then begin
|
Stat('Memo1 #:'+IntToStr(i)+' - value: '+test);
|
||||||
Inc(m);
|
if (test='M') then begin
|
||||||
r := 0;
|
Inc(m);
|
||||||
k := 0;
|
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;
|
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;
|
end;
|
||||||
Result.map := m;
|
Result.map := m;
|
||||||
Result.row := r;
|
Result.row := r;
|
||||||
@ -525,12 +536,17 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TKBLEditForm.FormCreate(Sender: TObject);
|
procedure TKBLEditForm.FormCreate(Sender: TObject);
|
||||||
|
var ts: TSelection;
|
||||||
begin
|
begin
|
||||||
|
ts.map := 0;
|
||||||
|
ts.row := 0;
|
||||||
|
ts.key := 0;
|
||||||
if (debug) then Status.Visible := true;
|
if (debug) then Status.Visible := true;
|
||||||
TimerScroll.Enabled := false;
|
TimerScroll.Enabled := false;
|
||||||
LabelFile.Caption := '';
|
LabelFile.Caption := '';
|
||||||
LabelSyntax.Caption := '';
|
LabelSyntax.Caption := '';
|
||||||
ClearScreen;
|
ClearScreen;
|
||||||
|
VisMap(1, ts);
|
||||||
LoadUnicodes;
|
LoadUnicodes;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -599,11 +615,12 @@ procedure TKBLEditForm.ButtonNewClick(Sender: TObject);
|
|||||||
begin
|
begin
|
||||||
if (Memo1.Modified) then if (Application.MessageBox('Are you sure to clear everything?', 'Please confirm', MB_YESNO)=IDNO) then Exit;
|
if (Memo1.Modified) then if (Application.MessageBox('Are you sure to clear everything?', 'Please confirm', MB_YESNO)=IDNO) then Exit;
|
||||||
Memo1.Clear;
|
Memo1.Clear;
|
||||||
Memo1.SetFocus;
|
|
||||||
ButtonSave.Enabled := false;
|
ButtonSave.Enabled := false;
|
||||||
Memo1.Modified := false;
|
Memo1.Modified := false;
|
||||||
LabelFile.Caption := '';
|
LabelFile.Caption := '';
|
||||||
UpdateTitle;
|
UpdateTitle;
|
||||||
|
ClearScreen;
|
||||||
|
Memo1.SetFocus;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure UpdateColor;
|
procedure UpdateColor;
|
||||||
@ -688,13 +705,13 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function GetFirstCharInLine(s: AnsiString; i: integer): char;
|
function GetFirstCharInLine(m: TMemo): char;
|
||||||
var j: integer;
|
var p: TRowCol;
|
||||||
begin
|
begin
|
||||||
Result := Chr(0);
|
Result := Chr(0);
|
||||||
for j:=i downto 1 do begin
|
p := GetMemoRowCol(m);
|
||||||
if (Ord(s[j])=13) OR (Ord(s[j])=10) then Break;
|
if (Length(m.Lines.Strings[p.row])>0) then begin
|
||||||
Result := s[j];
|
Result := m.Lines.Strings[p.row][1];
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -728,7 +745,7 @@ end;
|
|||||||
procedure TKBLEditForm.Memo1Change(Sender: TObject);
|
procedure TKBLEditForm.Memo1Change(Sender: TObject);
|
||||||
var x: char;
|
var x: char;
|
||||||
begin
|
begin
|
||||||
x := GetFirstCharInLine(Memo1.Lines.Text, Memo1.SelStart);
|
x := GetFirstCharInLine(Memo1);
|
||||||
SetSyntax(GetHelpByKey(x));
|
SetSyntax(GetHelpByKey(x));
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -776,6 +793,7 @@ end;
|
|||||||
procedure MemoJumpTo(map, row, key: integer);
|
procedure MemoJumpTo(map, row, key: integer);
|
||||||
var t: AnsiString;
|
var t: AnsiString;
|
||||||
i: integer;
|
i: integer;
|
||||||
|
x: char;
|
||||||
test: char;
|
test: char;
|
||||||
begin
|
begin
|
||||||
with KBLEditForm.Memo1 do begin
|
with KBLEditForm.Memo1 do begin
|
||||||
@ -789,6 +807,9 @@ begin
|
|||||||
end;
|
end;
|
||||||
if (map=0) AND (row=0) AND (key=0) then begin
|
if (map=0) AND (row=0) AND (key=0) then begin
|
||||||
SelStart := i-1;
|
SelStart := i-1;
|
||||||
|
x := GetFirstCharInLine(KBLEditForm.Memo1);
|
||||||
|
Perform(EM_SCROLLCARET, 0, 0);
|
||||||
|
SetSyntax(GetHelpByKey(x));
|
||||||
SetFocus;
|
SetFocus;
|
||||||
Break;
|
Break;
|
||||||
end;
|
end;
|
||||||
@ -804,6 +825,7 @@ begin
|
|||||||
sel := GetClickedKey(SpinEdit1.Value,x,y);
|
sel := GetClickedKey(SpinEdit1.Value,x,y);
|
||||||
if (sel.map>0) then begin
|
if (sel.map>0) then begin
|
||||||
MemoJumpTo(sel.map, sel.row, sel.key);
|
MemoJumpTo(sel.map, sel.row, sel.key);
|
||||||
|
VisMap(SpinEdit1.Value, sel);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Reference in New Issue
Block a user