aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui.h
blob: f1ea0716e6cb0a198c798c8c560bfe32999834ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef NVIM_UI_H
#define NVIM_UI_H

#include <stddef.h>
#include <stdbool.h>
#include <stdint.h>

#include "api/private/defs.h"
#include "nvim/buffer_defs.h"

typedef enum {
  kUICmdline = 0,
  kUIPopupmenu,
  kUITabline,
  kUIWildmenu,
} UIWidget;
#define UI_WIDGETS (kUIWildmenu + 1)

typedef struct {
  bool bold, underline, undercurl, italic, reverse;
  int foreground, background, special;
} HlAttrs;

#define HLATTRS_INIT \
  ((HlAttrs){ false, false, false, false, false, -1, -1, -1 })

typedef struct ui_t UI;

struct ui_t {
  bool rgb;
  bool ui_ext[UI_WIDGETS];  ///< Externalized widgets
  int width, height;
  void *data;

#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "ui_events.generated.h"
#endif

  void (*event)(UI *ui, char *name, Array args, bool *args_consumed);
  void (*stop)(UI *ui);
};

#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "ui.h.generated.h"
# include "ui_events_call.h.generated.h"
#endif
#endif  // NVIM_UI_H