delphi accessing protected property of TControl

1.3k Views Asked by At

I'm working on delphi components. I've been trying to access a customized component's designated parent control's onClick event. By designate, users can designate the component's parent control by using object inspector as a property. parent controls can be any of control components on the same form. However, because all parent controls I've made are subclasses of TControl and onClick event of TControl is protected, I can not access parent control's onclick event. practically, a customized component is like a sub-component positioned right next to a parent control, so whenever, a user clicks a customized component, I wanted parent control's click event will occur, if click event exists.

when I run this code, typecasting exception occurs.

 procedure TSubCom.SetParentControl(const Value : TControl);
 var
 parentContLeft : Integer;             //parent control's left + width
 parentContTop : Integer;              //parent control's top
 begin
 FParentControl := Value;
 parentContLeft := FParentControl.Left + FParentControl.Width;
 parentContTop := FParentControl.Top;
 Left := parentContLeft - (Width div 2);
 Top := parentContTop - (Height div 2);
 Repaint;
 end;

//TSubCom's onClick event is linked with its parent control's onClick event
procedure TSubCom.Click;
var
Parent: wrapClass;
begin
inherited;
if(FParentControl <> nil) then
begin
  ShowMessage(FPArentControl.Name);
  Parent := FParentControl as wrapClass;
  ShowMessage('1');
  if Assigned(Parent.OnClick) then
  begin
    Parent.OnClick(Self);
  end;
 //    FParentControl as FParentControl.ClassType;
 //    if(FParentControl.OnClick <> nil) then
 //     FParentControl.OnClick;
end;
end;
1

There are 1 best solutions below

1
On BEST ANSWER

Declare a class for accessing protected members, typecast the Parent to this class, and do not use the OnClick event, instead use Click.

type
  TControlAccess = class(TControl);

procedure TSubCom.Click;
begin
  inherited Click;
  if ParentControl <> nil then
    TControlAccess(ParentControl).Click;
end;