629 B
629 B
title | id | weight | draft | author |
---|---|---|---|---|
darktable.register_event | darktable.register_event | 50 | false | people |
function(
event_type : string,
callback : function,
... : variable
)
This function registers a callback to be called when a given event happens. Events are documented in the event section.
- event_type - string - The name of the event to register to.
- callback - function - The function to call on event. The signature of the function depends on the type of event.
- ... - variable - Some events need extra parameters at registration time; these must be specified here.