/*
 * Copyright (c) 2011 Vlad Voicu
 * 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 <SwifTools/SpellParser.h>

namespace Swift {
    class SpellChecker {
        public:
            SpellChecker() {
            }

            virtual ~SpellChecker() {
            }

            virtual bool isAutomaticallyDetectingLanguage() = 0;

            virtual void setActiveLanguage(const std::string& language) = 0;
            virtual std::string activeLanguage() const = 0;
            virtual std::vector<std::string> supportedLanguages() const = 0;

            virtual bool isCorrect(const std::string& word) = 0;
            virtual void getSuggestions(const std::string& word, std::vector<std::string>& list) = 0;
            virtual void checkFragment(const std::string& fragment, PositionPairList& misspelledPositions) = 0;

        protected:
            SpellParser parser_;
    };
}