123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- {
- $Id$
- This file is part of the Free Component Library (FCL)
- Copyright (c) 1998 by the Free Pascal development team
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- 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.
- **********************************************************************}
- {****************************************************************************}
- {* TComponent *}
- {****************************************************************************}
- Function TComponent.GetComponent(AIndex: Integer): TComponent;
- begin
- end;
- Function TComponent.GetComponentCount: Integer;
- begin
- end;
- Function TComponent.GetComponentIndex: Integer;
- begin
- end;
- Procedure TComponent.Insert(AComponent: TComponent);
- begin
- end;
- Procedure TComponent.ReadLeft(Reader: TReader);
- begin
- end;
- Procedure TComponent.ReadTop(Reader: TReader);
- begin
- end;
- Procedure TComponent.Remove(AComponent: TComponent);
- begin
- end;
- Procedure TComponent.SetComponentIndex(Value: Integer);
- begin
- end;
- Procedure TComponent.SetReference(Enable: Boolean);
- begin
- end;
- Procedure TComponent.WriteLeft(Writer: TWriter);
- begin
- end;
- Procedure TComponent.WriteTop(Writer: TWriter);
- begin
- end;
- Procedure TComponent.ChangeName(const NewName: TComponentName);
- begin
- end;
- Procedure TComponent.DefineProperties(Filer: TFiler);
- begin
- end;
- Procedure TComponent.GetChildren(Proc: TGetChildProc; Root: TComponent);
- begin
- end;
- Function TComponent.GetChildOwner: TComponent;
- begin
- end;
- Function TComponent.GetChildParent: TComponent;
- begin
- end;
- Function TComponent.GetNamePath: string;
- begin
- end;
- Function TComponent.GetOwner: TPersistent;
- begin
- end;
- Procedure TComponent.Loaded;
- begin
- end;
- Procedure TComponent.Notification(AComponent: TComponent;
- Operation: TOperation);
- begin
- end;
- Procedure TComponent.ReadState(Reader: TReader);
- begin
- end;
- Procedure TComponent.SetAncestor(Value: Boolean);
- begin
- end;
- Procedure TComponent.SetDesigning(Value: Boolean);
- begin
- end;
- Procedure TComponent.SetName(const NewName: TComponentName);
- begin
- end;
- Procedure TComponent.SetChildOrder(Child: TComponent; Order: Integer);
- begin
- end;
- Procedure TComponent.SetParentComponent(Value: TComponent);
- begin
- end;
- Procedure TComponent.Updating;
- begin
- end;
- Procedure TComponent.Updated;
- begin
- end;
- class Procedure TComponent.UpdateRegistry(Register: Boolean; const ClassID, ProgID: string);
- begin
- end;
- Procedure TComponent.ValidateRename(AComponent: TComponent;
- const CurName, NewName: string);
- begin
- end;
- Procedure TComponent.ValidateContainer(AComponent: TComponent);
- begin
- end;
- Procedure TComponent.ValidateInsert(AComponent: TComponent);
- begin
- end;
- Procedure TComponent.WriteState(Writer: TWriter);
- begin
- end;
- Constructor TComponent.Create(AOwner: TComponent);
- begin
- end;
- Destructor TComponent.Destroy;
- begin
- end;
- Procedure TComponent.DestroyComponents;
- begin
- end;
- Procedure TComponent.Destroying;
- begin
- end;
- Function TComponent.FindComponent(const AName: string): TComponent;
- begin
- end;
- Procedure TComponent.FreeNotification(AComponent: TComponent);
- begin
- end;
- Procedure TComponent.FreeOnRelease;
- begin
- end;
- Function TComponent.GetParentComponent: TComponent;
- begin
- end;
- Function TComponent.HasParent: Boolean;
- begin
- end;
- Procedure TComponent.InsertComponent(AComponent: TComponent);
- begin
- end;
- Procedure TComponent.RemoveComponent(AComponent: TComponent);
- begin
- end;
- Function TComponent.SafeCallException(ExceptObject: TObject;
- ExceptAddr: Pointer): Integer;
- begin
- end;
- {
- $Log$
- Revision 1.1 1998-05-04 14:30:11 michael
- * Split file according to Class; implemented dummys for all methods, so unit compiles.
- }
|