Class LPDrawLayers.TLPDrawLayer
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
(11 intermediate revisions by one user not shown) | |||
Line 5: | Line 5: | ||
</span></b> | </span></b> | ||
− | '''Package:''' [[Package | + | '''Package:''' [[Package Mitov.BasicLab|Mitov.BasicLab]] |
'''Unit:''' [[Unit LPDrawLayers|LPDrawLayers]] | '''Unit:''' [[Unit LPDrawLayers|LPDrawLayers]] | ||
Line 26: | Line 26: | ||
=== C# (.NET): === | === C# (.NET): === | ||
<code> | <code> | ||
− | '''public ref class''' | + | '''public ref class''' DrawLayer : [[Class SLComponentCollection.TSLComponentItem|Mitov.SignalLab.ComponentItem]] |
</code> | </code> | ||
== Summary == | == Summary == |
Latest revision as of 00:29, 26 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: Mitov.BasicLab
Unit: LPDrawLayers
Inherits: TSLComponentItem
Contents |
Syntax
Delphi:
type TLPDrawLayer = class( TSLComponentItem, ILPDrawItem )
C++ Builder:
class TLPDrawLayer : public TSLComponentItem
Visual C++ (MFC):
class CTLPDrawLayer : public CTSLComponentItem
C# (.NET):
public ref class DrawLayer : Mitov.SignalLab.ComponentItem
Summary
Abstract base class for drawing layers.
Description
This abstract filter class provides some basic support for drawing layers. Do not use this class directly.
Properties
Published
- Visible - Specifies if the layer will be visible.
Methods
Public
- function GetHasEnable() : Boolean
- function GetCanDisable() : Boolean
- procedure DoLayerBegin(ACanvas : TLPCanvas; AWidth : Integer; AHeight : Integer; AXCoeff : Single; AYCoeff : Single)
- procedure DoLayerEnd()
- procedure DoLayerDraw(ACanvas : TLPCanvas; AWidth : Integer; AHeight : Integer; AXCoeff : Single; AYCoeff : Single; AContoursOnly : Boolean)
- procedure DoLayerMouseMove(AShift : TShiftState; AX : Integer; AY : Integer)
- procedure DoLayerMouseDown(Button : TMouseButton; Shift : TShiftState; X : Integer; Y : Integer)
- procedure DoLayerMouseUp(Button : TMouseButton; Shift : TShiftState; X : Integer; Y : Integer)
- procedure DoLayerMouseWheelDown(AShift : TShiftState; AX : Integer; AY : Integer)
- procedure DoLayerMouseWheelUp(AShift : TShiftState; AX : Integer; AY : Integer)
- procedure DoLayerMouseEnter()
- procedure DoLayerMouseLeave()
- function GetChachedData(ALink : TObject) : TObject
- procedure SetChachedData(ALink : TObject; AData : TObject)
- function GetOperations() : TLPDrawLayerOperations
- procedure AddLayerLink(ALink : TLPLayerCollectionItem)
- procedure RemoveLayerLink(ALink : TLPLayerCollectionItem)
- function GetName() : String
- function WriteLock() : IOWLockSection
From TSLComponentItem
Properties
Public
- Index - Returns the Index of the component item in the collection.
- ComponentList - Specifies the optional component list owner.