lazarus/lcl/widgetset
2025-02-13 08:49:48 +01:00
..
README.txt
wsbuttons.pp
wscalendar.pp
wschecklst.pp LCL/TShape: clarify deprecation notes added in 144bdc06af 2023-09-12 20:02:15 +02:00
wscomctrls.pp
wscontrols.pp
wsdesigner.pp
wsdialogs.pp
wsextctrls.pp LCL/TShape: Inherit TShape from new TCustomShape class. 2023-09-12 12:03:54 +02:00
wsextdlgs.pp
wsfactory.pas LCL/TShape: Inherit TShape from new TCustomShape class. 2023-09-12 12:03:54 +02:00
wsforms.pp
wsgrids.pp
wsimglist.pp
wslazdeviceapis.pas
wslclclasses.pp replaced url http://wiki.freepascal.org with https 2025-02-13 08:49:48 +01:00
wsmenus.pp LCL/WS: change LazLogger to LazLoggerBase 2023-12-03 15:58:47 +01:00
wspairsplitter.pp
wsproc.pp LCL: Fix deprecation warnings. Issue #40918, patch by Don Siders. 2024-04-26 00:59:26 +03:00
wsreferences.pp
wsshellctrls.pp
wsspin.pp
wsstdctrls.pp
wstoolwin.pp

This directory contains all skeleton widget set component 
classes. These classes will never get instantiated and may 
only contain class functions.
  
=========  
IMPORTANT
=========  

Derivation and inheritance of classes is different then one
might be used to. It will be explained by the following 
examples.

Suppose the following LCL class hierarchy:

 TLCLComponent
     |
  TControl
     |
 TWinControl
 
the corresponding WS skeleton would be

 TWSLCLComponent
      |
  TWSControl
      |
 TWSWinControl


When method X of TWSControl gets implemented by 
widgetset Q the hierarchy looks like

 TWSLCLComponent
      |
  TWSControl.X --> TQWSControl.X
      |
 TWSWinControl


Calling TWSWinControl.X doesn't call TQWSControl.X since
it's parent is TWSControl. This problem is solved by 
modifying the class hierarchy at runtime.
When a component class is registered by RegisterWSComponent,
the class is copied and the vmt entries are adjusted so 
that the hierarchy looks like:


 TWSLCLComponent
      |
  TWSControl.X --> TQWSControl.X
                        |
                   TWSWinControl

In this case, calling TWSWinControl.X will call the overridden 
TQWSControl.X. The only thing which doesn't get handled is the 
inherited statement. Suppose there is also a TQWSWinControl.X 
which implements a few extra steps. In a normal situation one 
would have called "inherited". The call to inherited is
resolved at compile time and would in this example to a call to
TWSControl.X. That is not what we want.
To get around this, call the parent yourself:
  TWSWinControlClass(ClassParent).X