rofi/include/xrmoptions.h

78 lines
1.8 KiB
C
Raw Normal View History

2015-07-27 08:17:12 +00:00
#ifndef ROFI_XRMOPTIONS_H
#define ROFI_XRMOPTIONS_H
2014-05-22 19:56:57 +00:00
2016-01-07 07:54:24 +00:00
/**
* @defgroup CONFIGURATION Configuration
*
* This provides rofi configuration system, supports:
* * Compiled defaults.
* * XResource parsing
* * Config file parsing
* * Commandline options.
*
* @{
*/
// Big thanks to Sean Pringle for this code.
// This maps xresource options to config structure.
typedef enum
{
xrm_String = 0,
xrm_Number = 1,
xrm_SNumber = 2,
xrm_Boolean = 3,
xrm_Char = 4
} XrmOptionType;
2014-05-27 06:31:59 +00:00
/**
* @param display Handler of the display to fetch the settings from.
*
* Parse the rofi related X resource options of the
* connected X server.
*/
2015-02-03 07:21:59 +00:00
void config_parse_xresource_options ( Display *display );
void config_parse_xresource_options_file ( const char *filename );
/**
* Parse commandline options.
*/
2015-03-11 17:32:37 +00:00
void config_parse_cmd_options ( void );
/**
* Parse dynamic commandline options.
*/
2015-03-11 17:32:37 +00:00
void config_parse_cmd_options_dynamic ( void );
/**
* @param display Handler of the display to fetch the settings from.
*
* Parse the rofi related X resource options of the
* connected X server.
*/
void config_parse_xresource_options_dynamic ( Display *display );
void config_parse_xresource_options_dynamic_file ( const char *filename );
2016-01-04 06:59:30 +00:00
/**
* Initializes the Xresourced system.
*/
void config_parse_xresource_init ( void );
2014-05-27 06:31:59 +00:00
/**
* Free any allocated memory.
*/
2015-02-03 07:21:59 +00:00
void config_xresource_free ( void );
2014-05-22 19:56:57 +00:00
2014-05-27 06:31:59 +00:00
/**
* Dump the settings in a Xresources compatible way to
* stdout.
*/
2014-05-22 19:56:57 +00:00
void xresource_dump ( void );
2014-05-27 06:31:59 +00:00
/**
* Add option to the dynamic option parser.
*/
2015-10-16 06:42:01 +00:00
void config_parser_add_option ( XrmOptionType type, const char *key, void **value, const char *comment );
void print_options ( void );
2015-11-14 18:59:56 +00:00
void print_help_msg ( const char *option, const char *type, const char*text, const char *def, int isatty );
2015-12-10 17:20:04 +00:00
void print_xresources_theme ( void );
2016-01-07 07:54:24 +00:00
/* @}*/
#endif