2017-04-15 06:32:05 -04:00
|
|
|
/*
|
|
|
|
* rofi
|
|
|
|
*
|
|
|
|
* MIT/X11 License
|
2022-02-07 17:16:46 -05:00
|
|
|
* Copyright © 2013-2022 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_HISTORY_H
|
|
|
|
#define ROFI_HISTORY_H
|
2014-05-13 04:45:59 -04:00
|
|
|
|
2016-01-05 15:31:17 -05:00
|
|
|
/**
|
|
|
|
* @defgroup HISTORY History
|
2016-01-07 02:54:24 -05:00
|
|
|
* @ingroup HELPERS
|
2016-01-05 15:31:17 -05:00
|
|
|
*
|
|
|
|
* Implements a very simple history module that can be used by a #Mode.
|
|
|
|
*
|
|
|
|
* This uses the following options from the #config object:
|
2016-07-29 02:32:34 -04:00
|
|
|
* * #Settings::disable_history
|
2018-12-30 18:35:00 -05:00
|
|
|
* * #Settings::ignored_prefixes
|
2016-01-05 15:31:17 -05:00
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2014-05-13 04:45:59 -04:00
|
|
|
/**
|
|
|
|
* @param filename The filename of the history cache.
|
|
|
|
* @param entry The entry to add/increment
|
|
|
|
*
|
|
|
|
* Sets the entry in the history, if it exists its use-count is incremented.
|
|
|
|
*
|
|
|
|
*/
|
2021-08-19 07:34:01 -04:00
|
|
|
void history_set(const char *filename, const char *entry)
|
|
|
|
__attribute__((nonnull));
|
2014-05-13 04:45:59 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param filename The filename of the history cache.
|
2014-05-22 04:03:36 -04:00
|
|
|
* @param entry The entry to remove
|
2014-05-13 04:45:59 -04:00
|
|
|
*
|
|
|
|
* Removes the entry from the history.
|
|
|
|
*/
|
2021-08-19 07:34:01 -04:00
|
|
|
void history_remove(const char *filename, const char *entry)
|
|
|
|
__attribute__((nonnull));
|
2014-05-13 04:45:59 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param filename The filename of the history cache.
|
2014-05-22 04:03:36 -04:00
|
|
|
* @param length The length of the returned list.
|
2014-05-13 04:45:59 -04:00
|
|
|
*
|
|
|
|
* Gets the entries in the list (in order of usage)
|
|
|
|
* @returns a list of entries length long. (and NULL terminated).
|
|
|
|
*/
|
2021-08-19 07:34:01 -04:00
|
|
|
char **history_get_list(const char *filename, unsigned int *length)
|
|
|
|
__attribute__((nonnull));
|
2014-05-13 04:45:59 -04:00
|
|
|
|
2020-10-12 15:39:36 -04:00
|
|
|
/**@}*/
|
2016-01-05 15:31:17 -05:00
|
|
|
#endif // ROFI_HISTORY_H
|