rofi/include/rofi.h

83 lines
2.2 KiB
C
Raw Normal View History

2015-07-27 08:17:12 +00:00
#ifndef ROFI_MAIN_H
#define ROFI_MAIN_H
#include <xcb/xcb.h>
#include <xkbcommon/xkbcommon.h>
#include <glib.h>
2015-09-26 18:34:34 +00:00
#include <string.h>
#include <stdlib.h>
#include "keyb.h"
2016-01-07 18:47:37 +00:00
#include "mode.h"
2016-02-08 08:03:11 +00:00
#include "view.h"
2016-01-07 15:01:56 +00:00
/**
* @defgroup Main Main
* @{
*/
2016-03-01 17:11:55 +00:00
2014-11-25 07:27:08 +00:00
/**
* Pointer to xdg cache directory.
*/
2014-01-25 22:37:37 +00:00
extern const char *cache_dir;
/**
* Get the number of enabled modi.
*
* @returns the number of enabled modi.
*/
unsigned int rofi_get_num_enabled_modi ( void );
/**
* @param index The mode to return. (should be smaller then rofi_get_num_enabled_mode)
*
* Get an enabled mode handle.
*
* @returns a Mode handle.
*/
const Mode * rofi_get_mode ( unsigned int index );
2017-01-09 17:32:26 +00:00
/**
* @param str A GString with an error message to display.
*
* Queue an error.
*/
void rofi_add_error_message ( GString *str );
2017-03-04 11:00:59 +00:00
/**
* @param code the code to return
*
* Return value are used for integrating dmenu rofi in scripts.
* This function sets the code that rofi will return on exit.
*/
2016-02-19 18:29:06 +00:00
void rofi_set_return_code ( int code );
2017-03-04 11:00:59 +00:00
/**
* @param name Search for mode with this name.
*
* @return returns Mode * when found, NULL if not.
*/
Mode * rofi_collect_modi_search ( const char *name );
2016-01-07 15:01:56 +00:00
/** Reset terminal */
2016-10-14 14:46:54 +00:00
#define color_reset "\033[0m"
2016-01-07 15:01:56 +00:00
/** Set terminal text bold */
2016-10-14 14:46:54 +00:00
#define color_bold "\033[1m"
2016-01-07 15:01:56 +00:00
/** Set terminal text italic */
2016-10-14 14:46:54 +00:00
#define color_italic "\033[2m"
2016-01-07 15:01:56 +00:00
/** Set terminal foreground text green */
2016-10-14 14:46:54 +00:00
#define color_green "\033[0;32m"
/** Set terminal foreground text red */
#define color_red "\033[0;31m"
/** Appends instructions on how to report an error. */
#define ERROR_MSG( a ) a "\n" \
"If you suspect this is caused by a bug in rofi,\n" \
"please report the following information to rofi's github page:\n" \
" * The generated commandline output when the error occored.\n" \
" * Output of -dump-xresource\n" \
" * Steps to reproduce\n" \
" * The version of rofi you are running\n\n" \
" <i>https://github.com/DaveDavenport/rofi/</i>"
/** Indicates if ERROR_MSG uses pango markup */
#define ERROR_MSG_MARKUP TRUE
2016-01-07 15:01:56 +00:00
/*@}*/
#endif