File: SQLErrorGrid.pas

package info (click to toggle)
mysql-admin 1.2.5rc-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 80,944 kB
  • ctags: 43,103
  • sloc: sql: 295,916; pascal: 256,535; cpp: 74,487; ansic: 68,881; objc: 26,417; sh: 16,867; yacc: 10,755; java: 9,917; xml: 8,453; php: 2,806; python: 2,068; makefile: 1,252; perl: 3
file content (384 lines) | stat: -rw-r--r-- 11,699 bytes parent folder | download | duplicates (4)
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
unit SQLErrorGrid;

// Copyright (C) 2003, 2004 MySQL AB
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

interface

uses
  Windows, SysUtils, Classes, Contnrs, Graphics, Controls,
  VirtualTrees, gnugettext, PNGImage,
  MySQLConnection, MySQLResultSet, AuxLists, TntMenus, Forms,
  UCESQLHighlighter, UCEHighlighter, UCEEditorKeyCommands,
  UCEHTMLHighlighter, UCEShared, UniCodeEditor, LexicalTools,
  TextSearch, Options, CommonTypes;

type
  TScriptMessageType = (
    smtError,
    smtWarning
  );

  TSQLErrorGrid = class;
  
  TSelectLineEvent = procedure(Sender: TSQLErrorGrid; Line, Position: Integer) of object;
  
  TSQLErrorGrid = class(TVirtualStringTree, IOptionChangeListener)
  private
    ErrorPopupMenu: TTntPopupMenu;
    FOptionProvider: IOptionProvider;
    RSErrorPNGImg,
    RSWarningPNGImg: TPNGObject;

    FOnSelectLine: TSelectLineEvent;
  protected
    procedure ClearMessagesItemClick(Sender: TObject);
    procedure CopyToClipboardItemClick(Sender: TObject);
    procedure CopyToClipboardSelectedItemClick(Sender: TObject);
    procedure DblClick; override;
    procedure DoAfterCellPaint(Canvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; CellRect: TRect); override;
    procedure DoFreeNode(Node: PVirtualNode); override;
    procedure DoGetText(Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType;
      var CellText: WideString); override;
    procedure DoSelectLine(Line, Position: Integer); virtual;
    procedure OptionChanged;
    procedure UpdateFontsAndHeights;
  public
    constructor Create(AOwner: TComponent; OptionProvider: IOptionProvider); reintroduce;
    destructor Destroy; override;
    
    procedure AddError(Msg: WideString; MsgType: TScriptMessageType; MsgNr: Integer; Line: Integer; CharPos: Integer);
    procedure Clear; override;
  published
    property OnSelectLine: TSelectLineEvent read FOnSelectLine write FOnSelectLine;
  end;

//----------------------------------------------------------------------------------------------------------------------

implementation

uses
  Math, PNGTools, TntClipbrd;
  
type
  PScriptError = ^TScriptError;
  TScriptError = record
    Msg: WideString;
    MsgType: TScriptMessageType;
    MsgNr: Integer;
    MsgNrAsString: WideString;
    Line: Integer;
    LineAsString: WideString;
    CharPos: Integer;
  end;


//----------------- TScriptErrorGrid -----------------------------------------------------------------------------------

constructor TSQLErrorGrid.Create(AOwner: TComponent; OptionProvider: IOptionProvider);

var
  Column: TVirtualTreeColumn;
  PopupItem: TTntMenuItem;

begin
  inherited Create(AOwner);

  FOptionProvider := OptionProvider;
  OptionProvider.AddListener(Self);
  NodeDataSize := SizeOf(TScriptError);

  Header.Options := Header.Options + [hoDblClickResize, hoVisible];
  UpdateFontsAndHeights;
  Column := Header.Columns.Add;
  Column.Text := '!';
  Column.Width := 16;
  Column := Header.Columns.Add;
  Column.Text := 'Line';
  Column.Width := 50;
  Column := Header.Columns.Add;
  Column.Text := 'Description';
  Column := Header.Columns.Add;
  Column.Text := 'ErrorNr.';
  Column.Width := 70;
  Header.AutoSizeIndex := 2;
  Header.Options := Header.Options + [hoAutoResize] - [hoColumnResize];
  ParentBackground := False;
  TreeOptions.MiscOptions := TreeOptions.MiscOptions + [toGridExtensions];
  TreeOptions.PaintOptions := TreeOptions.PaintOptions - [toShowRoot, toShowTreeLines] + [toHideFocusRect];
  TreeOptions.SelectionOptions := TreeOptions.SelectionOptions + [toFullRowSelect, toMultiSelect];
  TreeOptions.StringOptions := TreeOptions.StringOptions - [toSaveCaptions];
  HintMode := hmTooltip;
  ShowHint := True;
  DefaultNodeHeight := 16;
  Align := alBottom;
  Height := 0;

  ErrorPopupMenu := TTntPopupMenu.Create(AOwner);
  PopupMenu := ErrorPopupMenu;

  PopupItem := TTntMenuItem.Create(ErrorPopupMenu);
  PopupItem.Caption := _('Copy all to clipboard');
  PopupItem.OnClick := CopyToClipboardItemClick;
  ErrorPopupMenu.Items.Add(PopupItem);

  PopupItem := TTntMenuItem.Create(ErrorPopupMenu);
  PopupItem.Caption := _('Copy selected lines to clipboard');
  PopupItem.OnClick := CopyToClipboardSelectedItemClick;
  ErrorPopupMenu.Items.Add(PopupItem);

  PopupItem := TTntMenuItem.Create(ErrorPopupMenu);
  PopupItem.Caption := '-';
  ErrorPopupMenu.Items.Add(PopupItem);

  PopupItem := TTntMenuItem.Create(ErrorPopupMenu);
  PopupItem.Caption := _('Clear Messages');
  PopupItem.OnClick := ClearMessagesItemClick;
  ErrorPopupMenu.Items.Add(PopupItem);

  RSErrorPNGImg := LoadPNGImageFromResource('rs_error');
  RSWarningPNGImg := LoadPNGImageFromResource('rs_warning');
end;

//----------------------------------------------------------------------------------------------------------------------

destructor TSQLErrorGrid.Destroy;

begin
  FOptionProvider.RemoveListener(Self);

  RSErrorPNGImg.Free;
  RSWarningPNGImg.Free;

  inherited;
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.AddError(Msg: WideString; MsgType: TScriptMessageType; MsgNr: Integer; Line: Integer;
  CharPos: Integer);

var
  Node: PVirtualNode;
  Nodedata: PScriptError;

begin
  Node := AddChild(nil);
  NodeData := GetNodeData(Node);
  NodeData.Msg := Msg;
  NodeData.MsgType := MsgType;
  NodeData.MsgNr := MsgNr;
  if MsgNr <> 0 then
    NodeData.MsgNrAsString := IntToStr(MsgNr)
  else
    NodeData.MsgNrAsString := '';
  NodeData.Line := Line;
  NodeData.LineAsString := IntToStr(Line);
  NodeData.CharPos := CharPos;
  InvalidateNode(Node);
  Multiline[Node] := True;
  NodeHeight[Node] := ComputeNodeHeight(Canvas, Node, 2, Msg);

  FocusedNode := Node;

  if RootNodeCount = 1 then
   ClientHeight := 1; // Client height bug. The first setting seems not to be honoured.
  ClientHeight := Min(RootNode.TotalHeight - DefaultNodeHeight, 200);
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.Clear;

begin
  Height := 0;
  
  inherited;
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.ClearMessagesItemClick(Sender: TObject);

begin
  Clear;
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.CopyToClipboardItemClick(Sender: TObject);

var
  NodeData: PScriptError;
  Run: PVirtualNode;
  Text: WideString;
  
begin
  Text := '';
  Run := GetFirst;
  while Assigned(Run) do
  begin
    NodeData := GetNodeData(Run);
    Text := WideFormat('%sScript line: %s'#9'%s'#13#10, [Text, NodeData.LineAsString, NodeData.Msg]);
    Run := GetNext(Run);
  end;
  TntClipboard.AsWideText := Text;
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.CopyToClipboardSelectedItemClick(Sender: TObject);

var
  NodeData: PScriptError;
  Run: PVirtualNode;
  Text: WideString;
  
begin
  Text := '';
  Run := GetFirst;
  while Assigned(Run) do
  begin
    if Selected[Run] then
    begin
      NodeData := GetNodeData(Run);
      Text := WideFormat('%sScript line: %s'#9'%s'#13#10, [Text, NodeData.LineAsString, NodeData.Msg]);
    end;
    Run := GetNext(Run);
  end;
  TntClipboard.AsWideText := Text;
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.DblClick;

var
  NodeData: PScriptError;

begin
  if (Assigned(OnDblClick)) then
    OnDblClick(Self)
  else
  begin
    NodeData := nil;
    if Assigned(FocusedNode) then
      NodeData := GetNodeData(FocusedNode);

    if Assigned(NodeData) then
      DoSelectLine(NodeData.Line - 1, NodeData.CharPos - 1);
  end;
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.DoAfterCellPaint(Canvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; CellRect: TRect);

var
  NodeData: PScriptError;

begin
  if Column = 0 then
  begin
    NodeData := GetNodeData(Node);

    case NodeData.MsgType of
      smtError:
        RSErrorPNGImg.Draw(Canvas, Rect(4, 2, RSErrorPNGImg.Width + 1, RSErrorPNGImg.Height + 1));
      smtWarning:
        RSWarningPNGImg.Draw(Canvas, Rect(4, 2, RSWarningPNGImg.Width + 1, RSWarningPNGImg.Height + 1));
    end;
  end;

  if Assigned(OnAfterCellPaint) then
    OnAfterCellPaint(Self, Canvas, Node, Column, CellRect);
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.DoFreeNode(Node: PVirtualNode);

var
  NodeData: PScriptError;

begin
  inherited;

  NodeData := GetNodeData(Node);
  Finalize(NodeData^);
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.DoGetText(Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType;
  var CellText: WideString);

var
  NodeData: PScriptError;

begin
  if (Assigned(OnGetText)) then
    OnGetText(Self, Node, Column, TextType, CellText)
  else
  begin
    NodeData := GetNodeData(Node);
    case Column of
      0:
        CellText := '';
      1:
        CellText := NodeData.LineAsString;
      2:
        CellText := NodeData.Msg;
      3:
        CellText := NodeData.MsgNrAsString;
    end;
  end;
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.DoSelectLine(Line, Position: Integer);

begin
  if Assigned(FOnSelectLine) then
    FOnSelectLine(Self, Line, Position);
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.OptionChanged;

begin
  UpdateFontsAndHeights;
end;

//----------------------------------------------------------------------------------------------------------------------

procedure TSQLErrorGrid.UpdateFontsAndHeights;

begin
  Font.Name := FOptionProvider.OptionAsString['CodeFontName'];
  Font.Height := FOptionProvider.OptionAsInteger['CodeFontHeight'];
  Header.Font.Name := FOptionProvider.OptionAsString['DataFontName'];
  Header.Font.Size := -12;

  Canvas.Font := Font;
end;

//----------------------------------------------------------------------------------------------------------------------

end.