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
|
{%MainUnit ../dbctrls.pp}
{
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
{ TDBMemo }
function TDBMemo.GetDataField: string;
begin
Result:=FDataLink.FieldName;
end;
function TDBMemo.GetDataSource: TDataSource;
begin
Result:=FDataLink.DataSource;
end;
function TDBMemo.GetField: TField;
begin
Result:=FDataLink.Field;
end;
function TDBMemo.GetReadOnly: Boolean;
begin
Result:=FDataLink.ReadOnly;
end;
procedure TDBMemo.SetAutoDisplay(const AValue: Boolean);
begin
if FAutoDisplay=AValue then exit;
FAutoDisplay:=AValue;
if FAutoDisplay then LoadMemo;
end;
procedure TDBMemo.SetDataField(const AValue: string);
begin
FDataLink.FieldName:=AValue;
end;
procedure TDBMemo.SetDataSource(const AValue: TDataSource);
begin
if not (FDataLink.DataSourceFixed and (csLoading in ComponentState)) then
ChangeDataSource(Self,FDataLink,AValue);
end;
procedure TDBMemo.CMGetDataLink(var Message: TLMessage);
begin
Message.Result := PtrUInt(FDataLink);
end;
procedure TDBMemo.SetReadOnly(AValue: Boolean);
begin
inherited;
FDataLink.ReadOnly:=AValue;
end;
procedure TDBMemo.DataChange(Sender: TObject);
var
DataLinkField: TField;
begin
DataLinkField := FDataLink.Field;
if DataLinkField<>nil then begin
if DataLinkField.IsBlob then begin
if FAutoDisplay or (FDataLink.Editing and FDBMemoLoaded) then begin
FDBMemoLoaded:=False;
LoadMemo;
end else begin
Text:=Format('(%s)', [DataLinkField.DisplayLabel]);
FDBMemoLoaded:=False;
end;
end else begin
if FDBMemoFocused and FDataLink.CanModify then
Text:=DataLinkField.Text
else
Text:=DataLinkField.DisplayText;
FDBMemoLoaded:=True;
end
end else begin
if csDesigning in ComponentState then
Text:=Name
else
Text:='';
FDBMemoLoaded:=False;
end;
end;
procedure TDBMemo.Notification(AComponent: TComponent; Operation: TOperation);
begin
inherited Notification(AComponent, Operation);
if (Operation=opRemove) and (AComponent=DataSource) then
DataSource:=nil;
end;
procedure TDBMemo.UpdateData(Sender: TObject);
begin
if not FDBMemoLoaded then exit;
if not FDataLink.CanModify then exit;
// issue #33498: possibility to change field text in OnSetText
if Assigned(FDatalink.Field.OnSetText) then
FDataLink.Field.Text := Text
else
FDataLink.Field.AsString := Text;
end;
constructor TDBMemo.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
ControlStyle:=ControlStyle+[csReplicatable];
FAutoDisplay:=True;
FDataLink:=TFieldDataLink.Create;
FDataLink.Control:=Self;
FDataLink.OnDataChange:=@DataChange;
FDataLink.OnUpdateData:=@UpdateData;
end;
procedure TDBMemo.EditingDone;
begin
if FDataLink.CanModify and FDatalink.Editing then begin
FDataLink.UpdateRecord;
inherited EditingDone;
end else
FDatalink.Reset;
end;
procedure TDBMemo.Change;
begin
FDatalink.Modified;
inherited Change;
end;
procedure TDBMemo.KeyDown(var Key: Word; Shift: TShiftState);
begin
inherited KeyDown(Key, Shift);
case key of
VK_ESCAPE:
begin
//cancel out of editing by reset on esc
FDataLink.Reset;
SelectAll;
Key := VK_UNKNOWN;
end;
VK_DELETE, VK_BACK:
begin
if not FieldIsEditable(FDatalink.Field) or not FDataLink.Edit then
Key := VK_UNKNOWN;
end;
{$IFDEF DARWIN}
// the code for macOS here has been carefully considered
// and must be specially handled here.
// on macOS, because of the special key processing mechanism
// and the various possibilities combined with IME,
// we need to enter the editing state in KeyDown().
// if we enter the edit state in KeyPress(), it is too late
// and will cause the Memo content to change, leading to the issue #40985
VK_0..VK_9,
VK_A..VK_Z,
VK_SPACE,
VK_NUMPAD0..VK_DIVIDE,
VK_OEM_1..VK_OEM_3,
VK_OEM_4..VK_OEM_8:
begin
if (FDataLink.Field <> nil) and (not FDatalink.Edit) then
Key:= 0;
end;
{$ENDIF}
end;
end;
procedure TDBMemo.KeyPress(var Key: Char);
function CheckValidChar: boolean;
begin
result := FDBMemoLoaded and FieldCanAcceptKey(FDatalink.Field, Key);
if Result then
FDatalink.Edit
else
Key := #0;
end;
function CheckEditingKey: boolean;
begin
result := FDbMemoLoaded;
if Result then
FDatalink.Edit
else
Key := #0;
end;
begin
inherited KeyPress(Key);
if not FieldCanAcceptKey(FDataLink.Field, Key) or not FDatalink.Edit then
Key := #0;
case key of
^X, ^V, ^Z, ^I, ^J, ^H, #32..#255: // alphabetic characters
CheckValidChar;
^M: // enter key
if not CheckEditingKey then
LoadMemo;
#27: // escape
if FDbMemoLoaded then
FDatalink.Reset
else
Key:=#0;
// Verifyes if we are in edit mode for special keys may change the text
// Ctrl+I = Tab
// Ctrl+J = LineFeed
// Ctrl+H = Backspace
// Don't do anything for special keys that don't change the text
// Like Ctrl+C for example
end;
end;
procedure TDBMemo.WndProc(var Message: TLMessage);
begin
case Message.Msg of
LM_CLEAR,
LM_CUT,
LM_PASTE:
if FDataLink.CanModify then
begin
//LCL changes the Text before LM_PASTE is called and not after like Delphi. Issue 20330
//When Edit is called the Text property is reset to the previous value
//Add a workaround while bug is not fixed
FDataLink.OnDataChange := nil;
FDatalink.Edit;
FDataLink.Modified;
FDataLink.OnDataChange := @DataChange;
inherited WndProc(Message);
end
else
Message.Result := 1; // prevent calling default window proc
end;
inherited WndProc(Message);
end;
class procedure TDBMemo.WSRegisterClass;
const
Done: Boolean = False;
begin
if Done then
Exit;
inherited WSRegisterClass;
RegisterPropertyToSkip(TDBMemo, 'Lines', 'Removed in 0.9.29. DB control should not save/load their data from stream.', '');
Done := True;
end;
destructor TDBMemo.Destroy;
begin
FDataLink.Destroy;
inherited Destroy;
end;
procedure TDBMemo.LoadMemo;
var
newText: String;
begin
if not FDBMemoLoaded and (FDataLink.Field<>nil)
and FDataLink.Field.IsBlob then begin
try
// issue #33598: Possibility to change field text in OnGetText
if Assigned(FDataLink.Field.OnGetText) then
newText := FDataLink.Field.Text
else
newText := FDataLink.Field.AsString;
if Lines.Text <> newText then
Lines.Text:= newText;
FDBMemoLoaded:=True;
except
on E:EInvalidOperation do
Lines.Text:='('+E.Message+')';
end;
end;
end;
function TDBMemo.ExecuteAction(AAction: TBasicAction): Boolean;
begin
Result := inherited ExecuteAction(AAction) or
(FDataLink <> nil) and FDataLink.ExecuteAction(AAction);
end;
function TDBMemo.UpdateAction(AAction: TBasicAction): Boolean;
begin
Result := inherited UpdateAction(AAction) or
(FDataLink <> nil) and FDataLink.UpdateAction(AAction);
end;
// included by dbctrls.pp
|