-
Notifications
You must be signed in to change notification settings - Fork 10
/
_editors.pas
244 lines (209 loc) · 6.75 KB
/
_editors.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
unit _Editors;
(******
DN/2 Plugin Interface - object model
Copyright (C) 2002 Aleksej Kozlov (Cat)
2:5030/1326.13
******)
{&Delphi+}
{&Use32+}
interface
uses
_Defines, _Streams, _Collect, _Views, _Menus
;
type
PUniWindow = ^TUniWindow;
TUniWindow = object(TWindow)
{function GetPalette: PPalette; virtual;}
function MakeScrollBar(AOptions: Word): PScrollBar;
{procedure InitFrame; virtual;}
{function ReactOnCmd: Boolean; virtual;}
end;
PXFileEditor = ^TXFileEditor;
TXFileEditor = object(TView)
HScroll, VScroll: PScrollBar;
ReplaceAll: Boolean;
Delta: TPoint;
EditName: String;
FileLines: PLineCollection;
isValid: Boolean;
Marking: Boolean;
SmartPad: Boolean;
ClipBrd: Boolean;
OptMenu: PMenu;
Mark, Sel: TRect;
Pos, LastPos: TPoint;
MarkPos: TPosArray;
WorkLine: LongInt;
DrawMode: Integer;
WorkString, LastShape: LongString;
OldBlockValid, SearchOnDisplay,
InsertMode, VertBlock, Modified,
WorkModified, JustSaved, BlockVisible,
SpecChar, WasDelete, MouseMark, UnMark,
LineMarking, OptimalFill, RulerVisible,
EnableMarking, TabReplace, SearchActive: Boolean;
UndoInfo: PCollection;
RedoInfo: PCollection;
UndoTimes, LastSaveUndoTimes: LongInt;
ChPosition: Boolean;
Macros: PCollection;
Locker: PStream;
LastDir: Integer;
MemEnough: Boolean;
KeyMap: TKeyMap;
EdOpt: TEditOptions;
HiLitePar: THighliteParams;
InfoL, BMrk: PView;
MenuItemStr: array[Boolean] of PString;
RegExp: Pointer {PRegExp};
constructor Init(var Bounds: TRect;
AHScrollBar, AVScrollBar: PScrollBar; var FileName: String);
constructor Load(var S: TStream);
{destructor Done; virtual;}
procedure Store(var S: TStream);
{procedure Awaken; virtual;}
procedure DoHighlite(var B; const S: LongString; const Attr: String);
{procedure HandleEvent(var Event: TEvent); virtual;}
{procedure Draw; virtual;}
{function Valid(Command: Word): Boolean; virtual;}
{function GetPalette: PPalette; virtual;}
function GetLine(Index: LongInt): LongString;
function GetSelection: PCollection;
{procedure SetState(AState: Word; Enable: Boolean); virtual;}
function ValidBlock: Boolean;
procedure CalcMenu;
function Search(StartX, StartY: Word): Boolean;
procedure InsertBlock(ABlock: PCollection; SaveUndo: Boolean);
procedure ModifyLine(Index: LongInt; S: LongString;
DelSpaces: Boolean);
procedure SetLimits;
{procedure ChangeBounds(var R: TRect); virtual;}
procedure ScrollTo(DeltaX, DeltaY: LongInt);
function LimitX: LongInt;
function LimitY: LongInt;
procedure StoreUndoInfo(What: Word; Where: TPoint; var Info);
function HandleCommand(var Event: TEvent): Boolean; virtual;
{function KeyMapConvertStr(S: LongString; toAscii: Boolean): LongString;}
procedure KeyMapAtInsert(N: LongInt; P: PLongString);
procedure KeyMapAtReplace(N: LongInt; P: PLongString);
end;
PEditWindow = ^TEditWindow;
TEditWindow = object(TUniWindow)
AInfo: Pointer {PInfoLine};
ABookLine: Pointer {PBookmarkLine};
Intern: PXFileEditor;
MenuBar: PMenuBar;
UpMenu: PMenu;
ModalEnd: Boolean;
constructor Init(R: TRect; FileName: String);
constructor Load(var S: TStream);
procedure Store(var S: TStream);
{function Execute: Word; virtual;}
{procedure SetState(AState: Word; Enable: Boolean); virtual;}
end;
implementation
uses
_DNFuncs
;
function TUniWindow.MakeScrollBar(AOptions: Word): PScrollBar;
begin
Result := PScrollBar(_TUniWindow^.MakeScrollBar(AOptions, @Self));
end;
constructor TXFileEditor.Init(var Bounds: TRect;
AHScrollBar, AVScrollBar: PScrollBar; var FileName: String);
begin
_TXFileEditor^.Init(Bounds, _Model1.PScrollBar(AHScrollBar),
_Model1.PScrollBar(AVScrollBar), FileName, nil, @Self);
end;
constructor TXFileEditor.Load(var S: TStream);
begin
_TXFileEditor^.Load(_Model1.TStream(S), nil, @Self);
end;
procedure TXFileEditor.Store(var S: TStream);
begin
_TXFileEditor^.Store(_Model1.TStream(S), @Self);
end;
procedure TXFileEditor.DoHighlite(var B; const S: LongString;
const Attr: String);
begin
_TXFileEditor^.DoHighlite(B, S, Attr, @Self);
end;
function TXFileEditor.GetLine(Index: LongInt): LongString;
begin
Result := _TXFileEditor^.GetLine(Index, @Self);
end;
function TXFileEditor.GetSelection: PCollection;
begin
Result := PCollection(_TXFileEditor^.GetSelection(@Self));
end;
function TXFileEditor.ValidBlock: Boolean;
begin
Result := _TXFileEditor^.ValidBlock(@Self);
end;
procedure TXFileEditor.CalcMenu;
begin
_TXFileEditor^.CalcMenu(@Self);
end;
function TXFileEditor.Search(StartX, StartY: Word): Boolean;
begin
Result := _TXFileEditor^.Search(StartX, StartY, @Self);
end;
procedure TXFileEditor.InsertBlock(ABlock: PCollection; SaveUndo: Boolean);
begin
_TXFileEditor^.InsertBlock(_Model1.PCollection(ABlock), SaveUndo, @Self);
end;
procedure TXFileEditor.ModifyLine(Index: LongInt; S: LongString;
DelSpaces: Boolean);
begin
_TXFileEditor^.ModifyLine(Index, S, DelSpaces, @Self);
end;
procedure TXFileEditor.SetLimits;
begin
_TXFileEditor^.SetLimits(@Self);
end;
procedure TXFileEditor.ScrollTo(DeltaX, DeltaY: LongInt);
begin
_TXFileEditor^.ScrollTo(DeltaX, DeltaY, @Self);
end;
function TXFileEditor.LimitX: LongInt;
begin
Result := _TXFileEditor^.LimitX(@Self);
end;
function TXFileEditor.LimitY: LongInt;
begin
Result := _TXFileEditor^.LimitY(@Self);
end;
procedure TXFileEditor.StoreUndoInfo(What: Word; Where: TPoint; var Info);
begin
_TXFileEditor^.StoreUndoInfo(What, Where, Info, @Self);
end;
function TXFileEditor.HandleCommand(var Event: TEvent): Boolean;
assembler; {&Frame-}
asm
end;
{function TXFileEditor.KeyMapConvertStr(S: LongString; toAscii: Boolean)
: LongString;
begin
Result := _TXFileEditor^.KeyMapConvertStr(S, toAscii, @Self);
end;}
procedure TXFileEditor.KeyMapAtInsert(N: LongInt; P: PLongString);
begin
_TXFileEditor^.KeyMapAtInsert(N, P, @Self);
end;
procedure TXFileEditor.KeyMapAtReplace(N: LongInt; P: PLongString);
begin
_TXFileEditor^.KeyMapAtReplace(N, P, @Self);
end;
constructor TEditWindow.Init(R: TRect; FileName: String);
begin
_TEditWindow^.Init(R, FileName, nil, @Self);
end;
constructor TEditWindow.Load(var S: TStream);
begin
_TEditWindow^.Load(_Model1.TStream(S), nil, @Self);
end;
procedure TEditWindow.Store(var S: TStream);
begin
_TEditWindow^.Store(_Model1.TStream(S), @Self);
end;
end.