LibreOffice
LibreOffice 24.2 SDK API Reference
|
Specify whether a macro can be executed. More...
Variables | |
const short | NEVER_EXECUTE = 0 |
A macro should not be executed at all. More... | |
const short | FROM_LIST = 1 |
Execute macros from secure list quietly. More... | |
const short | ALWAYS_EXECUTE = 2 |
Execute any macro, macros signed with trusted certificates and macros from secure list are executed quietly. More... | |
const short | USE_CONFIG = 3 |
Use configuration to retrieve macro settings. More... | |
const short | ALWAYS_EXECUTE_NO_WARN = 4 |
A macro should be executed always no confirmation should be provided. More... | |
const short | USE_CONFIG_REJECT_CONFIRMATION = 5 |
Use configuration to retrieve macro settings. More... | |
const short | USE_CONFIG_APPROVE_CONFIRMATION = 6 |
Use configuration to retrieve macro settings. More... | |
const short | FROM_LIST_NO_WARN = 7 |
Execute only macros from secure list. More... | |
const short | FROM_LIST_AND_SIGNED_WARN = 8 |
Execute only macros from secure list or macros that are signed by trusted certificates. More... | |
const short | FROM_LIST_AND_SIGNED_NO_WARN = 9 |
Execute only macros from secure list or macros that are signed by trusted certificates. More... | |
Specify whether a macro can be executed.
const short ALWAYS_EXECUTE = 2 |
Execute any macro, macros signed with trusted certificates and macros from secure list are executed quietly.
If the macro is neither in secure list nor signed a confirmation will be requested.
const short ALWAYS_EXECUTE_NO_WARN = 4 |
A macro should be executed always no confirmation should be provided.
const short FROM_LIST = 1 |
Execute macros from secure list quietly.
If a macro is not in the list a confirmation for it executing will appear.
const short FROM_LIST_AND_SIGNED_NO_WARN = 9 |
Execute only macros from secure list or macros that are signed by trusted certificates.
No warning/confirmation should be shown.
const short FROM_LIST_AND_SIGNED_WARN = 8 |
Execute only macros from secure list or macros that are signed by trusted certificates.
If the macro is neither in secure list nor signed it will not be executed.
If the macro is signed with unknown certificate a warning will appear. The macro either will not be executed or if the warning allows confirmation, it will be executed after user agrees to trust the certificate.
const short FROM_LIST_NO_WARN = 7 |
Execute only macros from secure list.
Macros that are not from the list are not executed.
const short NEVER_EXECUTE = 0 |
A macro should not be executed at all.
const short USE_CONFIG = 3 |
Use configuration to retrieve macro settings.
In case a user confirmation is required a dialog is output.
const short USE_CONFIG_APPROVE_CONFIRMATION = 6 |
Use configuration to retrieve macro settings.
Treat cases when user confirmation required as approved.
const short USE_CONFIG_REJECT_CONFIRMATION = 5 |
Use configuration to retrieve macro settings.
Treat cases when user confirmation required as rejected.