![]() |
AW: Interface erstellen und rückgabe
Zitat:
Delphi-Quellcode:
Ich behandle nachfolgende veränderungen der Weite einfach nicht.
procedure TSkinPanel.SetWidth(const Width: Integer);
begin FWidth := Width; end; Aber mein problem hinsichtlich der möglichen Eingabe lößt das nicht. Eine behandlung sähe dann so aus
Delphi-Quellcode:
procedure TSkinPanel.SetWidth(const Width: Integer);
begin MoveWindow(bla.. bala.. FWidth := Width; end; gruss |
AW: Interface erstellen und rückgabe
Hallo,
wegen der unerwünschten Eingaben. Du könntest ja 2 Interfaces bauen:
Delphi-Quellcode:
Dann könntest du von einem TAdvancedButton Objekt dir intern das IAdvancedButton speichern, extern aber nur ISimpleButton zur Verfügung stellen.
type
ISimpleButton = interface ['{B7281ABB-ED9A-4018-B651-41DFBFAE730A}'] function GetText: WideString; procedure SetText(Value: WideString); property Text: WideString read GetText write SetText; end; IAdvancedButton = interface(ISimpleButton) ['{6C10BCC7-87BE-45B1-9613-44EF840DE4AA}'] function GetWidth: Integer; procedure SetWidth(Value: Integer); function GetSimpleButton: ISimpleButton; property Width: Integer read GetWidth write SetWidth; end;
Delphi-Quellcode:
Grüße
type
TSimpleButton = class(TInterfacedObject, ISimpleButton) private FText: WideString; protected function GetText: WideString; procedure SetText(Value: WideString); public constructor Create; property Text: WideString read GetText write SetText; end; TAdvancedButton = class(TSimpleButton, IAdvancedButton) private FWidth: Integer; protected function GetWidth: Integer; procedure SetWidth(Value: Integer); public constructor Create; function GetSimpleButton: ISimpleButton; property Width: Integer read GetWidth write SetWidth; end; var Form1: TForm1; implementation {$R *.dfm} { TSimpleButton } constructor TSimpleButton.Create; begin inherited Create; end; function TSimpleButton.GetText: WideString; begin Result := FText; end; procedure TSimpleButton.SetText(Value: WideString); begin FText := Value; end; { TAdvancedButton } constructor TAdvancedButton.Create; begin inherited Create; end; function TAdvancedButton.GetSimpleButton: ISimpleButton; begin Result := Self; end; function TAdvancedButton.GetWidth: Integer; begin Result := FWidth; end; procedure TAdvancedButton.SetWidth(Value: Integer); begin FWidth := Value; end; procedure TForm1.Button1Click(Sender: TObject); var AdvancedButton: IAdvancedButton; SimpleButton: ISimpleButton; begin AdvancedButton := TAdvancedButton.Create; AdvancedButton.Width := 126; AdvancedButton.Text := 'lalala'; ShowMessage(IntToStr(AdvancedButton.Width) + ' ' + AdvancedButton.Text); SimpleButton := AdvancedButton.GetSimpleButton; ShowMessage(SimpleButton.Text); SimpleButton.Text := 'blubblub'; ShowMessage(IntToStr(AdvancedButton.Width) + ' ' + AdvancedButton.Text); end; |
AW: Interface erstellen und rückgabe
Danke ;)
Werde mir das gleich mal anschauen ob etwas in der art mein problem beseitigt. EDIT: So wie das aussieht ist das ein mehr an schreibarbeit aber letztendlich ist Width trotzdem public. Muss das wohl innerhalb der function Width selbst händeln. Die Weite ignorieren wenn sie schon gesetzt ist. gruss |
Alle Zeitangaben in WEZ +1. Es ist jetzt 21:48 Uhr. |
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