History Selection Dialog. More...
#include "config.h"
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include "mutt/lib.h"
#include "core/lib.h"
#include "gui/lib.h"
#include "lib.h"
#include "menu/lib.h"
#include "format_flags.h"
#include "functions.h"
#include "keymap.h"
#include "mutt_logging.h"
#include "muttlib.h"
#include "opcodes.h"
Go to the source code of this file.
Functions | |
static const char * | history_format_str (char *buf, size_t buflen, size_t col, int cols, char op, const char *src, const char *prec, const char *if_str, const char *else_str, intptr_t data, MuttFormatFlags flags) |
Format a string for the history list - Implements format_t -. More... | |
static void | history_make_entry (struct Menu *menu, char *buf, size_t buflen, int line) |
Format a menu item for the history list - Implements Menu::make_entry() -. More... | |
void | dlg_select_history (char *buf, size_t buflen, char **matches, int match_count) |
Select an item from a history list. More... | |
Variables | |
static const struct Mapping | HistoryHelp [] |
Help Bar for the History Selection dialog. More... | |
History Selection Dialog.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file dlg_history.c.
void dlg_select_history | ( | char * | buf, |
size_t | buflen, | ||
char ** | matches, | ||
int | match_count | ||
) |
Select an item from a history list.
[in] | buf | Buffer in which to save string |
[in] | buflen | Buffer length |
[out] | matches | Items to choose from |
[in] | match_count | Number of items |
Definition at line 127 of file dlg_history.c.