Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Side by Side Diff: ui/base/ime/win/tsf_event_router.h

Issue 11305002: Support TSF related event handling on NativeTextField (Closed) Base URL: http://git.chromium.org/chromium/src.git@findbar_fix
Patch Set: Address comments Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_BASE_IME_WIN_TSF_EVENT_ROUTER_H_ 5 #ifndef UI_BASE_IME_WIN_TSF_EVENT_ROUTER_H_
6 #define UI_BASE_IME_WIN_TSF_EVENT_ROUTER_H_ 6 #define UI_BASE_IME_WIN_TSF_EVENT_ROUTER_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlcom.h> 9 #include <atlcom.h>
10 #include <msctf.h> 10 #include <msctf.h>
11 11
12 #include <set> 12 #include <set>
13 13
14 #include "base/basictypes.h" 14 #include "base/basictypes.h"
15 #include "base/callback.h" 15 #include "base/callback.h"
16 #include "base/compiler_specific.h" 16 #include "base/compiler_specific.h"
17 #include "ui/base/ime/text_input_type.h" 17 #include "ui/base/ime/text_input_type.h"
18 #include "ui/base/range/range.h"
18 #include "ui/base/ui_export.h" 19 #include "ui/base/ui_export.h"
19 20
20 struct ITfDocumentMgr; 21 struct ITfDocumentMgr;
21 22
22 namespace ui { 23 namespace ui {
23 24
24 class TsfEventRouterObserver { 25 class TsfEventRouterObserver {
25 public: 26 public:
26 TsfEventRouterObserver() {} 27 TsfEventRouterObserver() {}
27 28
28 // Called when the text contents are updated. 29 // Called when the number of currently opened candidate windows changes.
29 virtual void OnTextUpdated() = 0; 30 virtual void OnCandidateWindowCountChanged(size_t window_count) {}
30 31
31 // Called when the number of currently opened candidate windows changes. 32 // Called when a composition is started.
32 virtual void OnCandidateWindowCountChanged(size_t window_count) = 0; 33 virtual void OnTsfStartComposition() {}
34
35 // Called when the text contents are updated. If there is no composition,
36 // ui::Range::InvalidRange is passed to |composition_range|.
37 virtual void OnTextUpdated(const ui::Range& composition_range) {}
38
39 // Called when a composition is terminated.
40 virtual void OnTsfEndComposition() {}
33 41
34 protected: 42 protected:
35 virtual ~TsfEventRouterObserver() {} 43 virtual ~TsfEventRouterObserver() {}
36 44
37 private: 45 private:
38 DISALLOW_COPY_AND_ASSIGN(TsfEventRouterObserver); 46 DISALLOW_COPY_AND_ASSIGN(TsfEventRouterObserver);
39 }; 47 };
40 48
41 // This class monitores TSF related events and forwards them to given 49 // This class monitores TSF related events and forwards them to given
42 // |observer|. 50 // |observer|.
43 class UI_EXPORT TsfEventRouter { 51 class UI_EXPORT TsfEventRouter {
44 public: 52 public:
45 // Do not pass NULL to |observer|. 53 // Do not pass NULL to |observer|.
46 explicit TsfEventRouter(TsfEventRouterObserver* observer); 54 explicit TsfEventRouter(TsfEventRouterObserver* observer);
47 virtual ~TsfEventRouter(); 55 virtual ~TsfEventRouter();
48 56
49 // Sets |thread_manager| to be monitored. |thread_manager| can be NULL.
50 void SetManager(ITfThreadMgr* thread_manager);
51
52 // Returns true if the IME is composing text. 57 // Returns true if the IME is composing text.
53 bool IsImeComposing(); 58 bool IsImeComposing();
54 59
55 // Callbacks from the TsfEventRouterDelegate: 60 // Callbacks from the TsfEventRouterDelegate:
56 void OnTextUpdated();
57 void OnCandidateWindowCountChanged(size_t window_count); 61 void OnCandidateWindowCountChanged(size_t window_count);
62 void OnTsfStartComposition();
63 void OnTextUpdated(const ui::Range& composition_range);
64 void OnTsfEndComposition();
65
66 // Sets |thread_manager| to be monitored. |thread_manager| can be NULL.
67 void SetManager(ITfThreadMgr* thread_manager);
58 68
59 private: 69 private:
60 class TsfEventRouterDelegate; 70 class TsfEventRouterDelegate;
61 71
62 CComPtr<TsfEventRouterDelegate> delegate_; 72 CComPtr<TsfEventRouterDelegate> delegate_;
63 73
64 TsfEventRouterObserver* observer_; 74 TsfEventRouterObserver* observer_;
65 75
66 DISALLOW_COPY_AND_ASSIGN(TsfEventRouter); 76 DISALLOW_COPY_AND_ASSIGN(TsfEventRouter);
67 }; 77 };
68 78
69 } // namespace ui 79 } // namespace ui
70 80
71 #endif // UI_BASE_IME_WIN_TSF_EVENT_ROUTER_H_ 81 #endif // UI_BASE_IME_WIN_TSF_EVENT_ROUTER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/omnibox/omnibox_view_win.cc ('k') | ui/base/ime/win/tsf_event_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698