1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
2000-07-24 13:53:19 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-07-24 13:53:19 +00:00
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
1999-11-22 16:19:48 +00:00
|
|
|
#ifndef SPELLCHECKER_H
|
|
|
|
#define SPELLCHECKER_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/* These functions are defined in lyx_cb.C */
|
|
|
|
|
2000-02-22 00:36:17 +00:00
|
|
|
class BufferView;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/** This function has to be implemented by the spell checker.
|
1999-11-22 16:19:48 +00:00
|
|
|
It will show the spellcheker form*/
|
2000-02-22 00:36:17 +00:00
|
|
|
void ShowSpellChecker(BufferView *);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#endif
|