?? rxcombos.pas
字號:
{*******************************************************}
{ }
{ Delphi VCL Extensions (RX) }
{ }
{ Copyright (c) 1995, 1996 AO ROSNO }
{ Copyright (c) 1997, 1998 Master-Bank }
{ }
{*******************************************************}
unit RxCombos;
{.$DEFINE GXE}
{ Activate this define to use RxCombos in the GXExplorer Open Source project }
{$I RX.INC}
{$W-,T-}
interface
uses {$IFDEF WIN32} Windows, {$ELSE} WinTypes, WinProcs, {$ENDIF}
Messages, Classes, Controls, Graphics, StdCtrls, Forms, Menus;
type
{ TOwnerDrawComboBox }
TOwnerDrawComboStyle = csDropDown..csDropDownList;
TOwnerDrawComboBox = class(TCustomComboBox)
private
FStyle: TOwnerDrawComboStyle;
FItemHeightChanging: Boolean;
procedure SetComboStyle(Value: TOwnerDrawComboStyle);
procedure CMFontChanged(var Message: TMessage); message CM_FONTCHANGED;
{$IFDEF RX_D3}
procedure CMRecreateWnd(var Message: TMessage); message CM_RECREATEWND;
{$ENDIF}
protected
procedure CreateParams(var Params: TCreateParams); override;
procedure CreateWnd; override;
procedure ResetItemHeight;
function MinItemHeight: Integer; virtual;
property Style: TOwnerDrawComboStyle read FStyle write SetComboStyle
default csDropDownList;
public
constructor Create(AOwner: TComponent); override;
end;
{ TColorComboBox }
{$IFDEF RX_D3}
TColorComboOption = (coIncludeDefault, coIncludeNone);
TColorComboOptions = set of TColorComboOption;
{$ENDIF}
TColorComboBox = class(TOwnerDrawComboBox)
private
FColorValue: TColor;
FDisplayNames: Boolean;
FColorNames: TStrings;
{$IFDEF RX_D3}
FOptions: TColorComboOptions;
{$ENDIF}
FOnChange: TNotifyEvent;
function GetColorValue: TColor;
procedure SetColorValue(NewValue: TColor);
procedure SetDisplayNames(Value: Boolean);
procedure SetColorNames(Value: TStrings);
{$IFDEF RX_D3}
procedure SetOptions(Value: TColorComboOptions);
{$ENDIF}
procedure ColorNamesChanged(Sender: TObject);
protected
procedure CreateWnd; override;
procedure DrawItem(Index: Integer; Rect: TRect; State: TOwnerDrawState); override;
procedure Click; override;
procedure Change; override;
procedure PopulateList; virtual;
procedure DoChange; dynamic;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property Text;
published
property ColorValue: TColor read GetColorValue write SetColorValue
default clBlack;
property ColorNames: TStrings read FColorNames write SetColorNames;
property DisplayNames: Boolean read FDisplayNames write SetDisplayNames
default True;
{$IFDEF RX_D3}
property Options: TColorComboOptions read FOptions write SetOptions
default [];
{$ENDIF}
property Color;
property Ctl3D;
property DragMode;
property DragCursor;
property Enabled;
property Font;
{$IFDEF RX_D4}
property Anchors;
property BiDiMode;
property Constraints;
property DragKind;
property ParentBiDiMode;
{$ENDIF}
{$IFDEF WIN32}
{$IFNDEF VER90}
property ImeMode;
property ImeName;
{$ENDIF}
{$ENDIF}
property ParentColor;
property ParentCtl3D;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property Style;
property TabOrder;
property TabStop;
property Visible;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnDropDown;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
{$IFDEF WIN32}
property OnStartDrag;
{$ENDIF}
{$IFDEF RX_D5}
property OnContextPopup;
{$ENDIF}
{$IFDEF RX_D4}
property OnEndDock;
property OnStartDock;
{$ENDIF}
end;
{ TFontComboBox }
TFontDevice = (fdScreen, fdPrinter, fdBoth);
TFontListOption = (foAnsiOnly, foTrueTypeOnly, foFixedPitchOnly,
foNoOEMFonts, foOEMFontsOnly, foScalableOnly, foNoSymbolFonts);
TFontListOptions = set of TFontListOption;
TFontComboBox = class(TOwnerDrawComboBox)
private
FTrueTypeBMP: TBitmap;
FDeviceBMP: TBitmap;
FOnChange: TNotifyEvent;
FDevice: TFontDevice;
FUpdate: Boolean;
FUseFonts: Boolean;
FOptions: TFontListOptions;
procedure SetFontName(const NewFontName: TFontName);
function GetFontName: TFontName;
function GetTrueTypeOnly: Boolean;
procedure SetDevice(Value: TFontDevice);
procedure SetOptions(Value: TFontListOptions);
procedure SetTrueTypeOnly(Value: Boolean);
procedure SetUseFonts(Value: Boolean);
procedure Reset;
procedure WMFontChange(var Message: TMessage); message WM_FONTCHANGE;
protected
procedure PopulateList; virtual;
procedure Change; override;
procedure Click; override;
procedure DoChange; dynamic;
procedure CreateWnd; override;
procedure DrawItem(Index: Integer; Rect: TRect; State: TOwnerDrawState); override;
function MinItemHeight: Integer; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property Text;
published
property Device: TFontDevice read FDevice write SetDevice default fdScreen;
property FontName: TFontName read GetFontName write SetFontName;
property Options: TFontListOptions read FOptions write SetOptions default [];
property TrueTypeOnly: Boolean read GetTrueTypeOnly write SetTrueTypeOnly
stored False; { obsolete, use Options instead }
property UseFonts: Boolean read FUseFonts write SetUseFonts default False;
property Color;
property Ctl3D;
property DragMode;
property DragCursor;
property Enabled;
property Font;
{$IFDEF RX_D4}
property Anchors;
property BiDiMode;
property Constraints;
property DragKind;
property ParentBiDiMode;
{$ENDIF}
{$IFDEF WIN32}
{$IFNDEF VER90}
property ImeMode;
property ImeName;
{$ENDIF}
{$ENDIF}
property ParentColor;
property ParentCtl3D;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property Style;
property TabOrder;
property TabStop;
property Visible;
property OnChange: TNotifyEvent read FOnChange write FOnChange;
property OnClick;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnDropDown;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
{$IFDEF WIN32}
property OnStartDrag;
{$ENDIF}
{$IFDEF RX_D5}
property OnContextPopup;
{$ENDIF}
{$IFDEF RX_D4}
property OnEndDock;
property OnStartDock;
{$ENDIF}
end;
{$IFDEF GXE}
procedure Register;
{$ENDIF}
implementation
{$IFDEF WIN32}
{$R *.R32}
{$ELSE}
{$R *.R16}
{$ENDIF}
uses SysUtils, Consts, Printers {$IFNDEF GXE}, VCLUtils {$ENDIF};
{$IFDEF GXE}
procedure Register;
begin
RegisterComponents('Additional', [TFontComboBox, TColorComboBox]);
end;
{$ENDIF GXE}
{$IFNDEF WIN32}
type
DWORD = Longint;
{$ENDIF}
{ Utility routines }
function CreateBitmap(ResName: PChar): TBitmap;
begin
{$IFDEF GXE}
Result := TBitmap.Create;
Result.Handle := LoadBitmap(HInstance, ResName);
{$ELSE}
Result := MakeModuleBitmap(HInstance, ResName);
if Result = nil then ResourceNotFound(ResName);
{$ENDIF GXE}
end;
function GetItemHeight(Font: TFont): Integer;
var
DC: HDC;
SaveFont: HFont;
Metrics: TTextMetric;
begin
DC := GetDC(0);
try
SaveFont := SelectObject(DC, Font.Handle);
GetTextMetrics(DC, Metrics);
SelectObject(DC, SaveFont);
finally
ReleaseDC(0, DC);
end;
Result := Metrics.tmHeight + 1;
end;
{ TOwnerDrawComboBox }
constructor TOwnerDrawComboBox.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
inherited Style := csDropDownList;
FStyle := csDropDownList;
end;
procedure TOwnerDrawComboBox.SetComboStyle(Value: TOwnerDrawComboStyle);
begin
if FStyle <> Value then begin
FStyle := Value;
inherited Style := Value;
end;
end;
function TOwnerDrawComboBox.MinItemHeight: Integer;
begin
Result := GetItemHeight(Font);
if Result < 9 then Result := 9;
end;
procedure TOwnerDrawComboBox.ResetItemHeight;
var
H: Integer;
begin
H := MinItemHeight;
FItemHeightChanging := True;
try
inherited ItemHeight := H;
finally
FItemHeightChanging := False;
end;
if HandleAllocated then SendMessage(Handle, CB_SETITEMHEIGHT, 0, H);
end;
procedure TOwnerDrawComboBox.CreateParams(var Params: TCreateParams);
const
ComboBoxStyles: array[TOwnerDrawComboStyle] of DWORD =
(CBS_DROPDOWN, CBS_SIMPLE, CBS_DROPDOWNLIST);
begin
inherited CreateParams(Params);
with Params do
Style := (Style and not CBS_DROPDOWNLIST) or CBS_OWNERDRAWFIXED or
ComboBoxStyles[FStyle];
end;
procedure TOwnerDrawComboBox.CreateWnd;
begin
inherited CreateWnd;
ResetItemHeight;
end;
procedure TOwnerDrawComboBox.CMFontChanged(var Message: TMessage);
begin
inherited;
ResetItemHeight;
RecreateWnd;
end;
{$IFDEF RX_D3}
procedure TOwnerDrawComboBox.CMRecreateWnd(var Message: TMessage);
begin
if not FItemHeightChanging then
inherited;
end;
{$ENDIF}
{ TColorComboBox }
const
ColorsInList = {$IFDEF RX_D3} 18 {$ELSE} 16 {$ENDIF};
ColorValues: array [0..ColorsInList - 1] of TColor = (
clBlack, clMaroon, clGreen, clOlive, clNavy, clPurple, clTeal, clGray,
clSilver, clRed, clLime, clYellow, clBlue, clFuchsia, clAqua, clWhite
{$IFDEF RX_D3}, clNone, clDefault {$ENDIF});
constructor TColorComboBox.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FColorValue := clBlack; { make default color selected }
FColorNames := TStringList.Create;
TStringList(FColorNames).OnChange := ColorNamesChanged;
FDisplayNames := True;
end;
destructor TColorComboBox.Destroy;
begin
TStringList(FColorNames).OnChange := nil;
FColorNames.Free;
FColorNames := nil;
inherited Destroy;
end;
procedure TColorComboBox.CreateWnd;
begin
inherited CreateWnd;
PopulateList;
SetColorValue(FColorValue);
end;
procedure TColorComboBox.PopulateList;
var
I: Integer;
ColorName: string;
begin
Items.BeginUpdate;
try
Clear;
for I := 0 to Pred(ColorsInList) do begin
{$IFDEF RX_D3}
if ((ColorValues[I] = clDefault) and not (coIncludeDefault in Options)) or
((ColorValues[I] = clNone) and not (coIncludeNone in Options)) then
Continue;
{$ENDIF}
if (I <= Pred(FColorNames.Count)) and (FColorNames[I] <> '') then
ColorName := FColorNames[I]
{$IFDEF RX_D3}
else if ColorValues[I] = clDefault then ColorName := SDefault
{$ENDIF}
else
{ delete two first characters which prefix "cl" educated }
ColorName := Copy(ColorToString(ColorValues[I]), 3, MaxInt);
Items.AddObject(ColorName, TObject(ColorValues[I]));
end;
finally
Items.EndUpdate;
end;
end;
procedure TColorComboBox.ColorNamesChanged(Sender: TObject);
begin
if HandleAllocated then begin
FColorValue := ColorValue;
RecreateWnd;
end;
end;
procedure TColorComboBox.SetColorNames(Value: TStrings);
begin
FColorNames.Assign(Value);
end;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -