Class SLScope.TSLDisplayMarker
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 9: | Line 9: | ||
'''Unit:''' [[Unit SLScope|SLScope]] | '''Unit:''' [[Unit SLScope|SLScope]] | ||
− | '''Inherits:''' [[Class SLScope. | + | '''Inherits:''' [[Class SLScope.TSLBasicDisplayMarker|TSLBasicDisplayMarker]] |
== Syntax == | == Syntax == | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''type''' TSLDisplayMarker = '''class'''( [[Class SLScope. | + | '''type''' TSLDisplayMarker = '''class'''( [[Class SLScope.TSLBasicDisplayMarker|TSLBasicDisplayMarker]] ) |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''class''' TSLDisplayMarker : '''public''' [[Class SLScope. | + | '''class''' TSLDisplayMarker : '''public''' [[Class SLScope.TSLBasicDisplayMarker|TSLBasicDisplayMarker]] |
</code> | </code> | ||
=== Visual C++ (MFC): === | === Visual C++ (MFC): === | ||
<code> | <code> | ||
− | '''class''' CTSLDisplayMarker : '''public''' [[Class SLScope. | + | '''class''' CTSLDisplayMarker : '''public''' [[Class SLScope.TSLBasicDisplayMarker|CTSLBasicDisplayMarker]] |
</code> | </code> | ||
=== C# (.NET): === | === C# (.NET): === | ||
<code> | <code> | ||
− | '''public ref class''' TSLDisplayMarker : [[Class SLScope. | + | '''public ref class''' TSLDisplayMarker : [[Class SLScope.TSLBasicDisplayMarker|Mitov.PlotLab.BasicDisplayMarker]] |
</code> | </code> | ||
== Summary == | == Summary == | ||
Line 33: | Line 33: | ||
== Description == | == Description == | ||
Base class for scope and waterfall display markers. | Base class for scope and waterfall display markers. | ||
+ | |||
+ | == Properties == | ||
+ | |||
+ | === Published === | ||
+ | *[[Property SLScope.TSLDisplayMarker.Position|Position]] - Specifies the X and Y position of a marker. | ||
+ | |||
+ | == Events == | ||
+ | *[[Event SLScope.TSLDisplayMarker.OnMouseDown|OnMouseDown]] - Occurs when the user presses a mouse button with the mouse pointer over the marker. | ||
+ | *[[Event SLScope.TSLDisplayMarker.OnMouseUp|OnMouseUp]] - Occurs when the user releases a mouse button that was pressed with the mouse pointer over the marker. | ||
+ | *[[Event SLScope.TSLDisplayMarker.OnClick|OnClick]] - Occurs when the user clicks the marker. | ||
+ | *[[Event SLScope.TSLDisplayMarker.OnDragged|OnDragged]] - Occurs when the marker has been dragged by the mouse. | ||
+ | |||
+ | == From [[Class SLScope.TSLBasicDisplayMarker|TSLBasicDisplayMarker]] == | ||
== Methods == | == Methods == | ||
=== Public === | === Public === | ||
− | *[[Method procedure SLScope. | + | *[[Method function SLScope.TSLBasicDisplayMarker.HitTest(Integer;Integer) : Boolean|function HitTest(X : Integer; Y : Integer) : Boolean]] |
− | *[[Method procedure SLScope. | + | *[[Method procedure SLScope.TSLBasicDisplayMarker.Draw(TLPCanvas;TRect;Integer;Integer;Real;Real;Boolean)|procedure Draw(ACanvas : TLPCanvas; DispRect : TRect; X : Integer; Y : Integer; APosition : Real; AValue : Real; Printing : Boolean)]] |
+ | *[[Method procedure SLScope.TSLBasicDisplayMarker.DrawDrag(TLPCanvas;Integer;Integer;Real;Real)|procedure DrawDrag(ACanvas : TLPCanvas; X : Integer; Y : Integer; APosition : Real; AValue : Real)]] | ||
+ | *[[Method procedure SLScope.TSLBasicDisplayMarker.ClearDrawData()|procedure ClearDrawData()]] | ||
+ | |||
+ | == From [[Class SLScope.TSLDisplaySelectableCollectionItem|TSLDisplaySelectableCollectionItem]] == | ||
+ | |||
+ | == Methods == | ||
+ | |||
+ | === Public === | ||
+ | *[[Method procedure SLScope.TSLDisplaySelectableCollectionItem.MouseEnter()|procedure MouseEnter()]] | ||
+ | *[[Method procedure SLScope.TSLDisplaySelectableCollectionItem.MouseLeave()|procedure MouseLeave()]] | ||
+ | *[[Method procedure SLScope.TSLDisplaySelectableCollectionItem.MouseDown(TMouseButton;TShiftState;Integer;Integer;Boolean;Boolean)|procedure MouseDown(Button : TMouseButton; Shift : TShiftState; X : Integer; Y : Integer; MouseInside : Boolean; var MouseHandled : Boolean)]] | ||
+ | *[[Method procedure SLScope.TSLDisplaySelectableCollectionItem.MouseUp(TMouseButton;TShiftState;Integer;Integer;Boolean)|procedure MouseUp(Button : TMouseButton; Shift : TShiftState; X : Integer; Y : Integer; MouseInside : Boolean)]] | ||
== From [[Class SLScope.TSLDisplayCollectionItem|TSLDisplayCollectionItem]] == | == From [[Class SLScope.TSLDisplayCollectionItem|TSLDisplayCollectionItem]] == | ||
Line 45: | Line 70: | ||
=== Published === | === Published === | ||
− | |||
*[[Property SLScope.TSLDisplayCollectionItem.Tag|Tag]] - Stores an general purpose integer value as part of an item | *[[Property SLScope.TSLDisplayCollectionItem.Tag|Tag]] - Stores an general purpose integer value as part of an item | ||
+ | |||
+ | == From [[Class LPComponent.TLPNamedCollectionItem|TLPNamedCollectionItem]] == | ||
+ | |||
+ | == Properties == | ||
+ | |||
+ | === Published === | ||
+ | *[[Property LPComponent.TLPNamedCollectionItem.Name|Name]] | ||
+ | |||
+ | == From [[Class LPComponent.TLPCollectionItem|TLPCollectionItem]] == | ||
+ | |||
+ | == Methods == | ||
+ | |||
+ | === Public === | ||
+ | *[[Method function LPComponent.TLPCollectionItem.QueryInterface(TGUID;TLPCollectionItem) : HResult|function QueryInterface(IID : TGUID; Obj : TLPCollectionItem) : HResult]] | ||
[[Category:Classes]] | [[Category:Classes]] |
Revision as of 20:29, 10 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: SignalLabScopePkg
Unit: SLScope
Inherits: TSLBasicDisplayMarker
Contents |
Syntax
Delphi:
type TSLDisplayMarker = class( TSLBasicDisplayMarker )
C++ Builder:
class TSLDisplayMarker : public TSLBasicDisplayMarker
Visual C++ (MFC):
class CTSLDisplayMarker : public CTSLBasicDisplayMarker
C# (.NET):
public ref class TSLDisplayMarker : Mitov.PlotLab.BasicDisplayMarker
Summary
Base class for scope and waterfall display markers.
Description
Base class for scope and waterfall display markers.
Properties
Published
- Position - Specifies the X and Y position of a marker.
Events
- OnMouseDown - Occurs when the user presses a mouse button with the mouse pointer over the marker.
- OnMouseUp - Occurs when the user releases a mouse button that was pressed with the mouse pointer over the marker.
- OnClick - Occurs when the user clicks the marker.
- OnDragged - Occurs when the marker has been dragged by the mouse.
From TSLBasicDisplayMarker
Methods
Public
- function HitTest(X : Integer; Y : Integer) : Boolean
- procedure Draw(ACanvas : TLPCanvas; DispRect : TRect; X : Integer; Y : Integer; APosition : Real; AValue : Real; Printing : Boolean)
- procedure DrawDrag(ACanvas : TLPCanvas; X : Integer; Y : Integer; APosition : Real; AValue : Real)
- procedure ClearDrawData()
From TSLDisplaySelectableCollectionItem
Methods
Public
- procedure MouseEnter()
- procedure MouseLeave()
- procedure MouseDown(Button : TMouseButton; Shift : TShiftState; X : Integer; Y : Integer; MouseInside : Boolean; var MouseHandled : Boolean)
- procedure MouseUp(Button : TMouseButton; Shift : TShiftState; X : Integer; Y : Integer; MouseInside : Boolean)
From TSLDisplayCollectionItem
Properties
Published
- Tag - Stores an general purpose integer value as part of an item