| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {========================================================================}
- {= (c) 1995-98 SwiftSoft Ronald Dittrich =}
- {========================================================================}
- {= All Rights Reserved =}
- {========================================================================}
- {= D 01099 Dresden = Tel.: +0351-8012255 =}
- {= Loewenstr.7a = info@swiftsoft.de =}
- {========================================================================}
- {= Actual versions on http://www.swiftsoft.de/mmtools.html =}
- {========================================================================}
- {= This code is for reference purposes only and may not be copied or =}
- {= distributed in any format electronic or otherwise except one copy =}
- {= for backup purposes. =}
- {= =}
- {= No Delphi Component Kit or Component individually or in a collection=}
- {= subclassed or otherwise from the code in this unit, or associated =}
- {= .pas, .dfm, .dcu, .asm or .obj files may be sold or distributed =}
- {= without express permission from SwiftSoft. =}
- {= =}
- {= For more licence informations please refer to the associated =}
- {= HelpFile. =}
- {========================================================================}
- {= $Date: 22.02.98 - 01:26:39 $ =}
- {========================================================================}
- unit MMFill;
- {$I COMPILER.INC}
- interface
- uses
- Windows,
- SysUtils,
- Classes,
- Controls,
- Graphics,
- Messages,
- Forms,
- MMObj,
- MMPanel,
- MMUtils,
- MMBmpLst,
- MMHook,
- MMObsrv;
- type
- {-- TMMFormFill -----------------------------------------------------------}
- TMMFormFill = class(TMMWndProcComponent)
- public
- constructor Create(aOwner: TComponent); override;
- destructor Destroy; override;
- published
- property BitmapList: TMMBitmapList read FBitmaps write SetBitmaps;
- property BitmapIndex: Integer read FBitmapIndex write SetBitmapIndex default -1;
- end;
- {-- TMMPanelFill ----------------------------------------------------------}
- TMMPanelFill = class(TMMPanel)
- public
- constructor Create(aOwner: TComponent); override;
- destructor Destroy; override;
- published
- property BitmapList: TMMBitmapList read FBitmaps write SetBitmaps;
- property BitmapIndex: Integer read FBitmapIndex write SetBitmapIndex default -1;
- property FillBevel: Boolean read GetFillBevel write SetFillBevel default True;
- end;
- implementation
|