mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
a534a0f244
* NEEDS TESTING.
61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
#ifndef __XRMOPTIONS_H__
|
|
#define __XRMOPTIONS_H__
|
|
|
|
// 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;
|
|
|
|
/**
|
|
* @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 ( Display *display );
|
|
|
|
|
|
/**
|
|
* @param argc Number of arguments.
|
|
* @param argv Array of arguments.
|
|
*
|
|
* Parse commandline options.
|
|
*/
|
|
void config_parse_cmd_options ( int argc, char ** argv );
|
|
/**
|
|
* @param argc Number of arguments.
|
|
* @param argv Array of arguments.
|
|
*
|
|
* Parse dynamic commandline options.
|
|
*/
|
|
void config_parse_cmd_options_dynamic ( int argc, char ** argv );
|
|
/**
|
|
* @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 );
|
|
|
|
/**
|
|
* Free any allocated memory.
|
|
*/
|
|
void config_xresource_free ( void );
|
|
|
|
/**
|
|
* Dump the settings in a Xresources compatible way to
|
|
* stdout.
|
|
*/
|
|
void xresource_dump ( void );
|
|
|
|
/**
|
|
* Add option to the dynamic option parser.
|
|
*/
|
|
void config_parser_add_option ( XrmOptionType type, const char *key, void **value );
|
|
#endif
|