2017-04-15 06:32:05 -04:00
|
|
|
/*
|
|
|
|
* rofi
|
|
|
|
*
|
|
|
|
* MIT/X11 License
|
2020-01-01 06:23:12 -05:00
|
|
|
* Copyright © 2013-2020 Qball Cow <qball@gmpclient.org>
|
2017-04-15 06:32:05 -04:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-07-27 04:17:12 -04:00
|
|
|
#ifndef ROFI_MAIN_H
|
|
|
|
#define ROFI_MAIN_H
|
2016-02-19 16:43:53 -05:00
|
|
|
#include <xcb/xcb.h>
|
2016-02-21 07:10:32 -05:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2014-08-07 15:42:16 -04:00
|
|
|
#include <glib.h>
|
2015-09-26 14:34:34 -04:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2017-08-18 05:38:54 -04:00
|
|
|
#include "rofi-types.h"
|
2015-04-30 15:47:32 -04:00
|
|
|
#include "keyb.h"
|
2016-01-07 13:47:37 -05:00
|
|
|
#include "mode.h"
|
2016-02-08 03:03:11 -05:00
|
|
|
#include "view.h"
|
2014-01-20 17:36:20 -05:00
|
|
|
|
2016-01-07 10:01:56 -05:00
|
|
|
/**
|
|
|
|
* @defgroup Main Main
|
|
|
|
* @{
|
|
|
|
*/
|
2016-03-01 12:11:55 -05:00
|
|
|
|
2014-11-25 02:27:08 -05:00
|
|
|
/**
|
|
|
|
* Pointer to xdg cache directory.
|
|
|
|
*/
|
2014-01-25 17:37:37 -05:00
|
|
|
extern const char *cache_dir;
|
2014-01-20 17:36:20 -05:00
|
|
|
|
2016-02-11 02:41:19 -05: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 );
|
|
|
|
|
2017-01-09 12:32:26 -05:00
|
|
|
/**
|
|
|
|
* @param str A GString with an error message to display.
|
|
|
|
*
|
|
|
|
* Queue an error.
|
|
|
|
*/
|
|
|
|
void rofi_add_error_message ( GString *str );
|
2017-03-04 06:00:59 -05:00
|
|
|
|
2016-10-14 02:47:21 -04: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 13:29:06 -05:00
|
|
|
void rofi_set_return_code ( int code );
|
2017-03-04 06:00:59 -05:00
|
|
|
|
2017-06-01 07:30:29 -04:00
|
|
|
void rofi_quit_main_loop ( void );
|
|
|
|
|
2017-03-04 06:00:59 -05: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 10:01:56 -05:00
|
|
|
/** Reset terminal */
|
2016-10-14 10:46:54 -04:00
|
|
|
#define color_reset "\033[0m"
|
2016-01-07 10:01:56 -05:00
|
|
|
/** Set terminal text bold */
|
2016-10-14 10:46:54 -04:00
|
|
|
#define color_bold "\033[1m"
|
2016-01-07 10:01:56 -05:00
|
|
|
/** Set terminal text italic */
|
2016-10-14 10:46:54 -04:00
|
|
|
#define color_italic "\033[2m"
|
2016-01-07 10:01:56 -05:00
|
|
|
/** Set terminal foreground text green */
|
2016-10-14 10:46:54 -04:00
|
|
|
#define color_green "\033[0;32m"
|
2016-11-25 14:00:27 -05:00
|
|
|
/** Set terminal foreground text red */
|
|
|
|
#define color_red "\033[0;31m"
|
2016-01-08 03:16:59 -05:00
|
|
|
|
2016-10-14 02:47:21 -04:00
|
|
|
/** Appends instructions on how to report an error. */
|
2016-01-08 03:16:59 -05: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" \
|
2019-05-14 05:52:21 -04:00
|
|
|
" <i>https://github.com/davatorium/rofi/</i>"
|
2016-10-14 02:47:21 -04:00
|
|
|
/** Indicates if ERROR_MSG uses pango markup */
|
2016-01-08 03:16:59 -05:00
|
|
|
#define ERROR_MSG_MARKUP TRUE
|
2020-10-12 15:39:36 -04:00
|
|
|
/**@}*/
|
2014-01-20 17:36:20 -05:00
|
|
|
#endif
|