forked from fmd-project-team/FMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVirtualPropertyGridEditLink.pas
239 lines (210 loc) · 5.61 KB
/
VirtualPropertyGridEditLink.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
unit VirtualPropertyGridEditLink;
{$mode objfpc}{$H+}
interface
uses
Classes, Windows, SysUtils, Messages, typinfo, VirtualPropertyGrid, VirtualTrees,
Controls, StdCtrls, LMessages, LCLType, Spin, EditBtn, Forms, StringsPropEditDlg;
type
TEditLinkKind = (ekString, ekInteger, ekEnum);
{ TVirtualPropertyGridEditLink }
TVirtualPropertyGridEditLink = class(TInterfacedObject, IVTEditLink)
private
FCleanEnumName: Boolean;
FColumn: TColumnIndex;
FEdit: TWinControl;
FKind: TEditLinkKind;
FNode: PVirtualNode;
FPObjectProp: PObjectPropInfo;
FTree: TVirtualStringTree;
protected
procedure EditButtonStringClick(Sender: TObject);
procedure EditKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
procedure EditExit(Sender: TObject);
public
destructor Destroy; override;
function PrepareEdit(Tree: TBaseVirtualTree; Node: PVirtualNode;
Column: TColumnIndex): Boolean; stdcall;
function BeginEdit: Boolean; stdcall;
function CancelEdit: Boolean; stdcall;
function EndEdit: Boolean; stdcall;
function GetBounds: TRect; stdcall;
procedure SetBounds(R: TRect); stdcall;
procedure ProcessMessage(var Message: TLMessage); stdcall;
published
property CleanEnumName: Boolean read FCleanEnumName write FCleanEnumName default False;
end;
{ TEditButtonHelper }
TEditButtonHelper = class helper for TEditButton
public
function GetEdit: TEbEdit;
end;
function TryCleanEnumName(const EnumName: String; Clean: Boolean = True): String;
implementation
function TryCleanEnumName(const EnumName: String; Clean: Boolean): String;
var
i: Integer;
begin
if not Clean then
Exit(EnumName);
Result := '';
for i := 1 to Length(EnumName) do
begin
if EnumName[i] in ['A'..'Z'] then
begin
Result := Copy(EnumName, i, Length(EnumName) - i + 1);
Break;
end;
end;
if Result = '' then
Result := EnumName;
end;
{ TEditButtonHelper }
function TEditButtonHelper.GetEdit: TEbEdit;
begin
Result := Edit;
end;
{ TVirtualPropertyGridEditLink }
procedure TVirtualPropertyGridEditLink.EditButtonStringClick(Sender: TObject);
begin
with TStringsPropEditorFrm.Create(nil) do
try
with TEditButton(FEdit) do
begin
Memo.Lines.Text := Text;
if ShowModal = mrOk then
Text := Memo.Lines.Text;
end;
finally
Free;
end;
end;
procedure TVirtualPropertyGridEditLink.EditKeyDown(Sender: TObject;
var Key: Word; Shift: TShiftState);
begin
case Key of
VK_ESCAPE:
begin
FTree.CancelEditNode;
Key := 0;
end;
VK_RETURN:
begin
FTree.EndEditNode;
Key := 0;
end;
VK_UP, VK_DOWN:
begin
PostMessage(FTree.Handle, WM_KEYDOWN, Key, 0);
Key := 0;
end;
end;
end;
procedure TVirtualPropertyGridEditLink.EditExit(Sender: TObject);
begin
FTree.EndEditNode;
end;
destructor TVirtualPropertyGridEditLink.Destroy;
begin
Application.ReleaseComponent(FEdit);
inherited Destroy;
end;
function TVirtualPropertyGridEditLink.PrepareEdit(Tree: TBaseVirtualTree;
Node: PVirtualNode; Column: TColumnIndex): Boolean; stdcall;
var
i: Integer;
begin
Result := True;
FTree := Tree as TVirtualStringTree;
FNode := Node;
FColumn := Column;
FPObjectProp := FTree.GetNodeData(Node);
FEdit.Free;
FEdit := nil;
with FPObjectProp^ do
case PropInfo^.PropType^.Kind of
tkSString, tkLString, tkAString, tkWString:
begin
FKind := ekString;
FEdit := TEditButton.Create(nil);
with TEditButton(FEdit) do
begin
Text := GetStrProp(Obj, PropInfo);
ButtonCaption := '...';
OnButtonClick := @EditButtonStringClick;
GetEdit.OnKeyDown := @EditKeyDown;
end;
end;
tkInteger, tkInt64:
begin
FKind := ekInteger;
FEdit := TSpinEdit.Create(nil);
with TSpinEdit(FEdit) do
begin
MinValue := 0;
MaxValue := MaxInt;
Value := GetOrdProp(Obj, PropInfo);
end;
end;
tkEnumeration:
begin
FKind := ekEnum;
FEdit := TComboBox.Create(nil);
with TComboBox(FEdit) do
begin
for i := 0 to GetEnumNameCount(PropInfo^.PropType) - 1 do
Items.Add(TryCleanEnumName(GetEnumName(PropInfo^.PropType, i), FCleanEnumName));
ItemIndex := GetOrdProp(Obj, PropInfo);
end;
end;
else
Result := False;
end;
if Result then
with FEdit do
begin
Visible := False;
Parent := FTree;
OnKeyDown := @EditKeyDown;
end;
end;
function TVirtualPropertyGridEditLink.BeginEdit: Boolean; stdcall;
begin
Result := True;
FEdit.Visible := True;
FEdit.SetFocus;
end;
function TVirtualPropertyGridEditLink.CancelEdit: Boolean; stdcall;
begin
Result := True;
FEdit.Hide;
end;
function TVirtualPropertyGridEditLink.EndEdit: Boolean; stdcall;
begin
Result := True;
with FPObjectProp^ do
case FKind of
ekString: SetStrProp(Obj, PropInfo, TEditButton(FEdit).Text);
ekInteger: SetOrdProp(Obj, PropInfo, TSpinEdit(FEdit).Value);
ekEnum: SetOrdProp(Obj, PropInfo, TComboBox(FEdit).ItemIndex);
end;
FTree.InvalidateNode(FNode);
FEdit.Hide;
FTree.SetFocus;
end;
function TVirtualPropertyGridEditLink.GetBounds: TRect; stdcall;
begin
Result := FEdit.BoundsRect;
end;
procedure TVirtualPropertyGridEditLink.SetBounds(R: TRect); stdcall;
var
i: Integer;
begin
FTree.Header.Columns.GetColumnBounds(FColumn, i, R.Right);
FEdit.BoundsRect := R;
end;
procedure TVirtualPropertyGridEditLink.ProcessMessage(var Message: TLMessage);
stdcall;
begin
FEdit.WindowProc(Message);
end;
end.