lazarus/lcl/widgetset
mattias 292fc283b9 lcl: less hints
git-svn-id: trunk@62602 -
2020-01-31 14:10:00 +00:00
..
README.txt
wsbuttons.pp
wscalendar.pp
wschecklst.pp
wscomctrls.pp bug #36281. Merged revision(s) 62516-62547 from branches/listviewsortindicator: 2020-01-17 01:49:23 +00:00
wscontrols.pp LCL, win32: add TWSWinControlClass.GetDoubleBuffered 2018-02-16 11:15:36 +00:00
wsdesigner.pp
wsdialogs.pp
wsextctrls.pp
wsextdlgs.pp
wsfactory.pas LCL: High-DPI ImageList: LCL runtime and win32 2018-01-10 12:46:42 +00:00
wsforms.pp LCL: DoubleBuffered & ParentDoubleBuffered support 2018-06-03 19:45:05 +00:00
wsgrids.pp lcl: less hints 2020-01-31 14:10:00 +00:00
wsimglist.pp LCL: High-DPI ImageList: LCL runtime and win32 2018-01-10 12:46:42 +00:00
wslazdeviceapis.pas
wslclclasses.pp LCL: adding IsWSComponentInheritsFrom(), so we're able to check in runtime, if a particular WS class has been registered (implemented) 2019-04-14 04:32:06 +00:00
wsmenus.pp Move debug- & other non-GUI stuff from LCLProc to LazUtilities and LazLogger in package LazUtils. 2018-06-13 13:59:07 +00:00
wspairsplitter.pp LCL/PairSplitter: Fix Position parameter and panel widths being out of sync under some circumstances (https://forum.lazarus.freepascal.org/index.php/topic,46726.msg333773.html#msg333773). 2019-09-21 20:48:04 +00:00
wsproc.pp
wsreferences.pp
wsspin.pp
wsstdctrls.pp LCL: publish DoubleBuffered & ParentDoubleBuffered 2018-06-03 20:36:08 +00:00
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