xml-copy-editor-code/src/wrapaspell.h

65 lines
1.7 KiB
C
Raw Normal View History

2008-07-02 01:28:38 +02:00
/*
* Copyright 2005-2007 Gerald Schmidt.
*
* This file is part of Xml Copy Editor.
*
* Xml Copy Editor is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* Xml Copy Editor is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Xml Copy Editor; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef WRAP_ASPELL_H
#define WRAP_ASPELL_H
#include <string>
#include <vector>
#include "contexthandler.h"
2009-10-05 00:54:47 +02:00
#if !defined(USE_ENCHANT)
2008-07-02 01:28:38 +02:00
#include "aspell.h"
2009-10-05 00:54:47 +02:00
#else
namespace enchant
{
class Broker;
class Dict;
}
#endif
2008-07-02 01:28:38 +02:00
class WrapAspell
{
public:
2009-01-17 23:52:54 +01:00
WrapAspell (
2009-02-13 17:05:23 +01:00
std::string lang// = "en_US",
2009-10-05 00:54:47 +02:00
#if !defined(USE_ENCHANT) && defined(__WXMSW__)
2009-02-13 17:05:23 +01:00
, const std::string& aspellDataPathParameter,
2009-01-17 23:52:54 +01:00
const std::string& aspellDictPath
#endif
);
2008-07-02 01:28:38 +02:00
~WrapAspell();
2009-10-05 00:54:47 +02:00
inline bool checkWord ( const std::string &s );
2008-07-02 01:28:38 +02:00
void checkString (
std::string &s,
std::vector<ContextMatch> &v,
int contextRange );
std::string getSuggestion ( std::string &s );
2009-01-17 23:52:54 +01:00
std::string getVersion();
2008-07-02 01:28:38 +02:00
private:
2009-10-05 00:54:47 +02:00
#ifdef USE_ENCHANT
enchant::Broker *spell_broker;
enchant::Dict *spell_checker;
#else
2008-07-02 01:28:38 +02:00
AspellConfig *spell_config;
AspellSpeller *spell_checker;
2009-10-05 00:54:47 +02:00
#endif
bool checkWord ( const char *s, size_t len );
2008-07-02 01:28:38 +02:00
};
#endif