mirror of
https://github.com/neovim/neovim.git
synced 2025-09-21 18:58:18 +00:00
83 lines
2.4 KiB
C
83 lines
2.4 KiB
C
#ifndef NVIM_API_UI_EVENTS_IN_H
|
|
#define NVIM_API_UI_EVENTS_IN_H
|
|
|
|
// This file is not compiled, just parsed for definitons
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# error "don't include this file, include nvim/ui.h"
|
|
#endif
|
|
|
|
#include "nvim/api/private/defs.h"
|
|
#include "nvim/func_attr.h"
|
|
#include "nvim/ui.h"
|
|
|
|
void resize(Integer rows, Integer columns)
|
|
FUNC_API_SINCE(3);
|
|
void clear(void)
|
|
FUNC_API_SINCE(3);
|
|
void eol_clear(void)
|
|
FUNC_API_SINCE(3);
|
|
void cursor_goto(Integer row, Integer col)
|
|
FUNC_API_SINCE(3);
|
|
void mode_info_set(Boolean enabled, Array cursor_styles)
|
|
FUNC_API_SINCE(3);
|
|
void update_menu(void)
|
|
FUNC_API_SINCE(3);
|
|
void busy_start(void)
|
|
FUNC_API_SINCE(3);
|
|
void busy_stop(void)
|
|
FUNC_API_SINCE(3);
|
|
void mouse_on(void)
|
|
FUNC_API_SINCE(3);
|
|
void mouse_off(void)
|
|
FUNC_API_SINCE(3);
|
|
void mode_change(String mode, Integer mode_idx)
|
|
FUNC_API_SINCE(3);
|
|
void set_scroll_region(Integer top, Integer bot, Integer left, Integer right)
|
|
FUNC_API_SINCE(3);
|
|
void scroll(Integer count)
|
|
FUNC_API_SINCE(3);
|
|
void highlight_set(HlAttrs attrs)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_IMPL FUNC_API_BRIDGE_IMPL;
|
|
void put(String str)
|
|
FUNC_API_SINCE(3);
|
|
void bell(void)
|
|
FUNC_API_SINCE(3);
|
|
void visual_bell(void)
|
|
FUNC_API_SINCE(3);
|
|
void flush(void)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_IMPL;
|
|
void update_fg(Integer fg)
|
|
FUNC_API_SINCE(3);
|
|
void update_bg(Integer bg)
|
|
FUNC_API_SINCE(3);
|
|
void update_sp(Integer sp)
|
|
FUNC_API_SINCE(3);
|
|
void suspend(void)
|
|
FUNC_API_SINCE(3) FUNC_API_BRIDGE_IMPL;
|
|
void set_title(String title)
|
|
FUNC_API_SINCE(3);
|
|
void set_icon(String icon)
|
|
FUNC_API_SINCE(3);
|
|
|
|
void popupmenu_show(Array items, Integer selected, Integer row, Integer col)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
|
void popupmenu_hide(void)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
|
void popupmenu_select(Integer selected)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
|
void tabline_update(Tabpage current, Array tabs)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
|
|
|
void cmdline_enter(void)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
|
void cmdline_show(Array content, Integer pos, String firstc, String prompt)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
|
void cmdline_pos(Integer pos)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
|
void cmdline_char(String c, Integer shift)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
|
void cmdline_hide(void)
|
|
FUNC_API_SINCE(3) FUNC_API_REMOTE_ONLY;
|
|
|
|
#endif // NVIM_API_UI_EVENTS_IN_H
|