2021-01-31 11:12:07 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <xkbcommon/xkbcommon.h>
|
|
|
|
|
#include <tllist.h>
|
|
|
|
|
|
|
|
|
|
#include "terminal.h"
|
|
|
|
|
|
|
|
|
|
static inline bool urls_mode_is_active(const struct terminal *term)
|
|
|
|
|
{
|
|
|
|
|
return tll_length(term->urls) > 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-06 20:01:52 +01:00
|
|
|
void urls_collect(
|
|
|
|
|
const struct terminal *term, enum url_action action, url_list_t *urls);
|
|
|
|
|
void urls_assign_key_combos(url_list_t *urls);
|
|
|
|
|
|
|
|
|
|
void urls_render(struct terminal *term);
|
2021-01-31 11:12:07 +01:00
|
|
|
void urls_reset(struct terminal *term);
|
|
|
|
|
|
|
|
|
|
void urls_input(struct seat *seat, struct terminal *term, uint32_t key,
|
|
|
|
|
xkb_keysym_t sym, xkb_mod_mask_t mods, uint32_t serial);
|