Delphi-PRAXiS
Seite 1 von 2  1 2      

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   FreePascal (https://www.delphipraxis.net/74-freepascal/)
-   -   Interface Problem mit TControl (https://www.delphipraxis.net/140454-interface-problem-mit-tcontrol.html)

FAlter 18. Sep 2009 13:31


Interface Problem mit TControl
 
Hi,

ich habe ein Interface:

Delphi-Quellcode:
type
  IChangeable = interface(IInterface)['{BAC01552-BB67-488E-B33C-16CFF2BA2F5B}']
    function isChanged: Boolean;
    procedure Change;
  end;
Und Klassen die z. B. so aussehen:

Delphi-Quellcode:
TEditorFrame = class(TSynEdit, IFileFrame, IChangeable)
Sie sind alle mittelbare Nachfahren von TControl. Nun habe ich eine Variable:

Delphi-Quellcode:
FFrame: TControl;
Da sind irgendwelche TControl-Nachfahren drauf. Ob sie dieses Interface implementieren weiß ich nicht.

Nun habe ich es so versucht zu prüfen:
Delphi-Quellcode:
if (FFrame is IChangeable) then
  if IChangeable(FFrame).isChanged then
    ...
Der Compiler bringt mir aber folgende Felhermeldungen:

Zitat:

umainide.pp(345,14) Error: Class or Object types "TControl" and "IChangeable" are not related
umainide.pp(345,14) Error: Incompatible type for arg no. 1: Got "IChangeable", expected "TClass"
Hint: Found declaration: $fpc_do_is(TClass, TObject):Boolean
umainide.pp(346,8) Error: Class or Object types "TControl" and "IChangeable" are not related
umainide.pp(387) Fatal: There were 3 errors compiling module, stopping
Ich habe per Google zwar was von einem interfache "is" patch gefunden. Aber das war 2005. Inzwischen müsste der Patch doch drin sein?

Oder hab ich nen Denkfehler in meiner Prüfung drin?

Gruß
Felix

shmia 18. Sep 2009 13:41

Re: Interface Problem mit TControl
 
Du musst die Supports()-Funktion benützen:
Delphi-Quellcode:
var
  ic : IChangeable;
begin
  if Supports(FFrame, IChangeable, ic) then
    if ic.isChanged then

himitsu 18. Sep 2009 13:49

Re: Interface Problem mit TControl
 
(FFrame as IChangeable) könnte eventuell auch gehn ... zumindestens muß hier das Interface gesucht werden (ein einfacher TypeCast geht da nicht), da die Interfacevariable sozusagen auf das Interface zeigen muß und nicht auf das Objekt.

JamesTKirk 18. Sep 2009 13:57

Re: Interface Problem mit TControl
 
as löst allerdings eine Exception aus, wenn das Interface nicht implementiert ist. Das könnte eventuell unerwünscht sein.

Gruß,
Sven

FAlter 18. Sep 2009 14:01

Re: Interface Problem mit TControl
 
Hi,

danke. Ich dächte es ginge mit is wie auch bei Klassen. Scheint eine FPC Eigenart zu sein?

As wollte ich nicht nehmen weil ich die Exception möglichst schon vermeiden wollte. Supports klingt gut. :-) Und compiliert auch.

Gruß
Felix

himitsu 18. Sep 2009 14:02

Re: Interface Problem mit TControl
 
Wieso, es ist doch implementiert? :mrgreen: (zumindestens wurde es ja vorher geprüft)
Delphi-Quellcode:
if (FFrame is IChangeable) then
  if (FFrame as IChangeable).isChanged then

Supports wäre praktisch auch nur ein IS und ein AS in Einem :angel:

FAlter 18. Sep 2009 14:08

Re: Interface Problem mit TControl
 
Hi,

nein, der Compiler akzeptiert ja schon das is nicht.

Gruß
Felix

sirius 18. Sep 2009 14:10

Re: Interface Problem mit TControl
 
Ich weis nicht, wie FPC das macht, aber in Delphi gibt es mit der Mischung von Objekten und Interfaces große Probleme (auch wenn man supports anwendet).

himitsu 18. Sep 2009 14:15

Re: Interface Problem mit TControl
 
Zitat:

Zitat von FAlter
nein, der Compiler akzeptiert ja schon das is nicht.

nicht?

aber das AS ging zumindestens :stupid: (in Delphi)

sirius 18. Sep 2009 14:18

Re: Interface Problem mit TControl
 
Zitat:

Zitat von himitsu
Zitat:

Zitat von FAlter
nein, der Compiler akzeptiert ja schon das is nicht.

nicht?

Nö, das ging noch nie. Ist schon komisch, da eigentlich klar ist was gemeint ist (nachgucken ob die IID in der Interfacetabelle des Objektes/der Klasse steht), hätte man das schon längst implementieren können.


Alle Zeitangaben in WEZ +1. Es ist jetzt 09:14 Uhr.
Seite 1 von 2  1 2      

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz