spiegel-keyman/linux/ibus-keyman/src/KeymanSystemServiceClient.h
Eberhard Beilharz ec2373acd5
fix(linux): start system service when switching keyboards
This change fixes #13171 where we failed to output after the first keypress
because the keyman system service had to be started. This change introduces
a new method `Ping` that we call to force keyman-system-service to be
started.

Fixes: #13171
2025-02-10 16:30:20 +01:00

19 lines
372 B
C

#ifndef __KEYMANSYSTEMSERVICECLIENT_H__
#define __KEYMANSYSTEMSERVICECLIENT_H__
#include <gio/gio.h>
#ifdef __cplusplus
extern "C" {
#endif
void set_capslock_indicator(guint32 capsLockState);
gint32 get_capslock_indicator();
void call_ordered_output_sentinel();
void ping_keyman_system_service();
#ifdef __cplusplus
}
#endif
#endif // __KEYMANSYSTEMSERVICECLIENT_H__