mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-15 08:21:03 -04:00
ime: make IME compile-time optional
This commit is contained in:
parent
8c3d48c5cd
commit
05083110c3
9 changed files with 103 additions and 29 deletions
10
ime.h
10
ime.h
|
|
@ -1,5 +1,15 @@
|
|||
#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;
|
||||
|
||||
void ime_reset_preedit(struct seat *seat);
|
||||
void ime_reset_commit(struct seat *seat);
|
||||
void ime_reset(struct seat *seat);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue