Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Find events from the OPERATORPROTOCOL object object in the table. Procedures are started when the corresponding event happens. The format of the event procedure for the Operator protocol object:

Code Block
OnEvent("OPERATORPROTOCOL","_id_","_event_")

occurs.

EventEvent descriptionEvent parameters
EventEvent description
ACTIVATE_LEFTOperator left-clicked the event cell in the Operator protocol
ACTIVATE_RIGHTOperator right-clicked the event cell in the Operator protocol
POSTPONE_PRESSEDOperator clicked the Delay button
CREATE_REPORTOperator clicked the Create button on the Create report tab
.
The user_id<> parameter contains the user ID. The initial_date<> and final_date<> parameters specify the initial and final dates selected in the interface

...

RESPONSE_ALARMOperator clicked the Alarm situation buttonobjtype<>—Object type
objid<>—Object ID
action<>Name of the event in the database
alarm_time<>Time when the alarm occurred 


RESPONSE_SUSPECTOperator clicked the Suspicious situation button
RESPONSE_FALSEOperator clicked the False alarm button
ACTIVATE_EVENTFocusing on the event: click the event in the interface or jump to the required event using the keyboard

The list of commands and parameters for the the OPERATORPROTOCOL object is given in the table.

Command – its —command description

Parameters

Parameter description

DEL_ALARM  ALARM—delete an alarm

objtype<>

Object type (e.g.for example, CAM, GRELE, etc.and so on)

objid<>

Object ID

options<>

Possible values:first –

  • firstdelete first alarm
last –
  • lastdelete last alarm
  • all or
empty –
  • blankdelete all alarms

HIDE_BUTTON – hide the buttons used to assign status to an event


    

button<>

Names of the buttons separated by comma:

  • alarm
  • Alarm situation
  • suspicious
  • Suspicious situation
  • false
  • False
triggering
  • alarm

Example of setting a parameter:

button<alarm,suspicious,false>

hide<>

1 hide the buttons listed in the button parameter

0 show the buttons listed in the button parameter

objtype<>

Object type

objaction<>

Event type

objid<>

Object ID

Example 1. Delete the first alarm on Camera 3 in the Operator protocol window on Macro 2.

Code Block
OnEvent ("MACRO","2","RUN")
{
  DoReact("OPERATORPROTOCOL","1","DEL_ALARM","objtype<CAM>,objid<3>,options<first>");
}

Example 2. Hide the Alarm, Suspicious and False buttons for the Disarm event from Camera 12 in the Operator protocol window on Macro 2.

...