2015-07-27 08:17:12 +00:00
|
|
|
#ifndef ROFI_MAIN_H
|
|
|
|
#define ROFI_MAIN_H
|
2016-02-19 21:43:53 +00:00
|
|
|
#include <xcb/xcb.h>
|
2016-02-21 12:10:32 +00:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2014-08-07 19:42:16 +00:00
|
|
|
#include <glib.h>
|
2015-09-26 18:34:34 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2015-11-14 12:47:45 +00:00
|
|
|
#include "timings.h"
|
2015-04-30 19:47:32 +00:00
|
|
|
#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"
|
2014-01-20 22:36:20 +00:00
|
|
|
|
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;
|
2014-01-20 22:36:20 +00:00
|
|
|
|
2016-02-11 07:41:19 +00:00
|
|
|
/**
|
|
|
|
* 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 );
|
|
|
|
|
2016-02-19 18:29:06 +00:00
|
|
|
void rofi_set_return_code ( int code );
|
2016-01-07 15:01:56 +00:00
|
|
|
/** Reset terminal */
|
2016-04-19 20:10:34 +00:00
|
|
|
#define color_reset "\033[0m"
|
2016-01-07 15:01:56 +00:00
|
|
|
/** Set terminal text bold */
|
2016-04-19 20:10:34 +00:00
|
|
|
#define color_bold "\033[1m"
|
2016-01-07 15:01:56 +00:00
|
|
|
/** Set terminal text italic */
|
2016-04-19 20:10:34 +00:00
|
|
|
#define color_italic "\033[2m"
|
2016-01-07 15:01:56 +00:00
|
|
|
/** Set terminal foreground text green */
|
2016-04-19 20:10:34 +00:00
|
|
|
#define color_green "\033[0;32m"
|
2016-01-08 08:16:59 +00:00
|
|
|
|
|
|
|
#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>"
|
|
|
|
#define ERROR_MSG_MARKUP TRUE
|
2016-01-07 15:01:56 +00:00
|
|
|
/*@}*/
|
2014-01-20 22:36:20 +00:00
|
|
|
#endif
|