File: dbimage.inc

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (350 lines) | stat: -rw-r--r-- 8,728 bytes parent folder | download | duplicates (6)
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
{%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.
 *****************************************************************************
}

{ TDBImage }

function TDBImage.GetDataField: string;
begin
  Result:=FDataLink.FieldName;
end;

function TDBImage.GetDataSource: TDataSource;
begin
  Result:=FDataLink.DataSource;
end;

function TDBImage.GetField: TField;
begin
  Result:=FDataLink.Field;
end;
procedure TDBImage.Change;
begin
  //need to override this to make sure the datalink gets notified
  //its been modified, then when post etc, it will call
  //updatedata to update the field data with current value
  FDataLink.Modified;
end;

function TDBImage.GetReadOnly: Boolean;
begin
  Result:=FDataLink.ReadOnly;
end;

procedure TDBImage.SetAutoDisplay(const AValue: Boolean);
begin
  if FAutoDisplay=AValue then exit;
  FAutoDisplay:=AValue;
  if FAutoDisplay then LoadPicture;
end;

procedure TDBImage.SetDataField(const AValue: string);
begin
  FDataLink.FieldName:=AValue;
end;

procedure TDBImage.SetDataSource(const AValue: TDataSource);
begin
  if not (FDataLink.DataSourceFixed and (csLoading in ComponentState)) then
    ChangeDataSource(Self,FDataLink,AValue);
end;

procedure TDBImage.SetReadOnly(const AValue: Boolean);
begin
  FDataLink.ReadOnly:=AValue;
end;

procedure TDBImage.CMGetDataLink(var Message: TLMessage);
begin
  Message.Result := PtrUInt(FDataLink);
end;

procedure TDBImage.Notification(AComponent: TComponent; Operation: TOperation);
begin
  inherited Notification(AComponent, Operation);
  if (Operation=opRemove) then begin
    if (FDataLink<>nil) and (AComponent=DataSource) then
      DataSource:=nil;
  end;
end;

procedure TDBImage.DataChange(Sender: TObject);
begin
  FUpdatingRecord := True;
  Picture.Graphic:=nil;
  FPictureLoaded:=False;
  if AutoDisplay then LoadPicture;
  FUpdatingRecord := False;
end;

procedure TDBImage.UpdateData(Sender: TObject);

var s        : Tstream;
    fe       : String;
    i        : Integer;

begin
  if not assigned(Picture.Graphic) or (Picture.Graphic.Empty) then
    begin
    FDataLink.Field.Clear;
    end
  else
    begin
    fe := Picture.Graphic.GetFileExtensions;
    s := FDataLink.DataSet.CreateBlobStream(FDataLink.Field,bmwrite);
    try
      i := pos(';',fe);
      if i > 0 then fe := copy(fe,1,i-1);
      if assigned(FOnDBImageWrite)  then
        OnDBImageWrite(self,s,fe) //Call extermal method to save type of image
      else
        begin
        if FWriteHeader then
          s.WriteAnsiString(fe);  //otherwise write file extension to stream
        end;
      Picture.Graphic.SaveToStream(s);
    finally
      s.Free;
    end;
    end;
end;

procedure TDBImage.PictureChanged(Sender: TObject);
begin
  Inherited;
  if not FUpdatingRecord then
    Change;
end;

procedure TDBImage.LoadPicture;

var s        : Tstream;
    GraphExt : string;
    gc       : TGraphicClass;
    AGraphic : TGraphic;
    CurPos   : Int64;
    
    function LoadImageFromStream: boolean;
    begin
      result := (s<>nil);
      if result then
        try
          curPos := s.Position;
          Picture.LoadFromStream(s);
        except
          s.Position := Curpos;
          result := false;
        end;
    end;

    procedure GraphExtToClass;
    begin
      gc := GetGraphicClassForFileExtension(GraphExt);
    end;

    procedure ReadImageHeader;
    begin
      CurPos := s.Position;
      try
        GraphExt := s.ReadAnsiString;
      except
        s.Position := CurPos;
        GraphExt := '';
      end;
      GraphExtToClass;
      if gc=nil then
        s.Position := CurPos;
    end;

begin
  if not FPictureLoaded then
  begin
    FUpdatingRecord := True;
    if not assigned(FDatalink.Field) then Picture.Assign(FDatalink.Field)
    else
    if FDatalink.field.IsBlob then
      begin
      if FDatalink.field is TBlobField then
        begin

        if FDatalink.Field.IsNull then
          begin
          Picture.Clear;
          exit;
          end;

        s := FDataLink.DataSet.CreateBlobStream(FDataLink.Field,bmRead);
        if (S=Nil) or (s.Size = 0) then
          begin
          if s<>nil then
            s.Free;
          Picture.Clear;
          exit;
          end;

        try
          AGraphic := nil;
          GraphExt := '';
          if assigned(FOnDBImageRead) then
          begin
            // External method to identify graphic type
            // returns file extension for graphic type (e.g. jpg)
            // If user implements OnDBImageRead, the control assumes that
            // the programmer either:
            //
            // -- Returns a valid identifier that matches a graphic class and
            //    the remainder of stream contains the image data. An instance of
            //    of graphic class will be used to load the image data.
            // or
            // -- Returns an invalid identifier that doesn't match a graphic class
            //    and the remainder of stream contains the image data. The control
            //    will try to load the image trying to identify the format
            //    by it's content
            //
            // In particular, returning an invalid identifier while the stream has
            // a image header will not work.
            OnDBImageRead(self,s,GraphExt);
            GraphExtToClass;
          end
          else
            ReadImageHeader;

          if gc<>nil then
          begin
            AGraphic := gc.Create;
            AGraphic.LoadFromStream(s);
            Picture.Assign(AGraphic);
            FPictureLoaded:=true;
          end
          else
          begin
            if LoadImageFromStream then
              FPictureLoaded:=true
            else
              Picture.Clear;
          end;

        finally
          AGraphic.Free;
          s.Free;
        end {try}

        end
      else
        Picture.Assign(FDataLink.FField);
        
      end;
    FUpdatingRecord := False;
    end;
end;

procedure TDBImage.CopyToClipboard;
begin
  if Assigned(Picture.Graphic) then
    DoCopyToClipboard;
end;

procedure TDBImage.CutToClipboard;
begin
  if Assigned(Picture.Graphic) then
  begin
    if FDataLink.Edit then
    begin
      DoCopyToClipboard;
      Picture.Clear;
    end;
  end;
end;

procedure TDBImage.PasteFromClipboard;
begin
  if Clipboard.HasPictureFormat then
    if FDataLink.Edit then
      // TODO: add some option to convert image to an user preferred format?
      Clipboard.AssignTo(Picture);
end;

class procedure TDBImage.WSRegisterClass;
const
  Done: Boolean = False;
begin
  if Done then
    Exit;
  inherited WSRegisterClass;
  RegisterPropertyToSkip(TDBImage, 'Picture', 'Removed in 0.9.29. DB control should not save/load their data from stream.', '');
  Done := True;
end;

procedure TDBImage.DoCopyToClipboard;
  procedure AddGraphicFormat(fmt: TClipboardFormat; aClass: TGraphicClass);
  var
    st: TMemoryStream;
    gp: TGraphic;
  begin
    if not (Picture.Graphic is aClass) then
    begin
      st := TMemoryStream.Create;
      gp := aClass.Create;
      try
        gp.assign(Picture.Graphic);
        gp.SaveToStream(st);
        st.Position := 0;
        Clipboard.Open;
        Clipboard.AddFormat(fmt, st);
        Clipboard.Close;
      finally
        st.free;
        gp.free;
      end;
    end;
  end;
begin
  Clipboard.Assign(Picture);
  {$IFDEF MSWINDOWS}
  AddGraphicFormat(CF_BITMAP, TBitmap);
  {$ELSE}
  // TODO: check: under linux most apps seems to understand png clipboard format
  //              under osx it will probably be tiff
  AddGraphicFormat(ClipboardRegisterFormat('image/png'), TPortableNetworkGraphic);
  {$ENDIF}
end;

constructor TDBImage.Create(TheOwner: TComponent);
begin
  inherited Create(TheOwner);
  ControlStyle:=ControlStyle+[csReplicatable];
  FAutoDisplay:=True;
  FQuickDraw:=true;
  FWriteHeader:=True;
  FDataLink:=TFieldDataLink.Create;
  FDataLink.Control:=Self;
  FDataLink.OnDataChange:=@DataChange;
  FDataLink.OnUpdateData:=@UpdateData;
  FUpdatingRecord := False;
end;

destructor TDBImage.Destroy;
begin
  FDataLink.Destroy;
  inherited Destroy;
end;

function TDBImage.ExecuteAction(AAction: TBasicAction): Boolean;
begin
  Result := inherited ExecuteAction(AAction) or
            (FDataLink <> nil) and FDataLink.ExecuteAction(AAction);
end;

function TDBImage.UpdateAction(AAction: TBasicAction): Boolean;
begin
  Result := inherited UpdateAction(AAction) or
            (FDataLink <> nil) and FDataLink.UpdateAction(AAction);
end;

// included by dbctrls.pp