summaryrefslogtreecommitdiffstats
path: root/include/script-dialog.h
blob: 0ce8c5b1e7e404cb19d353b812331471af845917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef __SCRIPT_DIALOG_H__
#define __SCRIPT_DIALOG_H__

/**
 * Structure holds the arguments for the script_switcher.
 */
typedef struct
{
    /** Prompt to display. */
    char *name;
    /** The script */
    char *script_path;
} ScriptOptions;


/**
 * @param input Pointer to the user-input string.
 * @param data  Custom data pointer for callback.
 *
 * Run the script dialog
 *
 * @returns SwitcherMode selected by user.
 */
SwitcherMode script_switcher_dialog ( char **input, void *data );

/**
 * @param str   The input string to parse
 *
 * Parse an argument string into the right ScriptOptions data object.
 * This is off format: <Name>:<Script>
 *
 * @returns NULL when it fails, a newly allocated ScriptOptions when successful.
 */
ScriptOptions *script_switcher_parse_setup ( const char *str );

/**
 * @param sw Handle to the ScriptOption
 *
 * Free the ScriptOptions block.
 */
void script_switcher_free_options ( ScriptOptions *sw );
#endif