123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583 |
- {
- This file is part of the Free Component Library (FCL)
- Copyright (c) 1999-2000 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
- If not assigned(FComponents) then
- Result:=Nil
- else
- Result:=TComponent(FComponents.Items[Aindex]);
- end;
- Function TComponent.GetComponentCount: Integer;
- begin
- If not assigned(FComponents) then
- result:=0
- else
- Result:=FComponents.Count;
- end;
- Function TComponent.GetComponentIndex: Integer;
- begin
- If Assigned(FOwner) and Assigned(FOwner.FComponents) then
- Result:=FOWner.FComponents.IndexOf(Self)
- else
- Result:=-1;
- end;
- Procedure TComponent.Insert(AComponent: TComponent);
- begin
- If not assigned(FComponents) then
- FComponents:=TList.Create;
- FComponents.Add(AComponent);
- AComponent.FOwner:=Self;
- end;
- Procedure TComponent.ReadLeft(Reader: TReader);
- begin
- LongRec(FDesignInfo).Lo:=Reader.ReadInteger;
- end;
- Procedure TComponent.ReadTop(Reader: TReader);
- begin
- LongRec(FDesignInfo).Hi:=Reader.ReadInteger;
- end;
- Procedure TComponent.Remove(AComponent: TComponent);
- begin
- AComponent.FOwner:=Nil;
- If assigned(FCOmponents) then
- begin
- FComponents.Remove(AComponent);
- IF FComponents.Count=0 then
- begin
- FComponents.Free;
- FComponents:=Nil;
- end;
- end;
- end;
- Procedure TComponent.RemoveNotification(AComponent: TComponent);
- begin
- if FFreeNotifies<>nil then
- begin
- FFreeNotifies.Remove(AComponent);
- if FFreeNotifies.Count=0 then
- begin
- FFreeNotifies.Free;
- FFreeNotifies:=nil;
- Exclude(FComponentState,csFreeNotification);
- end;
- end;
- end;
- Procedure TComponent.SetComponentIndex(Value: Integer);
- Var Temp,Count : longint;
- begin
- If Not assigned(Fowner) then exit;
- Temp:=getcomponentindex;
- If temp<0 then exit;
- If value<0 then value:=0;
- Count:=Fowner.FComponents.Count;
- If Value>=Count then value:=count-1;
- If Value<>Temp then
- begin
- FOWner.FComponents.Delete(Temp);
- FOwner.FComponents.Insert(Value,Self);
- end;
- end;
- Procedure TComponent.SetReference(Enable: Boolean);
- var
- Field: ^TComponent;
- begin
- if Assigned(Owner) then
- begin
- Field := Owner.FieldAddress(Name);
- if Assigned(Field) then
- if Enable then
- Field^ := Self
- else
- Field^ := nil;
- end;
- end;
- Procedure TComponent.WriteLeft(Writer: TWriter);
- begin
- Writer.WriteInteger(LongRec(FDesignInfo).Lo);
- end;
- Procedure TComponent.WriteTop(Writer: TWriter);
- begin
- Writer.WriteInteger(LongRec(FDesignInfo).Hi);
- end;
- Procedure TComponent.ChangeName(const NewName: TComponentName);
- begin
- FName:=NewName;
- end;
- Procedure TComponent.DefineProperties(Filer: TFiler);
- Var Ancestor : TComponent;
- Temp : longint;
- begin
- Temp:=0;
- Ancestor:=TComponent(Filer.Ancestor);
- If Assigned(Ancestor) then Temp:=Ancestor.FDesignInfo;
- Filer.Defineproperty('left',@readleft,@writeleft,
- (longrec(FDesignInfo).Lo<>Longrec(temp).Lo));
- Filer.Defineproperty('top',@readtop,@writetop,
- (longrec(FDesignInfo).Hi<>Longrec(temp).Hi));
- end;
- Procedure TComponent.GetChildren(Proc: TGetChildProc; Root: TComponent);
- begin
- // Does nothing.
- end;
- Function TComponent.GetChildOwner: TComponent;
- begin
- Result:=Nil;
- end;
- Function TComponent.GetChildParent: TComponent;
- begin
- Result:=Self;
- end;
- Function TComponent.GetNamePath: string;
- begin
- Result:=FName;
- end;
- Function TComponent.GetOwner: TPersistent;
- begin
- Result:=FOwner;
- end;
- Procedure TComponent.Loaded;
- begin
- Exclude(FComponentState,csLoading);
- end;
- Procedure TComponent.Notification(AComponent: TComponent;
- Operation: TOperation);
- Var Runner : Longint;
- begin
- If (Operation=opRemove) and Assigned(FFreeNotifies) then
- begin
- FFreeNotifies.Remove(AComponent);
- If FFreeNotifies.Count=0 then
- begin
- FFreeNotifies.Free;
- FFreenotifies:=Nil;
- end;
- end;
- If assigned(FComponents) then
- For Runner:=0 To FComponents.Count-1 do
- TComponent(FComponents.Items[Runner]).Notification(AComponent,Operation);
- end;
- procedure TComponent.PaletteCreated;
- begin
- end;
- Procedure TComponent.ReadState(Reader: TReader);
- begin
- Reader.ReadData(Self);
- end;
- Procedure TComponent.SetAncestor(Value: Boolean);
- Var Runner : Longint;
- begin
- If Value then
- Include(FComponentState,csAncestor)
- else
- Include(FCOmponentState,csAncestor);
- if Assigned(FComponents) then
- For Runner:=0 To FComponents.Count-1 do
- TComponent(FComponents.Items[Runner]).SetAncestor(Value);
- end;
- Procedure TComponent.SetDesigning(Value: Boolean);
- Var Runner : Longint;
- begin
- If Value then
- Include(FComponentSTate,csDesigning)
- else
- Exclude(FComponentSTate,csDesigning);
- if Assigned(FComponents) then
- For Runner:=0 To FComponents.Count - 1 do
- TComponent(FComponents.items[Runner]).SetDesigning(Value);
- end;
- Procedure TComponent.SetName(const NewName: TComponentName);
- begin
- If FName=NewName then exit;
- If (NewName<>'') and not IsValidIdent(NewName) then
- Raise EComponentError.CreateFmt(SInvalidName,[NewName]);
- If Assigned(FOwner) Then
- FOwner.ValidateRename(Self,FName,NewName)
- else
- ValidateRename(Nil,FName,NewName);
- SetReference(False);
- ChangeName(NewName);
- Setreference(True);
- end;
- Procedure TComponent.SetChildOrder(Child: TComponent; Order: Integer);
- begin
- // does nothing
- end;
- Procedure TComponent.SetParentComponent(Value: TComponent);
- begin
- // Does nothing
- end;
- Procedure TComponent.Updating;
- begin
- Include (FComponentState,csUpdating);
- end;
- Procedure TComponent.Updated;
- begin
- Exclude(FComponentState,csUpdating);
- end;
- class Procedure TComponent.UpdateRegistry(Register: Boolean; const ClassID, ProgID: string);
- begin
- // For compatibility only.
- end;
- Procedure TComponent.ValidateRename(AComponent: TComponent;
- const CurName, NewName: string);
- begin
- //!! This contradicts the Delphi manual.
- If (AComponent<>Nil) and (CompareText(CurName,NewName)<>0) and (AComponent.Owner = Self) and
- (FindComponent(NewName)<>Nil) then
- raise EComponentError.Createfmt(SDuplicateName,[newname]);
- If (csDesigning in FComponentState) and (FOwner<>Nil) then
- FOwner.ValidateRename(AComponent,Curname,Newname);
- end;
- Procedure TComponent.ValidateContainer(AComponent: TComponent);
- begin
- end;
- Procedure TComponent.ValidateInsert(AComponent: TComponent);
- begin
- // Does nothing.
- end;
- Procedure TComponent.WriteState(Writer: TWriter);
- begin
- Writer.WriteComponentData(Self);
- end;
- Constructor TComponent.Create(AOwner: TComponent);
- begin
- FComponentStyle:=[csInheritable];
- If Assigned(AOwner) then AOwner.InsertComponent(Self);
- end;
- Destructor TComponent.Destroy;
- Var
- I : Integer;
- C : TComponent;
- begin
- Destroying;
- If Assigned(FFreeNotifies) then
- begin
- I:=FFreeNotifies.Count-1;
- While (I>=0) do
- begin
- C:=TComponent(FFreeNotifies.Items[I]);
- // Delete, so one component is not notified twice, if it is owned.
- FFreeNotifies.Delete(I);
- C.Notification (self,opRemove);
- If (FFreeNotifies=Nil) then
- I:=0
- else if (I>FFreeNotifies.Count) then
- I:=FFreeNotifies.Count;
- dec(i);
- end;
- FreeAndNil(FFreeNotifies);
- end;
- DestroyComponents;
- If FOwner<>Nil Then FOwner.RemoveComponent(Self);
- inherited destroy;
- end;
- Procedure TComponent.BeforeDestruction;
- begin
- if not(csDestroying in FComponentstate) then
- Destroying;
- end;
- Procedure TComponent.DestroyComponents;
- Var acomponent: TComponent;
- begin
- While assigned(FComponents) do
- begin
- aComponent:=TComponent(FComponents.Last);
- Remove(aComponent);
- Acomponent.Destroy;
- end;
- end;
- Procedure TComponent.Destroying;
- Var Runner : longint;
- begin
- If csDestroying in FComponentstate Then Exit;
- include (FComponentState,csDestroying);
- If Assigned(FComponents) then
- for Runner:=0 to FComponents.Count-1 do
- TComponent(FComponents.Items[Runner]).Destroying;
- end;
- function TComponent.ExecuteAction(Action: TBasicAction): Boolean;
- begin
- if Action.HandlesTarget(Self) then
- begin
- Action.ExecuteTarget(Self);
- Result := True;
- end
- else
- Result := False;
- end;
- Function TComponent.FindComponent(const AName: string): TComponent;
- Var I : longint;
- begin
- Result:=Nil;
- If (AName='') or Not assigned(FComponents) then exit;
- For i:=0 to FComponents.Count-1 do
- if (CompareText(TComponent(FComponents[I]).Name,AName)=0) then
- begin
- Result:=TComponent(FComponents.Items[I]);
- exit;
- end;
- end;
- Procedure TComponent.FreeNotification(AComponent: TComponent);
- begin
- If (Owner<>Nil) and (AComponent=Owner) then exit;
- if csDestroying in ComponentState then
- AComponent.Notification(Self,opRemove)
- else
- begin
- If not (Assigned(FFreeNotifies)) then
- FFreeNotifies:=TList.Create;
- If FFreeNotifies.IndexOf(AComponent)=-1 then
- begin
- FFreeNotifies.Add(AComponent);
- AComponent.FreeNotification (self);
- end;
- end;
- end;
- procedure TComponent.RemoveFreeNotification(AComponent: TComponent);
- begin
- RemoveNotification(AComponent);
- AComponent.RemoveNotification (self);
- end;
- Procedure TComponent.FreeOnRelease;
- begin
- // Delphi compatibility only at the moment.
- end;
- Function TComponent.GetParentComponent: TComponent;
- begin
- Result:=Nil;
- end;
- Function TComponent.HasParent: Boolean;
- begin
- Result:=False;
- end;
- Procedure TComponent.InsertComponent(AComponent: TComponent);
- begin
- AComponent.ValidateContainer(Self);
- ValidateRename(AComponent,'',AComponent.FName);
- Insert(AComponent);
- AComponent.SetReference(True);
- If csDesigning in FComponentState then
- AComponent.SetDesigning(true);
- Notification(AComponent,opInsert);
- end;
- Procedure TComponent.RemoveComponent(AComponent: TComponent);
- begin
- Notification(AComponent,opRemove);
- AComponent.SetReference(False);
- Remove(AComponent);
- Acomponent.Setdesigning(False);
- ValidateRename(AComponent,AComponent.FName,'');
- end;
- Function TComponent.SafeCallException(ExceptObject: TObject;
- ExceptAddr: Pointer): Integer;
- begin
- SafeCallException:=0;
- end;
- procedure TComponent.SetSubComponent(ASubComponent: Boolean);
- begin
- if ASubComponent then
- Include(FComponentStyle, csSubComponent)
- else
- Exclude(FComponentStyle, csSubComponent);
- end;
- function TComponent.UpdateAction(Action: TBasicAction): Boolean;
- begin
- if Action.HandlesTarget(Self) then
- begin
- Action.UpdateTarget(Self);
- Result := True;
- end
- else
- Result := False;
- end;
- function TComponent.QueryInterface(const IID: TGUID; out Obj): HResult;stdcall;
- begin
- if GetInterface(IID, Obj) then
- result:=S_OK
- else
- result:=E_NOINTERFACE;
- end;
- function TComponent._AddRef: Integer;stdcall;
- begin
- result:=-1;
- end;
- function TComponent._Release: Integer;stdcall;
- begin
- result:=-1;
- end;
|