diff --git a/examples/designnonlcl/mywidgetdesigner.pas b/examples/designnonlcl/mywidgetdesigner.pas index ff7ede265b..6a5cfae13b 100644 --- a/examples/designnonlcl/mywidgetdesigner.pas +++ b/examples/designnonlcl/mywidgetdesigner.pas @@ -36,7 +36,7 @@ interface uses LCLProc, LCLType, Classes, SysUtils, FormEditingIntf, LCLIntf, Graphics, - MyWidgetSet; + ProjectIntf, MyWidgetSet; type @@ -66,6 +66,17 @@ type property MyForm: TMyForm read FMyForm; end; + { TFileDescPascalUnitWithMyForm } + + TFileDescPascalUnitWithMyForm = class(TFileDescPascalUnitWithResource) + public + constructor Create; override; + function GetInterfaceUsesSection: string; override; + function GetLocalizedName: string; override; + function GetLocalizedDescription: string; override; + end; + + procedure Register; implementation @@ -74,6 +85,8 @@ procedure Register; begin FormEditingHook.RegisterDesignerMediator(TMyWidgetMediator); RegisterComponents('MyWidgets',[TMyButton,TMyGroupBox]); + RegisterProjectFileDescriptor(TFileDescPascalUnitWithMyForm.Create, + FileDescGroupName); end; { TMyWidgetMediator } @@ -216,5 +229,30 @@ begin and (TMyWidget(Parent).AcceptChildsAtDesignTime); end; +{ TFileDescPascalUnitWithMyForm } + +constructor TFileDescPascalUnitWithMyForm.Create; +begin + inherited Create; + Name:='MyForm'; + ResourceClass:=TMyForm; + UseCreateFormStatements:=true; +end; + +function TFileDescPascalUnitWithMyForm.GetInterfaceUsesSection: string; +begin + Result:=Result+'Classes, SysUtils, MyWidgetSet'; +end; + +function TFileDescPascalUnitWithMyForm.GetLocalizedName: string; +begin + Result:='MyForm'; +end; + +function TFileDescPascalUnitWithMyForm.GetLocalizedDescription: string; +begin + Result:='Create a new MyForm from example package NotLCLDesigner'; +end; + end.