2015-07-27 08:17:12 +00:00
|
|
|
#ifndef ROFI_HISTORY_H
|
|
|
|
#define ROFI_HISTORY_H
|
2014-05-13 08:45:59 +00:00
|
|
|
|
2016-01-05 20:31:17 +00:00
|
|
|
/**
|
|
|
|
* @defgroup HISTORY History
|
2016-01-07 07:54:24 +00:00
|
|
|
* @ingroup HELPERS
|
2016-01-05 20:31:17 +00: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 06:32:34 +00:00
|
|
|
* * #Settings::disable_history
|
2016-01-05 20:31:17 +00:00
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2014-05-13 08:45:59 +00: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.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-02 10:29:28 +00:00
|
|
|
void history_set ( const char *filename, const char *entry ) __attribute__( ( nonnull ) );
|
2014-05-13 08:45:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param filename The filename of the history cache.
|
2014-05-22 08:03:36 +00:00
|
|
|
* @param entry The entry to remove
|
2014-05-13 08:45:59 +00:00
|
|
|
*
|
|
|
|
* Removes the entry from the history.
|
|
|
|
*/
|
2015-09-02 10:29:28 +00:00
|
|
|
void history_remove ( const char *filename, const char *entry ) __attribute__( ( nonnull ) );
|
2014-05-13 08:45:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param filename The filename of the history cache.
|
2014-05-22 08:03:36 +00:00
|
|
|
* @param length The length of the returned list.
|
2014-05-13 08:45:59 +00:00
|
|
|
*
|
|
|
|
* Gets the entries in the list (in order of usage)
|
|
|
|
* @returns a list of entries length long. (and NULL terminated).
|
|
|
|
*/
|
2015-09-02 10:29:28 +00:00
|
|
|
char ** history_get_list ( const char *filename, unsigned int * length ) __attribute__( ( nonnull ) );
|
2014-05-13 08:45:59 +00:00
|
|
|
|
2016-01-05 20:31:17 +00:00
|
|
|
/*@}*/
|
|
|
|
#endif // ROFI_HISTORY_H
|