compon.inc 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1998 by the Free Pascal development team
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. {****************************************************************************}
  12. {* TComponent *}
  13. {****************************************************************************}
  14. Function TComponent.GetComponent(AIndex: Integer): TComponent;
  15. begin
  16. end;
  17. Function TComponent.GetComponentCount: Integer;
  18. begin
  19. end;
  20. Function TComponent.GetComponentIndex: Integer;
  21. begin
  22. end;
  23. Procedure TComponent.Insert(AComponent: TComponent);
  24. begin
  25. end;
  26. Procedure TComponent.ReadLeft(Reader: TReader);
  27. begin
  28. end;
  29. Procedure TComponent.ReadTop(Reader: TReader);
  30. begin
  31. end;
  32. Procedure TComponent.Remove(AComponent: TComponent);
  33. begin
  34. end;
  35. Procedure TComponent.SetComponentIndex(Value: Integer);
  36. begin
  37. end;
  38. Procedure TComponent.SetReference(Enable: Boolean);
  39. begin
  40. end;
  41. Procedure TComponent.WriteLeft(Writer: TWriter);
  42. begin
  43. end;
  44. Procedure TComponent.WriteTop(Writer: TWriter);
  45. begin
  46. end;
  47. Procedure TComponent.ChangeName(const NewName: TComponentName);
  48. begin
  49. end;
  50. Procedure TComponent.DefineProperties(Filer: TFiler);
  51. begin
  52. end;
  53. Procedure TComponent.GetChildren(Proc: TGetChildProc; Root: TComponent);
  54. begin
  55. end;
  56. Function TComponent.GetChildOwner: TComponent;
  57. begin
  58. end;
  59. Function TComponent.GetChildParent: TComponent;
  60. begin
  61. end;
  62. Function TComponent.GetNamePath: string;
  63. begin
  64. end;
  65. Function TComponent.GetOwner: TPersistent;
  66. begin
  67. end;
  68. Procedure TComponent.Loaded;
  69. begin
  70. end;
  71. Procedure TComponent.Notification(AComponent: TComponent;
  72. Operation: TOperation);
  73. begin
  74. end;
  75. Procedure TComponent.ReadState(Reader: TReader);
  76. begin
  77. end;
  78. Procedure TComponent.SetAncestor(Value: Boolean);
  79. begin
  80. end;
  81. Procedure TComponent.SetDesigning(Value: Boolean);
  82. begin
  83. end;
  84. Procedure TComponent.SetName(const NewName: TComponentName);
  85. begin
  86. end;
  87. Procedure TComponent.SetChildOrder(Child: TComponent; Order: Integer);
  88. begin
  89. end;
  90. Procedure TComponent.SetParentComponent(Value: TComponent);
  91. begin
  92. end;
  93. Procedure TComponent.Updating;
  94. begin
  95. end;
  96. Procedure TComponent.Updated;
  97. begin
  98. end;
  99. class Procedure TComponent.UpdateRegistry(Register: Boolean; const ClassID, ProgID: string);
  100. begin
  101. end;
  102. Procedure TComponent.ValidateRename(AComponent: TComponent;
  103. const CurName, NewName: string);
  104. begin
  105. end;
  106. Procedure TComponent.ValidateContainer(AComponent: TComponent);
  107. begin
  108. end;
  109. Procedure TComponent.ValidateInsert(AComponent: TComponent);
  110. begin
  111. end;
  112. Procedure TComponent.WriteState(Writer: TWriter);
  113. begin
  114. end;
  115. Constructor TComponent.Create(AOwner: TComponent);
  116. begin
  117. end;
  118. Destructor TComponent.Destroy;
  119. begin
  120. end;
  121. Procedure TComponent.DestroyComponents;
  122. begin
  123. end;
  124. Procedure TComponent.Destroying;
  125. begin
  126. end;
  127. Function TComponent.FindComponent(const AName: string): TComponent;
  128. begin
  129. end;
  130. Procedure TComponent.FreeNotification(AComponent: TComponent);
  131. begin
  132. end;
  133. Procedure TComponent.FreeOnRelease;
  134. begin
  135. end;
  136. Function TComponent.GetParentComponent: TComponent;
  137. begin
  138. end;
  139. Function TComponent.HasParent: Boolean;
  140. begin
  141. end;
  142. Procedure TComponent.InsertComponent(AComponent: TComponent);
  143. begin
  144. end;
  145. Procedure TComponent.RemoveComponent(AComponent: TComponent);
  146. begin
  147. end;
  148. Function TComponent.SafeCallException(ExceptObject: TObject;
  149. ExceptAddr: Pointer): Integer;
  150. begin
  151. end;
  152. {
  153. $Log$
  154. Revision 1.1 1998-05-04 14:30:11 michael
  155. * Split file according to Class; implemented dummys for all methods, so unit compiles.
  156. }