lazarus/examples/designnonlcl
2024-07-29 12:26:08 +02:00
..
project Revised default project icon (less memory usage). Text in logos as graphic, no need for a special font. All by Roland Hahn. 2024-07-29 12:26:08 +02:00
designnonlcl.ex-meta Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
mywidgetdesigner.pas Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
mywidgetset.pas Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
notlcldesigner.lpk Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
notlcldesigner.pas Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
README.txt Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00

This package is an example how to to use the lazarus IDE form designer to
design non LCL widgets like web pages, UML diagrams or other widgetsets like
fpgui.

Installation:
Install the package examples/designnonlcl/notlcldesigner.lpk and restart the IDE.
Then open the example project examples/designnonlcl/project/NonLCL1.lpi.
Open the form of unit1.pas and you will see some non LCL controls in the
designer as red rectangles.

Overview:
The unit mywidgetset.pas contains the class TMyWidget which is a TComponent
and has Left, Top, Width, Height and Parent to define a simple widgetset.
This widgetset is only for demonstration and does not contain any paint
routines, so you can not do anything useful with this widgetset.

The unit mywidgetdesigner.pas contains the designer mediator TMyWidgetMediator
which is registered in the Register procedure:
  FormEditingHook.RegisterDesignerMediator(TMyWidgetMediator);
When the package is installed in the IDE, the mediator allows one to design
TMyWidget components visually. Without the mediator the IDE would show them as
icons, like TOpenDialog or TDataSource.