Imagine you have TSomeThing and TSomeThingElse classes, but they do not have a common ancestor class. As-is, you would not be able to pass them to the same function, or call a common method on them. By adding a shared interface to both classes, you can do both, eg:
type
ISomething = interface
['{EFE0308B-A85D-4DF3-889C-40FBC8FE84D0}']
public
procedure DoSomething;
end;
TSomeThing = class(TSomeVCLObject, ISomething)
...
procedure DoSomething;
end;
TSomeThingElse = class(TSomeOtherVCLObject, ISomething)
...
procedure DoSomething;
end;
procedure TSomeThing.DoSomething;
begin
...
end;
procedure TSomeThingElse.DoSomething;
begin
...
end;
procedure DoSomething(Intf: ISomething);
begin
Intf.DoSomething;
end;
procedure Test;
var
O1: TSomeThing;
O2: TSomeThingElse;
Intf: ISomething;
begin
O1 := TSomeThing.Create(nil);
O2 := TSomeThingElse.Create(nil);
...
if Supports(O1, ISomething, Intf) then
begin
Intf.DoSomething;
DoSomething(Intf);
end;
if Supports(O2, ISomething, Intf) then
begin
Intf.DoSomething;
DoSomething(Intf);
end;
...
O1.Free;
O2.Free;
end;
TCheckBoxandTRadioButtonand they have the first common ancestorTButtonControl(don't know if also in Delphi 7) and IMHO there's no other way than to modify the VCL source for achieve this (D7 has no class helpers or interception classing). OP is just trying to join two classes where each one went its own way. – TLama Jan 10 '12 at 22:00