Last updated

API / geotoolkit / attributes / ColoredStyle / ColoredStyle

Class: ColoredStyle

attributes.ColoredStyle.ColoredStyle

Defines a base class to define a style that has a color attribute.

Hierarchy

Table of contents

Constructors
Methods
Css Properties
Name Type Description
colorstringColor in CSS form

Contents

Constructors

new ColoredStyle(color, shadow)

Protected new ColoredStyle(color?, shadow?)

Create ColoredStyle

Parameters

Name Type Description
Optional colorstring | RgbaColor | HsvColor | HlsColor | Optionscolor in CSS form or properties object
Optional shadowShadowJSON for displaying shadow

Overrides

Style.constructor

Methods

clone

clone(): Style

All inheritors should implement copy constructor or provide custom implementation for this method

Returns

Style

this

Inherited from

Style.clone


copyConstructor

Protected copyConstructor(src, deepCopy?): ColoredStyle

copy constructor

Parameters

Name Type Description
srcColoredStyleSource to copy from
Optional deepCopybooleandeep copy

Returns

ColoredStyle

this

Overrides

Style.copyConstructor


dispose

dispose(): void

Dispose.

Returns

void

Inherited from

Style.dispose


getClassName

getClassName(): string

Returns

string

Inherited from

Style.getClassName


getColor

getColor(): string

Returns color

Returns

string

color in CSS form


getProperties

getProperties(context?): OptionsOut

Gets all the properties pertaining to this object

Parameters

Name Type Description
Optional contextISerializationContextserialization context

Returns

OptionsOut

properties

Overrides

Style.getProperties


getRgbaColor

getRgbaColor(): RgbaColor

Return RGBA color

Returns

RgbaColor

color


getShadow

getShadow(): Shadow

Gets all properties pertaining to shadow

Returns

Shadow

JSON with offsetX, offsetY, color and blur properties


getTimeStamp

getTimeStamp(): number

Gets time stamp

Returns

number

timeStamp

Inherited from

Style.getTimeStamp


hasEventListener

hasEventListener(type, callback?): boolean

Check if a list of event listeners for this type contains this listener

Parameters

Name Type Description
typestringtype of event or property
Optional callbackFunctionto be called, if null, check if any callback is registered

Returns

boolean

Inherited from

Style.hasEventListener


invalidate

invalidate(): ColoredStyle

notify the node that the style is invalidated

Returns

ColoredStyle

this

Inherited from

Style.invalidate


isDisposed

isDisposed(): boolean

Returns whether this object has been disposed

Returns

boolean

Inherited from

Style.isDisposed


isSilent

isSilent(): boolean

Return true if the event dispatcher doesn't notify any events

Returns

boolean

Inherited from

Style.isSilent


notify

notify<E>(type, source, args?): ColoredStyle

Notify listeners

Type parameters

NameType
Eextends string

Parameters

Name Type Description
typeEevent types
sourceStyleof the event
Optional argsEventMap[E]arguments of the event

Returns

ColoredStyle

this

Inherited from

Style.notify


off

off<E>(type?, callback?): ColoredStyle

Detach listener on event. Calling .off() with no arguments removes all attached listeners. Calling .off(type) with no callback removes all attached listeners for specific type.

Type parameters

NameType
Eextends string

Parameters

Name Type Description
Optional typeEtype of the event
Optional callback(eventType: E, sender: ColoredStyle, args: EventMap[E]) => voidfunction to be called

Returns

ColoredStyle

this

Inherited from

Style.off


on

on<E>(type, callback): ColoredStyle

Attach listener on event that will be called whenever the specified event is delivered to the target

If the callback function is already in the list of event listeners for this target, the function is not added a second time.

If a particular anonymous function is in the list of event listeners registered for a certain target, and then later in the code, an identical anonymous function is given in an "on" call, the second function will also be added to the list of event listeners for that target.

Type parameters

NameType
Eextends string

Parameters

Name Type Description
typeEtype of event or property
callback(eventType: E, sender: ColoredStyle, args: EventMap[E]) => voidto be called

Returns

ColoredStyle

this

Inherited from

Style.on


setColor

setColor(color): ColoredStyle

Sets color

Parameters

Name Type Description
colorstring | RgbaColor | HsvColor | HlsColorin CSS string form or RgbaColor object

Returns

ColoredStyle

this


setProperties

setProperties(properties?): ColoredStyle

Sets all the properties pertaining to this object

Parameters

Name Type Description
Optional propertiesOptionsAn object containing the properties to set

Returns

ColoredStyle

this

Overrides

Style.setProperties


setShadow

setShadow(shadow): ColoredStyle

Sets all properties pertaining to shadow

Parameters

Name Type Description
shadowPartial<Merge<Shadow, { color?: string | RgbaColor }>>data

Returns

ColoredStyle

this


setSilent

setSilent(bool, force?): ColoredStyle

Set silent mode

Parameters

Name Type Description
boolbooleanflag to enable silent mode
Optional forcebooleantrue if parent should be invalidated immediately

Returns

ColoredStyle

this

Inherited from

Style.setSilent


toGrayScale

toGrayScale(clone?): ColoredStyle

Clone the instance in grayscale style, or convert itself if [clone] is false.

Parameters

Name Type Description
Optional clonebooleanclone instance if true, default is true

Returns

ColoredStyle


updateTimeStamp

updateTimeStamp(silent?): ColoredStyle

Update time stamp to indicate that style has been changed.

Parameters

Name Type Description
Optional silentbooleansilent mode. If this parameter equals to true then style doesn't send invalidate event

Returns

ColoredStyle

this

Inherited from

Style.updateTimeStamp


getClassName

Static getClassName(): string

Returns

string

Inherited from

Style.getClassName


isStyleNotificationEnabled

Static isStyleNotificationEnabled(): boolean

Return status of the global notification for all styles.

Returns

boolean

Inherited from

Style.isStyleNotificationEnabled