2017-04-15 06:32:05 -04:00
|
|
|
/*
|
|
|
|
* rofi
|
|
|
|
*
|
|
|
|
* MIT/X11 License
|
2021-06-09 08:50:39 -04:00
|
|
|
* Copyright © 2013-2021 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_HELPER_H
|
|
|
|
#define ROFI_HELPER_H
|
2017-10-03 14:50:38 -04:00
|
|
|
#include "rofi-types.h"
|
2021-08-17 19:16:45 -04:00
|
|
|
#include <cairo.h>
|
2017-11-21 10:04:59 -05:00
|
|
|
G_BEGIN_DECLS
|
2017-06-01 07:36:11 -04:00
|
|
|
|
2016-01-07 02:54:24 -05:00
|
|
|
/**
|
|
|
|
* @defgroup HELPERS Helpers
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @defgroup HELPER Helper
|
|
|
|
* @ingroup HELPERS
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
2016-03-11 04:43:32 -05:00
|
|
|
|
2014-11-24 14:22:44 -05:00
|
|
|
/**
|
|
|
|
* @param string The input string.
|
|
|
|
* @param output Pointer to 2 dimensional array with parsed string.
|
|
|
|
* @param length Length of 2 dimensional array.
|
|
|
|
* @param ... Key, value parse. Replaces the string Key with value.
|
|
|
|
*
|
|
|
|
* Parses a string into arguments. While replacing keys with values.
|
|
|
|
*
|
|
|
|
* @returns TRUE when successful, FALSE when failed.
|
2014-11-24 14:35:28 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int helper_parse_setup(char *string, char ***output, int *length, ...);
|
2014-09-03 07:07:26 -04:00
|
|
|
|
2014-11-24 14:22:44 -05:00
|
|
|
/**
|
|
|
|
* @param input The input string.
|
2015-01-12 08:13:46 -05:00
|
|
|
* @param case_sensitive Whether case is significant.
|
2014-11-24 14:22:44 -05:00
|
|
|
*
|
|
|
|
* Tokenize the string on spaces.
|
|
|
|
*
|
2017-10-01 04:51:02 -04:00
|
|
|
* @returns a newly allocated array of matching objects
|
2014-11-24 14:22:44 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
rofi_int_matcher **helper_tokenize(const char *input, int case_sensitive);
|
2016-10-14 02:47:21 -04:00
|
|
|
|
|
|
|
/**
|
2016-10-14 10:46:54 -04:00
|
|
|
* @param tokens Array of regex objects
|
2016-10-14 02:47:21 -04:00
|
|
|
*
|
2017-10-01 04:51:02 -04:00
|
|
|
* Frees the array of matching objects.
|
2016-10-14 02:47:21 -04:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
void helper_tokenize_free(rofi_int_matcher **tokens);
|
2014-11-15 10:26:55 -05:00
|
|
|
|
2014-11-24 14:22:44 -05:00
|
|
|
/**
|
|
|
|
* @param key The key to search for
|
|
|
|
* @param val Pointer to the string to set to the key value (if found)
|
|
|
|
*
|
|
|
|
* Parse command line argument 'key' to character.
|
|
|
|
* This one supports character escaping.
|
|
|
|
*
|
2014-11-24 14:35:28 -05:00
|
|
|
* @returns TRUE if key was found and val was set.
|
2014-11-24 14:22:44 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int find_arg_char(const char *const key, char *val);
|
2014-11-15 10:26:55 -05:00
|
|
|
|
2014-11-24 14:22:44 -05:00
|
|
|
/**
|
|
|
|
* @param key The key to search for
|
|
|
|
* @param val Pointer to the string to set to the key value (if found)
|
|
|
|
*
|
|
|
|
* Parse command line argument 'key' to unsigned int.
|
|
|
|
*
|
2014-11-24 14:35:28 -05:00
|
|
|
* @returns TRUE if key was found and val was set.
|
2014-11-24 14:22:44 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int find_arg_uint(const char *const key, unsigned int *val);
|
2014-11-15 10:26:55 -05:00
|
|
|
|
2014-11-24 14:22:44 -05:00
|
|
|
/**
|
|
|
|
* @param key The key to search for
|
|
|
|
* @param val Pointer to the string to set to the key value (if found)
|
|
|
|
*
|
|
|
|
* Parse command line argument 'key' to int.
|
|
|
|
*
|
2014-11-24 14:35:28 -05:00
|
|
|
* @returns TRUE if key was found and val was set.
|
2014-11-24 14:22:44 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int find_arg_int(const char *const key, int *val);
|
2014-11-15 10:26:55 -05:00
|
|
|
|
2014-11-24 14:22:44 -05:00
|
|
|
/**
|
|
|
|
* @param key The key to search for
|
|
|
|
* @param val Pointer to the string to set to the key value (if found)
|
|
|
|
*
|
|
|
|
* Parse command line argument 'key' to string.
|
|
|
|
*
|
2014-11-24 14:35:28 -05:00
|
|
|
* @returns TRUE if key was found and val was set.
|
2014-11-24 14:22:44 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int find_arg_str(const char *const key, char **val);
|
2014-11-15 10:26:55 -05:00
|
|
|
|
2017-01-08 10:09:24 -05:00
|
|
|
/**
|
|
|
|
* @param key The key to search for
|
|
|
|
*
|
|
|
|
* Parse all command line options 'key' to string vector.
|
|
|
|
*
|
|
|
|
* @returns str vector. user should free array.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
const char **find_arg_strv(const char *const key);
|
2014-11-24 14:22:44 -05:00
|
|
|
/**
|
|
|
|
* @param key The key to search for
|
|
|
|
*
|
|
|
|
* Check if key is passed as argument.
|
|
|
|
*
|
2014-11-24 14:35:28 -05:00
|
|
|
* @returns return position of string or -1 if not found.
|
2014-11-24 14:22:44 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int find_arg(const char *const key);
|
2014-11-15 10:26:55 -05:00
|
|
|
|
2014-12-02 03:09:20 -05:00
|
|
|
/**
|
|
|
|
* @param tokens List of (input) tokens to match.
|
|
|
|
* @param input The entry to match against.
|
|
|
|
*
|
|
|
|
* Tokenized match, match tokens to line input.
|
|
|
|
*
|
2016-07-29 02:32:34 -04:00
|
|
|
* @returns TRUE when matches, FALSE otherwise
|
2014-12-02 03:09:20 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int helper_token_match(rofi_int_matcher *const *tokens, const char *input);
|
2015-01-05 15:53:50 -05:00
|
|
|
/**
|
|
|
|
* @param cmd The command to execute.
|
|
|
|
*
|
2021-08-17 19:16:45 -04:00
|
|
|
* Execute cmd using config.run_command and outputs the result (stdout) to the
|
|
|
|
* opened file descriptor.
|
2015-01-05 15:53:50 -05:00
|
|
|
*
|
|
|
|
* @returns a valid file descriptor on success, or -1 on failure.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int execute_generator(const char *cmd) __attribute__((nonnull));
|
2015-02-03 02:00:33 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param pidfile The pidfile to create.
|
|
|
|
*
|
2015-07-30 02:57:09 -04:00
|
|
|
* returns file descriptor (or -1 when failed)
|
2015-02-03 02:00:33 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int create_pid_file(const char *pidfile);
|
2015-07-30 02:57:09 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove pid file
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
void remove_pid_file(int fd);
|
2015-02-03 02:21:59 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Do some input validation, especially the first few could break things.
|
|
|
|
* It is good to catch them beforehand.
|
|
|
|
*
|
2021-08-17 19:16:45 -04:00
|
|
|
* This functions exits the program with 1 when it finds an invalid
|
|
|
|
* configuration.
|
2015-02-03 02:21:59 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int config_sanity_check(void);
|
2015-03-17 15:05:37 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param arg string to parse.
|
|
|
|
*
|
|
|
|
* Parses a string into an character.
|
|
|
|
*
|
|
|
|
* @returns character.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
char helper_parse_char(const char *arg);
|
2015-03-17 15:05:37 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param argc number of arguments.
|
|
|
|
* @param argv Array of arguments.
|
|
|
|
*
|
|
|
|
* Set the application arguments.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
void cmd_set_arguments(int argc, char **argv);
|
2015-10-01 07:16:41 -04:00
|
|
|
|
2015-12-02 11:56:25 -05:00
|
|
|
/**
|
|
|
|
* @param input The path to expand
|
|
|
|
*
|
|
|
|
* Expand path, both `~` and `~<user>`
|
|
|
|
*
|
|
|
|
* @returns path
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
char *rofi_expand_path(const char *input);
|
2016-10-14 02:47:21 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param needle The string to find match weight off
|
2017-01-11 03:42:37 -05:00
|
|
|
* @param needlelen The length of the needle
|
2016-10-14 02:47:21 -04:00
|
|
|
* @param haystack The string to match against
|
2017-01-11 03:42:37 -05:00
|
|
|
* @param haystacklen The length of the haystack
|
2016-10-14 02:47:21 -04:00
|
|
|
*
|
|
|
|
* UTF-8 aware levenshtein distance calculation
|
|
|
|
*
|
|
|
|
* @returns the levenshtein distance between needle and haystack
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
unsigned int levenshtein(const char *needle, const glong needlelen,
|
|
|
|
const char *haystack, const glong haystacklen);
|
2016-01-07 02:54:24 -05:00
|
|
|
|
2016-04-10 06:05:34 -04:00
|
|
|
/**
|
2016-10-14 02:47:21 -04:00
|
|
|
* @param data the unvalidated character array holding possible UTF-8 data
|
|
|
|
* @param length the length of the data array
|
|
|
|
*
|
2021-08-17 19:16:45 -04:00
|
|
|
* Convert string to valid utf-8, replacing invalid parts with replacement
|
|
|
|
* character.
|
2016-10-14 02:47:21 -04:00
|
|
|
*
|
|
|
|
* @returns the converted UTF-8 string
|
2016-04-10 06:05:34 -04:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
char *rofi_force_utf8(const gchar *data, ssize_t length);
|
2016-10-14 02:47:21 -04:00
|
|
|
|
|
|
|
/**
|
2016-11-15 15:54:31 -05:00
|
|
|
* @param input the char array holding latin text
|
2016-10-14 02:47:21 -04:00
|
|
|
* @param length the length of the data array
|
|
|
|
*
|
|
|
|
* Converts latin to UTF-8.
|
|
|
|
*
|
|
|
|
* @return the UTF-8 representation of data
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
char *rofi_latin_to_utf8_strdup(const char *input, gssize length);
|
2016-10-14 02:47:21 -04:00
|
|
|
|
2017-04-12 12:19:58 -04:00
|
|
|
/**
|
2017-06-09 03:18:17 -04:00
|
|
|
* @param text the string to escape
|
2017-04-12 12:19:58 -04:00
|
|
|
*
|
2020-10-12 15:39:36 -04:00
|
|
|
* Escape XML markup from the string. text is freed.
|
2017-04-12 12:19:58 -04:00
|
|
|
*
|
|
|
|
* @return the escaped string
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
gchar *rofi_escape_markup(gchar *text);
|
2017-04-12 12:19:58 -04:00
|
|
|
|
2017-01-11 03:20:19 -05:00
|
|
|
/**
|
|
|
|
* @param pattern The user input to match against.
|
|
|
|
* @param plen Pattern length.
|
|
|
|
* @param str The input to match against pattern.
|
2017-11-23 12:41:52 -05:00
|
|
|
* @param slen Length of str.
|
2017-01-11 03:20:19 -05:00
|
|
|
*
|
2021-08-17 19:16:45 -04:00
|
|
|
* rofi_scorer_fuzzy_evaluate implements a global sequence alignment algorithm
|
|
|
|
* to find the maximum accumulated score by aligning `pattern` to `str`. It
|
|
|
|
* applies when `pattern` is a subsequence of `str`.
|
2021-05-05 16:39:03 -04:00
|
|
|
*
|
|
|
|
* Scoring criteria
|
2021-08-17 19:16:45 -04:00
|
|
|
* - Prefer matches at the start of a word, or the start of subwords in
|
|
|
|
* CamelCase/camelCase/camel123 words. See WORD_START_SCORE/CAMEL_SCORE.
|
2021-05-05 16:39:03 -04:00
|
|
|
* - Non-word characters matter. See NON_WORD_SCORE.
|
2021-08-17 19:16:45 -04:00
|
|
|
* - The first characters of words of `pattern` receive bonus because they
|
|
|
|
* usually have more significance than the rest. See
|
|
|
|
* PATTERN_START_MULTIPLIER/PATTERN_NON_START_MULTIPLIER.
|
|
|
|
* - Superfluous characters in `str` will reduce the score (gap penalty). See
|
|
|
|
* GAP_SCORE.
|
|
|
|
* - Prefer early occurrence of the first character. See
|
|
|
|
* LEADING_GAP_SCORE/GAP_SCORE.
|
2021-05-05 16:39:03 -04:00
|
|
|
*
|
|
|
|
* The recurrence of the dynamic programming:
|
|
|
|
* dp[i][j]: maximum accumulated score by aligning pattern[0..i] to str[0..j]
|
|
|
|
* dp[0][j] = leading_gap_penalty(0, j) + score[j]
|
2021-08-17 19:16:45 -04:00
|
|
|
* dp[i][j] = max(dp[i-1][j-1] + CONSECUTIVE_SCORE, max(dp[i-1][k] +
|
|
|
|
* gap_penalty(k+1, j) + score[j] : k < j))
|
2021-05-05 16:39:03 -04:00
|
|
|
*
|
2021-08-17 19:16:45 -04:00
|
|
|
* The first dimension can be suppressed since we do not need a matching
|
|
|
|
* scheme, which reduces the space complexity from O(N*M) to O(M)
|
2017-01-11 03:20:19 -05:00
|
|
|
*
|
|
|
|
* @returns the sorting weight.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int rofi_scorer_fuzzy_evaluate(const char *pattern, glong plen, const char *str,
|
|
|
|
glong slen);
|
2016-01-07 02:54:24 -05:00
|
|
|
/*@}*/
|
2017-01-26 13:46:46 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param a UTF-8 string to compare
|
|
|
|
* @param b UTF-8 string to compare
|
|
|
|
* @param n Maximum number of characters to compare
|
|
|
|
*
|
|
|
|
* Compares the `G_NORMALIZE_ALL_COMPOSE` forms of the two strings.
|
|
|
|
*
|
2021-08-17 19:16:45 -04:00
|
|
|
* @returns less than, equal to, or greater than zero if the first `n`
|
|
|
|
* characters (not bytes) of `a` are found, respectively, to be less than, to
|
|
|
|
* match, or be greater than the first `n` characters (not bytes) of `b`.
|
2017-01-26 13:46:46 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
int utf8_strncmp(const char *a, const char *b, size_t n)
|
|
|
|
__attribute__((nonnull(1, 2)));
|
2017-02-03 03:52:56 -05:00
|
|
|
|
2017-06-02 08:54:21 -04:00
|
|
|
/**
|
|
|
|
* The startup notification context of the application to launch
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
typedef struct {
|
|
|
|
/** The name of the application */
|
|
|
|
const gchar *name;
|
|
|
|
/** The binary name of the application */
|
|
|
|
const gchar *binary;
|
|
|
|
/** The description of the launch */
|
|
|
|
const gchar *description;
|
|
|
|
/** The icon name of the application */
|
|
|
|
const gchar *icon;
|
|
|
|
/** The application id (desktop file with the .desktop suffix) */
|
|
|
|
const gchar *app_id;
|
|
|
|
/** The window manager class of the application */
|
|
|
|
const gchar *wmclass;
|
|
|
|
/** The command we run */
|
|
|
|
const gchar *command;
|
2017-06-02 08:54:21 -04:00
|
|
|
} RofiHelperExecuteContext;
|
|
|
|
|
2016-03-11 04:43:32 -05:00
|
|
|
/**
|
2017-06-03 10:27:11 -04:00
|
|
|
* @param wd The working directory.
|
2016-03-11 04:43:32 -05:00
|
|
|
* @param args The arguments of the command to exec.
|
|
|
|
* @param error_precmd Prefix to error message command.
|
|
|
|
* @param error_cmd Error message command
|
2017-06-02 08:54:21 -04:00
|
|
|
* @param context The startup notification context, if any
|
2016-03-11 04:43:32 -05:00
|
|
|
*
|
|
|
|
* Executes the command
|
|
|
|
*
|
|
|
|
* @returns TRUE when successful, FALSE when failed.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
gboolean helper_execute(const char *wd, char **args, const char *error_precmd,
|
|
|
|
const char *error_cmd,
|
|
|
|
RofiHelperExecuteContext *context);
|
2016-03-11 04:43:32 -05:00
|
|
|
|
2017-02-03 03:52:56 -05:00
|
|
|
/**
|
2017-02-17 08:06:31 -05:00
|
|
|
* @param wd The work directory (optional)
|
|
|
|
* @param cmd The cmd to execute
|
|
|
|
* @param run_in_term Indicate if command should be run in a terminal
|
2017-06-02 08:54:21 -04:00
|
|
|
* @param context The startup notification context, if any
|
2017-02-17 08:06:31 -05:00
|
|
|
*
|
|
|
|
* Execute command.
|
2020-10-12 15:39:36 -04:00
|
|
|
* If needed members of context are NULL, they will be filled.
|
2017-02-03 03:52:56 -05:00
|
|
|
*
|
2017-02-17 08:06:31 -05:00
|
|
|
* @returns FALSE On failure, TRUE on success
|
2017-02-03 03:52:56 -05:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
gboolean helper_execute_command(const char *wd, const char *cmd,
|
|
|
|
gboolean run_in_term,
|
|
|
|
RofiHelperExecuteContext *context);
|
2017-06-01 07:36:11 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param file The file path
|
|
|
|
* @param height The wanted height
|
|
|
|
* Gets a surface from an svg path
|
|
|
|
*
|
|
|
|
* @returns a cairo surface from an svg path
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
cairo_surface_t *cairo_image_surface_create_from_svg(const gchar *file,
|
|
|
|
int height);
|
2017-06-01 07:36:11 -04:00
|
|
|
|
2017-09-27 14:00:33 -04:00
|
|
|
/**
|
|
|
|
* Ranges.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param input String to parse
|
|
|
|
* @param list List of ranges
|
|
|
|
* @param length Length of list.
|
|
|
|
*
|
|
|
|
* ranges
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
void parse_ranges(char *input, rofi_range_pair **list, unsigned int *length);
|
2017-09-27 14:00:33 -04:00
|
|
|
|
|
|
|
/**
|
2021-05-05 16:39:03 -04:00
|
|
|
* @param format The format string used. See below for possible syntax.
|
|
|
|
* @param string The selected entry.
|
|
|
|
* @param selected_line The selected line index.
|
|
|
|
* @param filter The entered filter.
|
|
|
|
*
|
|
|
|
* Function that outputs the selected line in the user-specified format.
|
|
|
|
* Currently the following formats are supported:
|
|
|
|
* * i: Print the index (0-(N-1))
|
|
|
|
* * d: Print the index (1-N)
|
|
|
|
* * s: Print input string.
|
|
|
|
* * q: Print quoted input string.
|
|
|
|
* * f: Print the entered filter.
|
|
|
|
* * F: Print the entered filter, quoted
|
2020-10-12 15:39:36 -04:00
|
|
|
*
|
2021-08-17 19:16:45 -04:00
|
|
|
* This functions outputs the formatted string to stdout, appends a newline (\n)
|
|
|
|
* character and calls flush on the file descriptor.
|
2017-09-27 14:00:33 -04:00
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
void rofi_output_formatted_line(const char *format, const char *string,
|
|
|
|
int selected_line, const char *filter);
|
2018-10-16 15:01:45 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string The string with elements to be replaced
|
2021-08-17 19:16:45 -04:00
|
|
|
* @param ... Set of {key}, value that will be replaced, terminated by a
|
|
|
|
* NULL
|
2018-10-16 15:01:45 -04:00
|
|
|
*
|
2021-08-17 19:16:45 -04:00
|
|
|
* Items {key} are replaced by the value if '{key}' is passed as key/value pair,
|
|
|
|
* otherwise removed from string. If the {key} is in between [] all the text
|
|
|
|
* between [] are removed if {key} is not found. Otherwise key is replaced and [
|
|
|
|
* & ] removed.
|
2018-10-16 15:01:45 -04:00
|
|
|
*
|
|
|
|
* This allows for optional replacement, f.e. '{ssh-client} [-t {title}] -e
|
|
|
|
* "{cmd}"' the '-t {title}' is only there if {title} is set.
|
|
|
|
*
|
|
|
|
* @returns a new string with the keys replaced.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
char *helper_string_replace_if_exists(char *string, ...);
|
2021-08-17 05:05:03 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param file File name passed to option.
|
|
|
|
* @param ext File extension passed to option.
|
|
|
|
*
|
|
|
|
* @returns path to theme or copy of filename if not found.
|
|
|
|
*/
|
2021-08-17 19:16:45 -04:00
|
|
|
char *helper_get_theme_path(const char *file, const char *ext);
|
2021-08-17 05:05:03 -04:00
|
|
|
|
2017-11-21 10:04:59 -05:00
|
|
|
G_END_DECLS
|
2020-10-12 15:39:36 -04:00
|
|
|
|
|
|
|
/**@} */
|
2015-07-27 04:17:12 -04:00
|
|
|
#endif // ROFI_HELPER_H
|