rofi/include/xrmoptions.h

140 lines
3.5 KiB
C
Raw Normal View History

2015-07-27 08:17:12 +00:00
#ifndef ROFI_XRMOPTIONS_H
#define ROFI_XRMOPTIONS_H
2016-03-01 17:11:55 +00:00
#include "xcb.h"
#include "theme.h"
2016-01-07 12:32:33 +00:00
// Big thanks to Sean Pringle for this code.
2014-05-22 19:56:57 +00:00
2016-01-07 07:54:24 +00:00
/**
2016-01-07 12:32:33 +00:00
* @defgroup CONFXResources XResources Configuration
* @ingroup CONFIGURATION
*
* Configuration described in Xresource format. This can be loaded from the X server or file.
*
* @defgroup CONFXServer XServer Configuration
* @ingroup CONFXResources
*
* Loads the configuration directly from the X server using the XResources system.
*
* @defgroup CONFCommandline Commandline Configuration
* @ingroup CONFIGURATION
*
* Modified the configuration based on commandline arguments
*
* @defgroup CONFFile File Configuration
* @ingroup CONFXResources
*
* Loads the configuration from a config file that uses the XResource file format.
*
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.
*
* @{
*/
/**
2016-10-14 14:46:54 +00:00
* Type of the config options.
*/
typedef enum
{
/** Config option is string */
xrm_String = 0,
/** Config option is an unsigned number */
xrm_Number = 1,
/** Config option is a signed number */
xrm_SNumber = 2,
/** Config option is a boolean (true/false) value*/
xrm_Boolean = 3,
/** Config option is a character */
xrm_Char = 4
} XrmOptionType;
2014-05-27 06:31:59 +00:00
/**
2016-07-29 06:32:34 +00:00
* @param xcb Handler object holding connection used to fetch the settings from.
2014-05-27 06:31:59 +00:00
*
* Parse the rofi related X resource options of the
* connected X server.
2016-01-07 12:32:33 +00:00
*
* @ingroup CONFXServer
2014-05-27 06:31:59 +00:00
*/
2016-03-01 17:11:55 +00:00
void config_parse_xresource_options ( xcb_stuff *xcb );
2016-01-07 12:32:33 +00:00
/**
2016-10-15 13:39:08 +00:00
* @param filename The xresources file to parse
*
* Parses filename and updates the config
2016-01-07 12:32:33 +00:00
* @ingroup CONFFile
*/
void config_parse_xresource_options_file ( const char *filename );
/**
* Parse commandline options.
2016-01-07 12:32:33 +00:00
* @ingroup CONFCommandline
*/
2015-03-11 17:32:37 +00:00
void config_parse_cmd_options ( void );
2016-01-07 12:32:33 +00:00
2014-05-27 06:31:59 +00:00
/**
* Free any allocated memory.
2016-01-07 12:32:33 +00:00
*
* @ingroup CONFXResources
2014-05-27 06:31:59 +00:00
*/
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.
2016-01-07 12:32:33 +00:00
*
* @ingroup CONFXResources
*/
void config_parse_xresource_dump ( void );
/**
2016-01-07 12:32:33 +00:00
* @param type The type of the value
* @param key The key refering to this configuration option
* @param value The value to update based [out][in]
2016-07-29 06:32:34 +00:00
* @param comment Description of this configuration option
2016-01-07 12:32:33 +00:00
*
* Add option (at runtime) 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 );
2016-01-07 12:32:33 +00:00
/**
* Print the current configuration to stdout. Uses bold/italic when printing to terminal.
*/
void print_options ( void );
2016-01-07 12:32:33 +00:00
/**
* @param option The name of the option
* @param type String describing the type
* @param text Description of the option
* @param def Current value of the option
* @param isatty If printed to a terminal
*
* Function that does the markup for printing an configuration option to stdout.
*/
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 );
2016-01-07 07:54:24 +00:00
/**
* @param length the length of the returned array
*
* Creates an array with a strings describing each keybinding.
*
* @returns an array of string with length elements
*/
char ** config_parser_return_display_help ( unsigned int *length );
/**
* @brief Set config option.
*
* Sets both the static as dynamic config option.
*
* @param p Property to set
*/
2017-03-28 18:04:02 +00:00
void config_parse_set_property ( const Property *p );
2016-01-07 07:54:24 +00:00
/* @}*/
#endif