Chromium Code Reviews| Index: win8/metro_driver/ime/text_service.h |
| diff --git a/win8/metro_driver/ime/text_service.h b/win8/metro_driver/ime/text_service.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cb1215d6106034650cd868e3c3f453269c8bcb5e |
| --- /dev/null |
| +++ b/win8/metro_driver/ime/text_service.h |
| @@ -0,0 +1,51 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef WIN8_METRO_DRIVER_IME_TEXT_SERVICE_H_ |
| +#define WIN8_METRO_DRIVER_IME_TEXT_SERVICE_H_ |
| + |
| +#include <Windows.h> |
| + |
| +#include "base/basictypes.h" |
| +#include "base/memory/scoped_ptr.h" |
| + |
| +namespace metro_viewer { |
| +struct CharacterBounds; |
| +} |
| + |
| +namespace metro_driver { |
| + |
| +class TextServiceDelegate; |
| + |
| +// An interface to manage a virtual text store with which an IME communicate. |
|
ananta
2013/11/27 02:27:44
communicates
yukawa
2013/11/27 11:30:04
Done.
|
| +class TextService { |
| + public: |
| + virtual ~TextService() {} |
| + |
| + // Cancels on-going composition. Does nothing if there is no composition. |
| + virtual void CancelComposition() = 0; |
| + |
| + // Updates document type with |input_scopes| and caret/composition position |
| + // with |character_bounds|. An empty |input_scopes| represents IMEs should |
|
ananta
2013/11/27 02:27:44
Please replace represents with indicates that
yukawa
2013/11/27 11:30:04
Done.
|
| + // be disabled until non-empty |input_scopes| is specified. |
| + // Note: |input_scopes| is defined as std::vector<int32> here rather than |
| + // std::vector<InputScope> because the wire format of IPC message |
| + // MetroViewerHostMsg_ImeTextInputClientUpdated uses std::vector<int32> to |
| + // avoid dependency on <InputScope.h> header. |
| + virtual void OnDocumentChanged( |
| + const std::vector<int32>& input_scopes, |
| + const std::vector<metro_viewer::CharacterBounds>& character_bounds) = 0; |
| + |
| + // Must be called whenever the attached window gains keyboard focus. |
| + virtual void OnWindowActivated() = 0; |
| +}; |
| + |
| +// Returns an instance of TextService that works together with |
| +// |text_store_delegate| as if it was an text area owned by |window_handle|. |
| +scoped_ptr<TextService> |
| +CreateTextService(TextServiceDelegate* delegate, HWND window_handle); |
| + |
| +} // namespace metro_driver |
| + |
| +#endif // WIN8_METRO_DRIVER_IME_TEXT_SERVICE_H_ |