lyx_mirror/src/lyxlookup.h
Lars Gullik Bjønnes 85f8bf7445 comment out the fax stuff, diable LyXLookup completely when xforms 0.89, fix some accent issues
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1181 a592a061-630c-0410-9148-cb99ea01b6c8
2000-11-02 04:48:34 +00:00

32 lines
985 B
C++

/* This file is part of -*- C++ -*-
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 1995-2000 The LyX Team.
*
* ====================================================== */
/* 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 <config.h>
#include FORMS_H_LOCATION
#if FL_REVISION < 89
//#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