-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCodeUnit.pas
334 lines (307 loc) · 8.28 KB
/
CodeUnit.pas
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
(*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
* License for the specific language governing rights and limitations
* under the License.
*
* The Initial Developer of this code is Mark Overmars.
* Portions created by John Hansen are Copyright (C) 2009-2013 John Hansen.
* All Rights Reserved.
*
*)
unit CodeUnit;
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
interface
uses
{$IFNDEF FPC}
Windows,
{$ELSE}
LResources,
LCLType,
{$ENDIF}
Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ComCtrls, SynEdit, Menus, uOfficeComp;
type
{ TCodeForm }
TCodeForm = class(TForm)
procedure FormCreate(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ Private declarations }
pmnuCodeView: TOfficePopupMenu;
lmiEditCopy: TOfficeMenuItem;
lmiEditSelectAll: TOfficeMenuItem;
N1: TOfficeMenuItem;
mniCodeFind: TOfficeMenuItem;
mniCodeFindNext: TOfficeMenuItem;
mniCodeFindPrev: TOfficeMenuItem;
mniCodeGotoLine: TOfficeMenuItem;
N2: TOfficeMenuItem;
mniStayOnTop: TOfficeMenuItem;
barStatus : TStatusBar;
procedure lmiEditCopyClick(Sender: TObject);
procedure lmiEditSelectAllClick(Sender: TObject);
procedure mniStayOnTopClick(Sender: TObject);
procedure mniCodeFindClick(Sender: TObject);
procedure mniCodeFindNextClick(Sender: TObject);
procedure mniCodeFindPrevClick(Sender: TObject);
procedure mniGotoLineClick(Sender: TObject);
procedure CreateStatusBar;
procedure CreatePopupMenu;
procedure CreateSynEditComponents;
procedure UpdatePositionOnStatusBar;
procedure TheEditorStatusChange(Sender: TObject;
Changes: TSynStatusChanges);
procedure GotoLine;
public
{ Public declarations }
CodeEdit: TSynEdit;
end;
var
CodeForm: TCodeForm;
implementation
{$IFNDEF FPC}
{$R *.DFM}
{$ENDIF}
uses
uLocalizedStrings, uGuiUtils, uEditorUtils, GotoLine, SynEditTypes;
procedure TCodeForm.lmiEditCopyClick(Sender: TObject);
begin
CodeEdit.CopyToClipboard();
end;
procedure TCodeForm.lmiEditSelectAllClick(Sender: TObject);
begin
CodeEdit.SelectAll();
end;
procedure TCodeForm.mniStayOnTopClick(Sender: TObject);
const
FS : array[Boolean] of TFormStyle = (fsNormal, fsStayOnTop);
begin
mniStayOnTop.Checked := not mniStayOnTop.Checked;
FormStyle := FS[mniStayOnTop.Checked];
end;
procedure TCodeForm.mniCodeFindClick(Sender: TObject);
begin
ShowSearchReplaceDialog(CodeEdit, False);
end;
procedure TCodeForm.mniCodeFindNextClick(Sender: TObject);
begin
DoSearchReplaceText(CodeEdit, False, False);
end;
procedure TCodeForm.mniCodeFindPrevClick(Sender: TObject);
begin
DoSearchReplaceText(CodeEdit, False, True);
end;
procedure TCodeForm.FormCreate(Sender: TObject);
begin
CreateStatusBar;
CreateSynEditComponents;
CreatePopupMenu;
CodeEdit.PopupMenu := pmnuCodeView;
end;
procedure TCodeForm.CreatePopupMenu;
begin
pmnuCodeView := TOfficePopupMenu.Create(Self);
pmnuCodeView.Name := 'pmnuCodeView';
lmiEditCopy := TOfficeMenuItem.Create(pmnuCodeView);
lmiEditSelectAll := TOfficeMenuItem.Create(pmnuCodeView);
N1 := TOfficeMenuItem.Create(pmnuCodeView);
mniCodeFind := TOfficeMenuItem.Create(pmnuCodeView);
mniCodeFindNext := TOfficeMenuItem.Create(pmnuCodeView);
mniCodeFindPrev := TOfficeMenuItem.Create(pmnuCodeView);
mniCodeGotoLine := TOfficeMenuItem.Create(pmnuCodeView);
N2 := TOfficeMenuItem.Create(pmnuCodeView);
mniStayOnTop := TOfficeMenuItem.Create(pmnuCodeView);
AddMenuItems(pmnuCodeView.Items,[lmiEditCopy, lmiEditSelectAll, N1, mniCodeFind,
mniCodeFindNext, mniCodeFindPrev, mniCodeGotoLine, N2,
mniStayOnTop]);
// pmnuCodeView.Items.Add([lmiEditCopy, lmiEditSelectAll, N1, mniCodeFind,
// mniCodeFindNext, mniCodeFindPrev, mniCodeGotoLine, N2,
// mniStayOnTop]);
with lmiEditCopy do
begin
Name := 'lmiEditCopy';
Caption := sCopy;
ShortCut := 16451; // Ctrl+C
OnClick := lmiEditCopyClick;
end;
with lmiEditSelectAll do
begin
Name := 'lmiEditSelectAll';
Caption := sSelectAll;
ShortCut := 16449; // Ctrl+A
OnClick := lmiEditSelectAllClick;
end;
with N1 do
begin
Name := 'N1';
Caption := '-';
end;
with mniCodeFind do
begin
Name := 'mniCodeFind';
Caption := sFind + '...';
ShortCut := 16454; // Ctrl+F
OnClick := mniCodeFindClick;
end;
with mniCodeFindNext do
begin
Name := 'mniCodeFindNext';
Caption := sFindNext;
ShortCut := 114; // F3
OnClick := mniCodeFindNextClick;
end;
with mniCodeFindPrev do
begin
Name := 'mniCodeFindPrev';
Caption := sFindPrevious;
ShortCut := 8306; // Shift+F3
OnClick := mniCodeFindPrevClick;
end;
with mniCodeGotoLine do
begin
Name := 'mniCodeGotoLine';
Caption := sGotoLine;
ShortCut := 16455; // Ctrl+G
OnClick := mniGotoLineClick;
end;
with N2 do
begin
Name := 'N2';
Caption := '-';
end;
with mniStayOnTop do
begin
Name := 'mniStayOnTop';
Caption := sStayOnTop;
RadioItem := True;
OnClick := mniStayOnTopClick;
end;
end;
procedure TCodeForm.CreateSynEditComponents;
begin
CodeEdit := TSynEdit.Create(Self);
with CodeEdit do
begin
Name := 'CodeEdit';
Parent := Self;
Left := 0;
Top := 0;
Width := 536;
Height := 341;
Cursor := crIBeam;
Align := alClient;
Font.Charset := DEFAULT_CHARSET;
Font.Color := clWindowText;
Font.Height := -13;
Font.Name := 'Courier New';
Font.Pitch := fpFixed;
Font.Style := [];
ParentColor := False;
ParentFont := False;
TabOrder := 0;
{$IFNDEF FPC}
Gutter.Font.Charset := DEFAULT_CHARSET;
Gutter.Font.Color := clWindowText;
Gutter.Font.Height := -11;
Gutter.Font.Name := 'Terminal';
Gutter.Font.Style := [];
{$ENDIF}
Lines.Clear;
ReadOnly := True;
MaxLeftChar := 8192;
OnStatusChange := TheEditorStatusChange;
end;
end;
procedure TCodeForm.TheEditorStatusChange(Sender: TObject;
Changes: TSynStatusChanges);
begin
// Note: scAll for new file loaded
// caret position has changed
if Changes * [{$IFNDEF FPC}scAll, {$ENDIF}scCaretX, scCaretY] <> [] then begin
UpdatePositionOnStatusBar;
end;
end;
procedure TCodeForm.UpdatePositionOnStatusBar;
var
p: TPoint;
begin
p := CodeEdit.CaretXY;
barStatus.Panels[0].Text := Format('%6d:%3d', [p.Y, p.X]);
end;
procedure TCodeForm.FormShow(Sender: TObject);
begin
UpdatePositionOnStatusBar;
end;
procedure TCodeForm.CreateStatusBar;
begin
barStatus := TStatusBar.Create(Self);
with barStatus do
begin
Name := 'barStatus';
Parent := Self;
Left := 0;
Top := 319;
Width := 536;
Height := 22;
Hint := 'Copy';
with Panels.Add do begin
Alignment := taCenter;
Width := 80;
end;
with Panels.Add do begin
Width := 80;
end;
with Panels.Add do begin
Width := 80;
end;
with Panels.Add do begin
Width := 80;
end;
with Panels.Add do begin
Width := 80;
end;
with Panels.Add do begin
Width := 50;
end;
SimplePanel := False;
end;
end;
procedure TCodeForm.GotoLine;
var
G : TGotoForm;
begin
G := TGotoForm.Create(nil);
try
G.MaxLine := CodeEdit.Lines.Count;
G.TheLine := CodeEdit.CaretY;
if G.ShowModal = mrOK then
begin
with CodeEdit do begin
SetFocus;
CaretXY := Point(0, G.TheLine);
BlockBegin := CaretXY;
BlockEnd := BlockBegin;
EnsureCursorPosVisible;
end;
end;
finally
G.Free;
end;
end;
procedure TCodeForm.mniGotoLineClick(Sender: TObject);
begin
GotoLine;
end;
{$IFDEF FPC}
initialization
{$i CodeUnit.lrs}
{$ENDIF}
end.