lazarus/examples/designnonlcl
mattias 5a8b53d7bf IDE: fixed example designnonlcl
git-svn-id: trunk@56283 -
2017-11-04 15:27:50 +00:00
..
project Examples: Remove PathDelim and LaunchingApplication settings from the projects. 2017-05-11 09:04:51 +00:00
mywidgetdesigner.pas IDE: fixed example designnonlcl 2017-11-04 15:27:50 +00:00
mywidgetset.pas general: Updated address of the Free Software Foundation in copyright messages 2017-01-29 21:04:32 +00:00
notlcldesigner.lpk
notlcldesigner.pas examples: less hints 2016-03-01 15:20:46 +00:00
README.txt fixed spelling mistakes, found by lintian 2014-02-05 12:07:46 +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.