1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_RENDERER_SPELLCHECKER_HUNSPELL_ENGINE_H_
6 #define CHROME_RENDERER_SPELLCHECKER_HUNSPELL_ENGINE_H_
11 #include "base/memory/scoped_ptr.h"
12 #include "base/strings/string16.h"
13 #include "base/strings/utf_string_conversions.h"
14 #include "chrome/common/spellcheck_common.h"
15 #include "chrome/renderer/spellchecker/spelling_engine.h"
20 class MemoryMappedFile
;
23 class HunspellEngine
: public SpellingEngine
{
26 virtual ~HunspellEngine();
28 virtual void Init(base::File file
) OVERRIDE
;
30 virtual bool InitializeIfNeeded() OVERRIDE
;
31 virtual bool IsEnabled() OVERRIDE
;
32 virtual bool CheckSpelling(const base::string16
& word_to_check
,
34 virtual void FillSuggestionList(
35 const base::string16
& wrong_word
,
36 std::vector
<base::string16
>* optional_suggestions
) OVERRIDE
;
39 // Initializes the Hunspell dictionary, or does nothing if |hunspell_| is
40 // non-null. This blocks.
41 void InitializeHunspell();
43 // We memory-map the BDict file.
44 scoped_ptr
<base::MemoryMappedFile
> bdict_file_
;
46 // The hunspell dictionary in use.
47 scoped_ptr
<Hunspell
> hunspell_
;
51 // This flag is true if hunspell is enabled.
52 bool hunspell_enabled_
;
54 // This flag is true if we have been initialized.
55 // The value indicates whether we should request a
56 // dictionary from the browser when the render view asks us to check the
57 // spelling of a word.
60 // This flag is true if we have requested dictionary.
61 bool dictionary_requested_
;
64 #endif // CHROME_RENDERER_SPELLCHECKER_HUNSPELL_ENGINE_H_