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

52 lines
1.5 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"
#include "aspell.h"
class WrapAspell
{
public:
2009-01-17 23:52:54 +01:00
WrapAspell (
std::string lang,// = "en_US",
#ifdef __WXMSW__
const std::string& aspellDataPathParameter,
const std::string& aspellDictPath
#endif
);
2008-07-02 01:28:38 +02:00
~WrapAspell();
inline bool checkWord ( std::string &s );
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:
AspellConfig *spell_config;
AspellSpeller *spell_checker;
bool checkWord ( char *s, size_t len );
};
#endif