mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-10 02:54:09 +00:00
1eb8155fa0
Licence details can be found in the file COPYING. and thank God for sed. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5211 a592a061-630c-0410-9148-cb99ea01b6c8
32 lines
859 B
C
32 lines
859 B
C
/**
|
|
* \file lyxlookup.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author unknown
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
/* This header file defines wrappers around the X input method related
|
|
functions. This should probably be moved into LyXView (to have
|
|
different input methods for different frames, but for now we can
|
|
keep it as it is. */
|
|
#ifndef LYXLOOKUP_H
|
|
#define LYXLOOKUP_H
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
/// Initialize the compose key handling
|
|
extern void InitLyXLookup(Display *, Window);
|
|
|
|
/// Read a keysym and/or a string (like XLookupString)
|
|
extern int LyXLookupString(XEvent * event,
|
|
char * buffer_return, int bytes_buffer,
|
|
KeySym * keysym_return);
|
|
|
|
/// Call this when you destroy your window
|
|
extern void CloseLyXLookup();
|
|
|
|
#endif
|