blob: 7587c99ddc97837da54c432fac2ad2fb8fb00d95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* Copyright (c) 2013 Tobias Markmann
* Licensed under the Simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
/*
* Copyright (c) 2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <vector>
#include <boost/tuple/tuple.hpp>
#include <SwifTools/SpellChecker.h>
namespace Swift {
class MacOSXChecker : public SpellChecker {
public:
MacOSXChecker();
virtual ~MacOSXChecker();
virtual bool isAutomaticallyDetectingLanguage();
virtual void setActiveLanguage(const std::string& language);
virtual std::string activeLanguage() const;
virtual std::vector<std::string> supportedLanguages() const;
virtual bool isCorrect(const std::string& word);
virtual void getSuggestions(const std::string& word, std::vector<std::string>& list);
virtual void checkFragment(const std::string& fragment, PositionPairList& misspelledPositions);
};
}
|