File: ime.h

package info (click to toggle)
foot 1.26.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,692 kB
  • sloc: ansic: 41,627; python: 499; sh: 181; makefile: 18
file content (19 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#if defined(FOOT_IME_ENABLED) && FOOT_IME_ENABLED

#include "text-input-unstable-v3.h"

extern const struct zwp_text_input_v3_listener text_input_listener;

#endif /* FOOT_IME_ENABLED */

struct seat;
struct terminal;

void ime_enable(struct seat *seat);
void ime_disable(struct seat *seat);
void ime_update_cursor_rect(struct seat *seat);

void ime_reset_pending(struct seat *seat);
void ime_reset_preedit(struct seat *seat);