-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathDataGrabber.EditorView.pas
281 lines (235 loc) · 6.7 KB
/
DataGrabber.EditorView.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
{
Copyright (C) 2013-2025 Tim Sinaeve [email protected]
Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
}
{$I DataGrabber.inc}
unit DataGrabber.EditorView;
{ Simple TSynEdit based SQL editor. }
interface
uses
Winapi.Windows, Winapi.Messages,
System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Menus,
SynEdit, SynEditHighlighter, SynHighlighterSQL, SynCompletionProposal,
SynEditMiscClasses,
DataGrabber.Interfaces;
type
TfrmEditorView = class(TForm, IEditorView)
synSQL : TSynSQLSyn;
scpMain : TSynCompletionProposal;
private
FEditor : TSynEdit;
FManager : IConnectionViewManager;
procedure SettingsChanged(Sender: TObject);
protected
{$REGION 'property access methods'}
function GetText: string;
procedure SetText(const Value: string);
function GetColor: TColor;
procedure SetColor(const Value: TColor);
function GetEditorFocused: Boolean;
function GetPopupMenu: TPopupMenu; reintroduce;
procedure SetPopupMenu(const Value: TPopupMenu);
{$ENDREGION}
procedure CreateEditor;
public
procedure AfterConstruction; override;
procedure BeforeDestruction; override;
constructor Create(
AOwner : TComponent;
AManager : IConnectionViewManager
); reintroduce; virtual;
procedure AssignParent(AParent: TWinControl);
procedure CopyToClipboard;
procedure FillCompletionLists(ATables, AAttributes : TStrings);
procedure ApplySettings;
procedure SetFocus; override;
property PopupMenu: TPopupMenu
read GetPopupMenu write SetPopupMenu;
property EditorFocused: Boolean
read GetEditorFocused;
property Color: TColor
read GetColor write SetColor;
property Text: string
read GetText write SetText;
end;
implementation
uses
System.UITypes,
DataGrabber.Resources;
{$R *.dfm}
type
TScrollStyle = System.UITypes.TScrollStyle;
{$REGION 'construction and destruction'}
constructor TfrmEditorView.Create(AOwner: TComponent;
AManager: IConnectionViewManager);
begin
inherited Create(AOwner);
FManager := AManager;
end;
procedure TfrmEditorView.AfterConstruction;
begin
inherited AfterConstruction;
CreateEditor;
FManager.Settings.OnChanged.Add(SettingsChanged);
end;
procedure TfrmEditorView.BeforeDestruction;
begin
FManager.Settings.OnChanged.Remove(SettingsChanged);
FManager := nil;
inherited BeforeDestruction;
end;
{$ENDREGION}
{$REGION 'property access methods'}
function TfrmEditorView.GetColor: TColor;
begin
Result := FEditor.Color;
end;
procedure TfrmEditorView.SetColor(const Value: TColor);
begin
if Value <> Color then
begin
FEditor.Color := Value;
FEditor.Gutter.GradientEndColor := Value;
end;
end;
function TfrmEditorView.GetEditorFocused: Boolean;
begin
Result := FEditor.Focused;
end;
function TfrmEditorView.GetPopupMenu: TPopupMenu;
begin
Result := FEditor.PopupMenu;
end;
procedure TfrmEditorView.SetPopupMenu(const Value: TPopupMenu);
begin
FEditor.PopupMenu := Value;
end;
function TfrmEditorView.GetText: string;
begin
Result := FEditor.Text;
end;
procedure TfrmEditorView.SetText(const Value: string);
begin
FEditor.Text := Value;
end;
{$ENDREGION}
{$REGION 'event handlers'}
procedure TfrmEditorView.SettingsChanged(Sender: TObject);
begin
ApplySettings;
end;
{$ENDREGION}
{$REGION 'protected methods'}
procedure TfrmEditorView.ApplySettings;
begin
FEditor.Font.Assign(FManager.Settings.EditorFont);
FEditor.Font.Size := 12;
end;
procedure TfrmEditorView.AssignParent(AParent: TWinControl);
begin
Parent := AParent;
BorderStyle := bsNone;
Align := alClient;
Visible := True;
end;
procedure TfrmEditorView.CreateEditor;
begin
FEditor := TSynEdit.Create(Self);
FEditor.Parent := Self;
FEditor.Align := alClient;
FEditor.AlignWithMargins := False;
FEditor.BorderStyle := bsNone;
FEditor.Font.Assign(FManager.Settings.EditorFont);
FEditor.Font.Size := 12;
FEditor.Highlighter := synSQL;
FEditor.Options := [
eoAltSetsColumnMode,
eoAutoIndent,
eoDragDropEditing,
eoDropFiles,
eoEnhanceHomeKey,
eoEnhanceEndKey,
eoGroupUndo,
eoScrollPastEol,
eoShowScrollHint,
eoSmartTabDelete,
eoSmartTabs,
eoSpecialLineDefaultFg,
eoTabIndent,
eoTabsToSpaces,
eoTrimTrailingSpaces
];
FEditor.ActiveLineColor := clYellow;
FEditor.WordWrap := True;
FEditor.Gutter.AutoSize := True;
FEditor.Gutter.ShowLineNumbers := True;
FEditor.Gutter.Font.Name := 'Consolas';
FEditor.Gutter.Font.Color := clSilver;
FEditor.Gutter.Gradient := True;
FEditor.Gutter.GradientStartColor := clWhite;
FEditor.Gutter.GradientEndColor := clWhite;
FEditor.Gutter.LeftOffset := 0;
FEditor.Gutter.RightOffset := 0;
FEditor.Gutter.RightMargin := 2;
FEditor.Gutter.Color := cl3DLight;
FEditor.RightEdgeColor := cl3DLight;
scpMain.Editor := FEditor;
end;
{$ENDREGION}
{$REGION 'public methods'}
procedure TfrmEditorView.SetFocus;
begin
if FEditor.CanFocus then
FEditor.SetFocus;
end;
procedure TfrmEditorView.CopyToClipboard;
begin
FEditor.CopyToClipboard;
end;
procedure TfrmEditorView.FillCompletionLists(ATables, AAttributes: TStrings);
var
I : Integer;
Items : TStringList;
Inserts : TStringList;
begin
inherited SetFocus;
Items := scpMain.ItemList as TStringList;
Inserts := scpMain.InsertList as TStringList;
Items.Clear;
Inserts.Clear;
synSQL.TableNames.Clear;
if Assigned(AAttributes) then
begin
for I := 0 to Pred(AAttributes.Count) do
begin
if Inserts.IndexOf(AAttributes.Strings[I]) = -1 then
begin
Items.Insert(0, Format(SFieldItem, [AAttributes.Strings[I]]));
Inserts.Insert(0, AAttributes.Strings[I]);
end;
end;
end;
if Assigned(ATables) then
begin
for I := 0 to Pred(ATables.Count) do
begin
if Inserts.IndexOf(ATables.Strings[I]) = -1 then
begin
Items.Add(Format(STableItem, [ATables.Strings[I]]));
Inserts.Add(ATables.Strings[I]);
synSQL.TableNames.Add(ATables.Strings[I]);
end;
end;
end;
end;
{$ENDREGION}
end.