@@ -16,6 +16,12 @@ type |
| 16 |
{ TfrmTracker } |
16 |
{ TfrmTracker } |
| 17 |
|
17 |
|
| 18 |
TfrmTracker = class(TForm) |
18 |
TfrmTracker = class(TForm) |
|
|
19 |
GotoGeneralAction: TAction; |
|
|
20 |
GotoPatternsAction: TAction; |
|
|
21 |
GotoInstrumentsAction: TAction; |
|
|
22 |
GotoWavesAction: TAction; |
|
|
23 |
GotoCommentsAction: TAction; |
|
|
24 |
GotoRoutinesAction: TAction; |
| 19 |
DeleteRowAction: TAction; |
25 |
DeleteRowAction: TAction; |
| 20 |
DeleteRowForAllAction: TAction; |
26 |
DeleteRowForAllAction: TAction; |
| 21 |
InsertRowForAllAction: TAction; |
27 |
InsertRowForAllAction: TAction; |
@@ -242,6 +248,12 @@ type |
| 242 |
procedure FileSaveAs1BeforeExecute(Sender: TObject); |
248 |
procedure FileSaveAs1BeforeExecute(Sender: TObject); |
| 243 |
procedure FormCloseQuery(Sender: TObject; var CanClose: boolean); |
249 |
procedure FormCloseQuery(Sender: TObject; var CanClose: boolean); |
| 244 |
procedure FormDropFiles(Sender: TObject; const FileNames: array of String); |
250 |
procedure FormDropFiles(Sender: TObject; const FileNames: array of String); |
|
|
251 |
procedure GotoCommentsActionExecute(Sender: TObject); |
|
|
252 |
procedure GotoGeneralActionExecute(Sender: TObject); |
|
|
253 |
procedure GotoInstrumentsActionExecute(Sender: TObject); |
|
|
254 |
procedure GotoPatternsActionExecute(Sender: TObject); |
|
|
255 |
procedure GotoRoutinesActionExecute(Sender: TObject); |
|
|
256 |
procedure GotoWavesActionExecute(Sender: TObject); |
| 245 |
procedure HexWaveEditEditingDone(Sender: TObject); |
257 |
procedure HexWaveEditEditingDone(Sender: TObject); |
| 246 |
procedure InsertRowActionExecute(Sender: TObject); |
258 |
procedure InsertRowActionExecute(Sender: TObject); |
| 247 |
procedure InsertRowActionUpdate(Sender: TObject); |
259 |
procedure InsertRowActionUpdate(Sender: TObject); |
@@ -1514,6 +1526,36 @@ begin |
| 1514 |
end; |
1526 |
end; |
| 1515 |
end; |
1527 |
end; |
| 1516 |
|
1528 |
|
|
|
1529 |
procedure TfrmTracker.GotoGeneralActionExecute(Sender: TObject); |
|
|
1530 |
begin |
|
|
1531 |
PageControl1.TabIndex := 0; |
|
|
1532 |
end; |
|
|
1533 |
|
|
|
1534 |
procedure TfrmTracker.GotoPatternsActionExecute(Sender: TObject); |
|
|
1535 |
begin |
|
|
1536 |
PageControl1.TabIndex := 1; |
|
|
1537 |
end; |
|
|
1538 |
|
|
|
1539 |
procedure TfrmTracker.GotoInstrumentsActionExecute(Sender: TObject); |
|
|
1540 |
begin |
|
|
1541 |
PageControl1.TabIndex := 2; |
|
|
1542 |
end; |
|
|
1543 |
|
|
|
1544 |
procedure TfrmTracker.GotoWavesActionExecute(Sender: TObject); |
|
|
1545 |
begin |
|
|
1546 |
PageControl1.TabIndex := 3; |
|
|
1547 |
end; |
|
|
1548 |
|
|
|
1549 |
procedure TfrmTracker.GotoCommentsActionExecute(Sender: TObject); |
|
|
1550 |
begin |
|
|
1551 |
PageControl1.TabIndex := 4; |
|
|
1552 |
end; |
|
|
1553 |
|
|
|
1554 |
procedure TfrmTracker.GotoRoutinesActionExecute(Sender: TObject); |
|
|
1555 |
begin |
|
|
1556 |
PageControl1.TabIndex := 5; |
|
|
1557 |
end; |
|
|
1558 |
|
| 1517 |
procedure TfrmTracker.HexWaveEditEditingDone(Sender: TObject); |
1559 |
procedure TfrmTracker.HexWaveEditEditingDone(Sender: TObject); |
| 1518 |
var |
1560 |
var |
| 1519 |
S: String; |
1561 |
S: String; |