GUACAMOLE-630: Allow guac_terminal_parse_color_scheme() to dictate color scheme format.
This commit is contained in:
parent
0516d599cf
commit
4dabea37af
@ -72,9 +72,15 @@
|
||||
* The client that the terminal is connected to.
|
||||
*
|
||||
* @param color_scheme
|
||||
* A semicolon-separated list of name-value pairs, i.e.
|
||||
* "<name>: <value> [; <name>: <value> [; ...]]".
|
||||
* For example, "color2: rgb:cc/33/22; background: color5".
|
||||
* The name of a pre-defined color scheme (one of the
|
||||
* names defined by the GUAC_TERMINAL_SCHEME_* constants), or
|
||||
* semicolon-separated list of name-value pairs, i.e. "<name>: <value> [;
|
||||
* <name>: <value> [; ...]]". For example, "color2: rgb:cc/33/22;
|
||||
* background: color5".
|
||||
*
|
||||
* If blank, the default scheme of GUAC_TERMINAL_SCHEME_GRAY_BLACK will be
|
||||
* used. If invalid, a warning will be logged, and
|
||||
* GUAC_TERMINAL_SCHEME_GRAY_BLACK will be used.
|
||||
*
|
||||
* @param[out] foreground
|
||||
* Parsed foreground color.
|
||||
|
@ -560,11 +560,8 @@ struct guac_terminal {
|
||||
* The height of the terminal, in pixels.
|
||||
*
|
||||
* @param color_scheme
|
||||
* The name of the color scheme to use. This string must be one of the
|
||||
* names defined by the GUAC_TERMINAL_SCHEME_* constants. If blank, the
|
||||
* default scheme of GUAC_TERMINAL_SCHEME_GRAY_BLACK will be used. If
|
||||
* invalid, a warning will be logged, and the terminal will fall back on
|
||||
* GUAC_TERMINAL_SCHEME_GRAY_BLACK.
|
||||
* The name of the color scheme to use. This string must be in the format
|
||||
* accepted by guac_terminal_parse_color_scheme().
|
||||
*
|
||||
* @param backspace
|
||||
* The integer ASCII code to send when backspace is pressed in
|
||||
|
Loading…
Reference in New Issue
Block a user