2014-03-24 15:54:22 +01:00
|
|
|
// Copyright (c) 2014, Thomas Goyne <plorkyeran@aegisub.org>
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2014-03-24 15:54:22 +01:00
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2014-03-24 15:54:22 +01:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include "include/aegisub/spellchecker.h"
|
2008-03-07 03:32:29 +01:00
|
|
|
#include "spellchecker_hunspell.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
|
2014-06-11 19:41:45 +02:00
|
|
|
#include "options.h"
|
|
|
|
|
2014-04-23 22:53:24 +02:00
|
|
|
#include <libaegisub/make_unique.h>
|
2014-06-11 19:41:45 +02:00
|
|
|
#include <libaegisub/spellchecker.h>
|
|
|
|
|
|
|
|
namespace agi {
|
|
|
|
class OptionValue;
|
|
|
|
std::unique_ptr<agi::SpellChecker> CreateCocoaSpellChecker(OptionValue *opt);
|
|
|
|
}
|
2013-06-08 06:19:40 +02:00
|
|
|
|
|
|
|
std::unique_ptr<agi::SpellChecker> SpellCheckerFactory::GetSpellChecker() {
|
2014-06-11 19:41:45 +02:00
|
|
|
#ifdef __APPLE__
|
|
|
|
return agi::CreateCocoaSpellChecker(OPT_SET("Tool/Spell Checker/Language"));
|
|
|
|
#elif defined(WITH_HUNSPELL)
|
2014-04-23 22:53:24 +02:00
|
|
|
return agi::make_unique<HunspellSpellChecker>();
|
2014-03-24 15:54:22 +01:00
|
|
|
#else
|
|
|
|
return {};
|
2008-03-07 03:32:29 +01:00
|
|
|
#endif
|
|
|
|
}
|