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
|
unit AdvancedEdit;
// 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, Messages, SysUtils, Variants, Classes, Graphics, Controls, TntForms,
Dialogs, ExtCtrls, StdCtrls, Themes, PNGImage, AuxFuncs, TntStdCtrls;
type
TAdvancedEditFrame = class(TTntFrame)
SearchEd: TTntEdit;
constructor Create(Owner: TComponent); override;
destructor Destroy; override;
procedure SearchEdChange(Sender: TObject);
procedure FrameMouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
procedure FrameResize(Sender: TObject);
private
FNHCanvas: TCanvas;
SearchPNGImg: TPNGObject;
SearchWithPopupPNGImg: TPNGObject;
ClearSearchPNGImg: TPNGObject;
XPStyleEnabled: Boolean;
procedure CMEnabledChanged(var Message: TMessage); message CM_ENABLEDCHANGED;
procedure WMPaint(var Message: TWMPaint); message WM_PAINT;
protected
procedure PaintWindow(DC: HDC); override;
procedure DoPaint;
end;
//----------------------------------------------------------------------------------------------------------------------
implementation
{$R *.dfm}
uses
PNGTools;
//----------------------------------------------------------------------------------------------------------------------
constructor TAdvancedEditFrame.Create(Owner: TComponent);
begin
inherited Create(Owner);
SearchPNGImg := LoadPNGImageFromResource('magnify_glass', nil);
SearchWithPopupPNGImg := LoadPNGImageFromResource('magnify_glass_with_popup', nil);
ClearSearchPNGImg := LoadPNGImageFromResource('clear_search', nil);
FNHCanvas := TControlCanvas.Create;
TControlCanvas(FNHCanvas).Control := Self;
XPStyleEnabled := getXPStyleEnabled;
end;
//----------------------------------------------------------------------------------------------------------------------
destructor TAdvancedEditFrame.Destroy;
begin
FNHCanvas.Free;
SearchPNGImg.Free;
SearchWithPopupPNGImg.Free;
ClearSearchPNGImg.Free;
inherited Destroy;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TAdvancedEditFrame.WMPaint(var Message: TWMPaint);
begin
PaintHandler(Message);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TAdvancedEditFrame.PaintWindow(DC: HDC);
begin
FNHCanvas.Handle := DC;
try
DoPaint;
finally
FNHCanvas.Handle := 0;
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TAdvancedEditFrame.DoPaint;
begin
if (XPStyleEnabled) then
begin
ThemeServices.DrawElement(FNHCanvas.Handle, ThemeServices.GetElementDetails(teEditTextNormal), Rect(0, 0, Width, Height));
end
else
begin
FNHCanvas.Brush.Color := clWhite;
FNHCanvas.Pen.Color := $00B99D7F;
FNHCanvas.Rectangle(0, 0, Width, Height);
end;
if (PopupMenu <> nil) then
begin
if SearchEd.Enabled then
SearchWithPopupPNGImg.Draw(FNHCanvas, Rect(3, 2, 3 + 19, 2 + 18))
else
SearchWithPopupPNGImg.DrawFaded(FNHCanvas, Rect(3, 2, 3 + 19, 2 + 18), 200)
end
else
begin
if SearchEd.Enabled then
SearchPNGImg.Draw(FNHCanvas, Rect(3, 2, 3 + 19, 2 + 18))
else
SearchPNGImg.DrawFaded(FNHCanvas, Rect(3, 2, 3 + 19, 2 + 18));
end;
if (SearchEd.Text <> '') then
ClearSearchPNGImg.Draw(FNHCanvas, Rect(Width - 16 - 4, 3, Width - 4, 3 + 16));
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TAdvancedEditFrame.SearchEdChange(Sender: TObject);
begin
Invalidate;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TAdvancedEditFrame.FrameMouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
begin
if SearchEd.Enabled and (ssLeft in Shift) then
begin
if (PopupMenu <> nil) then
if (X < 19 + 3) then
PopupMenu.Popup(Mouse.CursorPos.X, Mouse.CursorPos.Y);
if (X > Width - 16 - 4) then
begin
SearchEd.Text := '';
SearchEdChange(self);
end;
end;
if SearchEd.CanFocus then
SearchEd.SetFocus;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TAdvancedEditFrame.FrameResize(Sender: TObject);
begin
SearchEd.Top := 5;
SearchEd.Left := 26;
SearchEd.Width := Width - 186 + 138;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TAdvancedEditFrame.CMEnabledChanged(var Message: TMessage);
begin
inherited;
SearchEd.Enabled := Enabled;
Invalidate;
end;
//----------------------------------------------------------------------------------------------------------------------
end.
|