File: PNGTools.pas

package info (click to toggle)
mysql-query-browser 1.1.6-1sarge0
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 36,320 kB
  • ctags: 24,680
  • sloc: pascal: 203,479; xml: 136,561; ansic: 47,502; cpp: 28,926; sh: 12,433; objc: 4,823; java: 1,849; php: 1,485; python: 1,225; sql: 1,128; makefile: 872
file content (274 lines) | stat: -rw-r--r-- 7,681 bytes parent folder | download
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
unit PNGTools;

// 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, PNGImage, TntExtCtrls, TntClasses, Graphics, ExtCtrls;

function LoadPNGImageFromResource(Resourcename: WideString; Image: TTntImage = nil;
  FreePNGImageAfterAssignToImage: Boolean = False): TPNGObject;
procedure DrawPNGImageFromResource(Resourcename: WideString; Image: TTntImage);
function LoadPNGImageFromFile(BasePath: WideString; Filename: WideString; Image: TTntImage = nil): TPNGObject;
function LoadStringFromResource(Resourcename: WideString; ResourceType: WideString): WideString;

function PaintEditButton(Canvas: TCanvas; Caption: WideString; PNGImg: TPNGObject; var xpos: Integer;
  Enabled: Boolean = True; Active: Boolean = True; DrawIconOnly: Boolean = False; DisabledPNGImg: TPNGObject = nil;
  ActivePNGImg: TPNGObject = nil): Integer;
function LoadPNGImageFromPChar(PImageData: PChar; DataLength: Integer; Image: TImage = nil;
  FreeAfterAssign: Boolean = False): TPNGObject;

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

implementation

uses
  Classes, SysUtils, TntSysUtils, Types;
  
//----------------------------------------------------------------------------------------------------------------------

function LoadPNGImageFromResource(Resourcename: WideString; Image: TTntImage;
  FreePNGImageAfterAssignToImage: Boolean): TPNGObject;

var
  tmpStream: TTntResourceStream;
  PNGImage: TPNGObject;

begin
  Result := nil;

  tmpStream := TTntResourceStream.Create(HInstance, Resourcename, 'PNG');
  try
    PNGImage := TPNGObject.Create;
    try
      PNGImage.LoadFromStream(tmpStream);

      if Assigned(Image) then
      begin
        Image.Picture.Graphic := PNGImage;
        if Image.AutoSize then
        begin
          Image.Width := PNGImage.Width;
          Image.Height := PNGImage.Height;
        end;
      end;

      if FreePNGImageAfterAssignToImage then
        PNGImage.Free
      else
        Result := PNGImage;
    except
      PNGImage.Free;
    end;
  finally
    tmpStream.Free;
  end;
end;

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

procedure DrawPNGImageFromResource(Resourcename: WideString; Image: TTntImage);

var
  tmpStream: TTntResourceStream;
  PNGImage: TPNGObject;

begin
  tmpStream:=TTntResourceStream.Create(HInstance, Resourcename, 'PNG');
  try
    PNGImage:=TPNGObject.Create;
    try
      PNGImage.LoadFromStream(tmpStream);

      Image.Width:=PNGImage.Width;
      Image.Height:=PNGImage.Height;
      Image.Picture.Bitmap.Width:=PNGImage.Width;
      Image.Picture.Bitmap.Height:=PNGImage.Height;

      PNGImage.Draw(Image.Picture.Bitmap.Canvas, Rect(0, 0, PNGImage.Width, PNGImage.Height));
    finally
      PNGImage.Free;
    end;
  finally
    tmpStream.Free;
  end;
end;

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

function LoadPNGImageFromFile(BasePath: WideString; Filename: WideString; Image: TTntImage): TPNGObject;

var
  PNGImage: TPNGObject;
  FullFileName: WideString;

begin
  FullFileName := WideIncludeTrailingBackslash(BasePath) + 'images\' + Filename;

  PNGImage := nil;

  if FileExists(FullFileName) then
  begin
    PNGImage := TPNGObject.Create;
    PNGImage.LoadFromFile(FullFileName);

    if Assigned(Image) then
      Image.Picture.Graphic := PNGImage;                                                 
  end;

  Result := PNGImage;
end;

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

function LoadStringFromResource(Resourcename: WideString; ResourceType: WideString): WideString;

var
  tmpStream: TTntResourceStream;
  StringList: TTntStringList;

begin
  Result := '';

  tmpStream := TTntResourceStream.Create(HInstance, Resourcename, PWideChar(ResourceType));
  try
    StringList := TTntStringList.Create;
    try
      StringList.LoadFromStream(tmpStream);

      Result := StringList.Text;
    except
      StringList.Free;
    end;
  finally
    tmpStream.Free;
  end;
end;

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

function PaintEditButton(Canvas: TCanvas; Caption: WideString; PNGImg: TPNGObject; var xpos: Integer; Enabled: Boolean;
  Active: Boolean; DrawIconOnly: Boolean; DisabledPNGImg: TPNGObject; ActivePNGImg: TPNGObject): Integer;

var
  S: WideString;
  Size: TSize;
  R: TRect;

begin
  with Canvas do
  begin
    Dec(xpos, 7);

    if not DrawIconOnly then
    begin
      S := Caption;

      GetTextExtentPoint32W(Handle, PWideChar(S), Length(S), Size);
      Dec(xpos, Size.cx);

      if Active then
        Font.Color := $0023AC23
      else
        if Enabled then
        Font.Color := clBlack
      else
        Font.Color := $00CCCCCC;

      R := Rect(xpos, 4, xpos + Size.cx, 4 + 18);
      DrawTextW(Handle, PWideChar(S), Length(S), R, DT_LEFT);

      if Assigned(PNGImg) then
        xpos:=xpos-21
      else
        xpos:=xpos-4;
    end
    else
      xpos:=xpos-16;

    if(Active)and(ActivePNGImg<>nil)then
      ActivePNGImg.Draw(Canvas,
        Rect(xpos+1, 2, xpos+1+PNGImg.Width, 2+PNGImg.Height))
    else if(Enabled)and(PNGImg<>nil)then
      PNGImg.Draw(Canvas,
        Rect(xpos+1, 2, xpos+1+PNGImg.Width, 2+PNGImg.Height))
    else
    begin
      if(DisabledPNGImg=nil)and(PNGImg<>nil)then
        PNGImg.DrawFaded(Canvas,
          Rect(xpos+1, 2, xpos+1+PNGImg.Width, 2+PNGImg.Height),
          50)
      else if(DisabledPNGImg<>nil)then
        DisabledPNGImg.Draw(Canvas,
          Rect(xpos+1, 2, xpos+1+PNGImg.Width, 2+PNGImg.Height));
    end;

    xpos:=xpos-5;
    MoveTo(xpos, 0);
    LineTo(xpos, 20);
  end;

  Result:=xpos;
end;

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

function LoadPNGImageFromPChar(PImageData: PChar; DataLength: Integer; Image: TImage = nil;
  FreeAfterAssign: Boolean = False): TPNGObject;

var
  ImageData: string;
  MemStream: TMemoryStream;

begin
  Result := nil;

  if (DataLength>0) then
  begin
    MemStream:=TMemoryStream.Create;
    try
      SetString(ImageData, PImageData, DataLength);

      MemStream.WriteBuffer(PChar(ImageData)^, DataLength);
      MemStream.Position:=0;

      Result:=TPNGObject.Create;
      try
        Result.LoadFromStream(MemStream);

        if (Assigned(Image)) then
        begin
          Image.Picture.Assign(Result);
          Image.Invalidate
        end;
      finally
        if (FreeAfterAssign) then
        begin
          Result.Free;
          Result := nil;
        end;
      end;
    finally
      MemStream.Free;
    end;
  end;
end;

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

end.