SketcherBase
Defined in: src/chem.ts:73
A common interface that all sketchers should implement
Extends
Constructors
Constructor
new SketcherBase():
SketcherBase
Defined in: src/chem.ts:78
Returns
SketcherBase
Overrides
Properties
| Property | Modifier | Type | Default value | Description | Inherited from | Defined in |
|---|---|---|---|---|---|---|
_functions | protected | Func[] | [] | - | Widget._functions | src/widgets/base.ts:243 |
_name | public | string | '' | - | - | src/chem.ts:76 |
_properties | protected | Property[] | [] | - | Widget._properties | src/widgets/base.ts:242 |
_root | protected | HTMLElement | undefined | - | Widget._root | src/widgets/base.ts:241 |
dart | public | any | undefined | - | Widget.dart | src/widgets/base.ts:246 |
explicitMol? | public | { notation: "smiles" | "molblock" | "molblockV3000"; value: string; } | null | null | This field is used in cases when smiles is set from column but actually molblock is set to keep same coordinates. When this happens and user copies over the smiles from sketche, the sketcher returns transformed smiles. | - | src/chem.ts:86 |
factory | public | Func | null | null | Constructor function. No parameters, returns [Widget]. | Widget.factory | src/widgets/base.ts:239 |
host? | public | Sketcher | undefined | - | - | src/chem.ts:75 |
isDetached | public | boolean | false | - | Widget.isDetached | src/widgets/base.ts:247 |
onChanged | public | Subject<any> | undefined | - | - | src/chem.ts:74 |
props | public | any | undefined | - | Widget.props | src/widgets/base.ts:244 |
subs | public | Subscription[] | undefined | - | Widget.subs | src/widgets/base.ts:245 |
temp | public | any | undefined | Contains auxiliary information | Widget.temp | src/widgets/base.ts:236 |
Accessors
children
Get Signature
get children():
Widget<any>[]
Defined in: src/widgets/base.ts:320
Parent widget up the DOM tree, or null.
Returns
Widget<any>[]
Inherited from
height
Get Signature
get height():
number
Defined in: src/chem.ts:119
Returns
number
isInitialized
Get Signature
get
abstractisInitialized():boolean
Defined in: src/chem.ts:109
Returns
boolean
molFile
Get Signature
get
abstractmolFile():string
Defined in: src/chem.ts:94
MolFile representation of the molecule
Returns
string
Set Signature
set
abstractmolFile(s):void
Defined in: src/chem.ts:100
Parameters
| Parameter | Type |
|---|---|
s | string |
Returns
void
molV3000
Get Signature
get
abstractmolV3000():string
Defined in: src/chem.ts:96
Returns
string
Set Signature
set
abstractmolV3000(s):void
Defined in: src/chem.ts:98
Parameters
| Parameter | Type |
|---|---|
s | string |
Returns
void
parent
Get Signature
get parent():
Widget<any> |null
Defined in: src/widgets/base.ts:317
Parent widget up the DOM tree, or null.
Returns
Widget<any> | null
Inherited from
root
Get Signature
get root():
HTMLElement
Defined in: src/widgets/base.ts:324
Widget's visual root.
Returns
HTMLElement
Set Signature
set root(
r):void
Defined in: src/widgets/base.ts:325
Parameters
| Parameter | Type |
|---|---|
r | HTMLElement |
Returns
void
Inherited from
smarts
Set Signature
set
abstractsmarts(s):void
Defined in: src/chem.ts:107
Parameters
| Parameter | Type |
|---|---|
s | string |
Returns
void
smiles
Get Signature
get
abstractsmiles():string
Defined in: src/chem.ts:89
SMILES representation of the molecule
Returns
string
Set Signature
set
abstractsmiles(s):void
Defined in: src/chem.ts:91
Parameters
| Parameter | Type |
|---|---|
s | string |
Returns
void
supportedExportFormats
Get Signature
get supportedExportFormats():
string[]
Defined in: src/chem.ts:111
Returns
string[]
type
Get Signature
get type():
string
Defined in: src/widgets/base.ts:233
Returns
string
Inherited from
width
Get Signature
get width():
number
Defined in: src/chem.ts:115
Returns
number
Methods
apply()
apply(
properties):Widget
Defined in: src/widgets/base.ts:284
Parameters
| Parameter | Type | Description |
|---|---|---|
properties | object | - |
Returns
Inherited from
detach()
detach():
void
Defined in: src/widgets/base.ts:329
Gets called when a widget is detached and will no longer be used. Typically used for unsubscribing from events. Be sure to call super.detach() if this method is overridden.
Returns
void
Inherited from
getDartProperties()
getDartProperties():
any[]
Defined in: src/widgets/base.ts:305
Returns
any[]
Inherited from
getFunctions()
getFunctions():
Func[]
Defined in: src/widgets/base.ts:299
Functions that are applicable to this particular widget. Used in the UI to display context actions, and for the AI integrations.
Returns
Func[]
Inherited from
getProperties()
getProperties():
Property[]
Defined in: src/widgets/base.ts:295
Returns all properties of this widget.
Returns
Property[]
Inherited from
getSmarts()
getSmarts():
Promise<string>
Defined in: src/chem.ts:103
SMARTS query
Returns
Promise<string>
getWidgetStatus()
getWidgetStatus():
IWidgetStatus
Defined in: src/widgets/base.ts:371
Returns the widget's runtime structure for automated testing and introspection.
Returns
Inherited from
init()
init(
host):Promise<void>
Defined in: src/chem.ts:124
Override to provide custom initialization. At this point, the root is already in the DOM.
Parameters
| Parameter | Type |
|---|---|
host | Sketcher |
Returns
Promise<void>
onEvent()
onEvent(
eventId?):Observable<any>
Defined in: src/widgets/base.ts:368
Observes events with the specified eventId. Override in subclasses to provide actual events.
Parameters
| Parameter | Type | Default value |
|---|---|---|
eventId | string | null | null |
Returns
Observable<any>
Inherited from
onFrameAttached()
onFrameAttached(
dataFrame):void
Defined in: src/widgets/base.ts:311
Parameters
| Parameter | Type |
|---|---|
dataFrame | DataFrame |
Returns
void
Inherited from
onPropertyChanged()
onPropertyChanged(
property):void
Defined in: src/widgets/base.ts:303
Gets called when viewer's property is changed.
Parameters
| Parameter | Type | Description |
|---|---|---|
property | Property | null | or null, if multiple properties were changed. |
Returns
void
Inherited from
refresh()
refresh():
void
Defined in: src/chem.ts:128
Returns
void
resize()
resize():
void
Defined in: src/chem.ts:130
Returns
void
sourceRowsChanged()
sourceRowsChanged():
void
Defined in: src/widgets/base.ts:309
Returns
void
Inherited from
sub()
sub(
subscription):void
Defined in: src/widgets/base.ts:277
Registers a subscription to an external event.
Parameters
| Parameter | Type | Description |
|---|---|---|
subscription | Subscription | - |
Returns
void
Inherited from
toDart()
toDart():
any
Defined in: src/widgets/base.ts:269
Returns
any
Inherited from
find()
staticfind(root):Widget<any> |null
Defined in: src/widgets/base.ts:265
Finds existing widget from its visual root.
Parameters
| Parameter | Type |
|---|---|
root | Element |
Returns
Widget<any> | null
Inherited from
fromRoot()
staticfromRoot(root):Widget
Defined in: src/widgets/base.ts:374
Creates a new widget from the root element.
Parameters
| Parameter | Type |
|---|---|
root | HTMLElement |
Returns
Inherited from
getAll()
staticgetAll():Widget<any>[]
Defined in: src/widgets/base.ts:260
Returns all currently active widgets.
Returns
Widget<any>[]