2016-01-07 02:54:24 -05:00
|
|
|
#ifndef ROFI_DIALOG_SCRIPT_H
|
|
|
|
#define ROFI_DIALOG_SCRIPT_H
|
2014-07-21 15:39:24 -04:00
|
|
|
|
2016-01-07 02:54:24 -05:00
|
|
|
/**
|
|
|
|
* @defgroup SCRIPTMode Script
|
|
|
|
* @ingroup MODES
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
2014-07-21 15:39:24 -04:00
|
|
|
/**
|
2014-11-25 02:27:08 -05:00
|
|
|
* @param str The input string to parse
|
|
|
|
*
|
2014-07-21 15:39:24 -04:00
|
|
|
* Parse an argument string into the right ScriptOptions data object.
|
2016-07-29 02:32:34 -04:00
|
|
|
* This is off format: \<Name\>:\<Script\>
|
2014-11-25 02:27:08 -05:00
|
|
|
*
|
|
|
|
* @returns NULL when it fails, a newly allocated ScriptOptions when successful.
|
2014-07-21 15:39:24 -04:00
|
|
|
*/
|
2015-11-25 03:26:38 -05:00
|
|
|
Mode *script_switcher_parse_setup ( const char *str );
|
2016-01-07 02:54:24 -05:00
|
|
|
/*@}*/
|
|
|
|
#endif // ROFI_DIALOG_SCRIPT_H
|