1999-09-27 18:44:28 +00:00
|
|
|
/* This file is part of -*- C++ -*-
|
1999-11-15 12:01:38 +00:00
|
|
|
* ======================================================
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2000-03-09 03:36:48 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-2000 The LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
1999-11-15 12:01:38 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/* 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. */
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
// Initialize the compose key handling
|
1999-11-22 16:19:48 +00:00
|
|
|
extern void InitLyXLookup(Display *, Window ) ;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Read a keysym and/or a string (like XLookupString)
|
1999-11-22 16:19:48 +00:00
|
|
|
extern int LyXLookupString(XEvent * event,
|
|
|
|
char * buffer_return, int bytes_buffer,
|
|
|
|
KeySym * keysym_return);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
// Call this when you destroy your window
|
|
|
|
extern void CloseLyXLookup();
|