| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_VIEWS_CONTROLS_PREFIX_SELECTOR_H_ | 5 #ifndef UI_VIEWS_CONTROLS_PREFIX_SELECTOR_H_ |
| 6 #define UI_VIEWS_CONTROLS_PREFIX_SELECTOR_H_ | 6 #define UI_VIEWS_CONTROLS_PREFIX_SELECTOR_H_ |
| 7 | 7 |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 #include "ui/base/ime/text_input_client.h" | 10 #include "ui/base/ime/text_input_client.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; | 44 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; |
| 45 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE; | 45 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE; |
| 46 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE; | 46 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE; |
| 47 virtual bool GetTextFromRange(const gfx::Range& range, | 47 virtual bool GetTextFromRange(const gfx::Range& range, |
| 48 string16* text) const OVERRIDE; | 48 string16* text) const OVERRIDE; |
| 49 virtual void OnInputMethodChanged() OVERRIDE; | 49 virtual void OnInputMethodChanged() OVERRIDE; |
| 50 virtual bool ChangeTextDirectionAndLayoutAlignment( | 50 virtual bool ChangeTextDirectionAndLayoutAlignment( |
| 51 base::i18n::TextDirection direction) OVERRIDE; | 51 base::i18n::TextDirection direction) OVERRIDE; |
| 52 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; | 52 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; |
| 53 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; | 53 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; |
| 54 virtual void OnCandidateWindowShow() OVERRIDE {} |
| 55 virtual void OnCandidateWindowUpdate() OVERRIDE {} |
| 56 virtual void OnCandidateWindowHide() OVERRIDE {} |
| 54 | 57 |
| 55 private: | 58 private: |
| 56 // Invoked when text is typed. Tries to change the selection appropriately. | 59 // Invoked when text is typed. Tries to change the selection appropriately. |
| 57 void OnTextInput(const string16& text); | 60 void OnTextInput(const string16& text); |
| 58 | 61 |
| 59 // Returns true if the text of the node at |row| starts with |lower_text|. | 62 // Returns true if the text of the node at |row| starts with |lower_text|. |
| 60 bool TextAtRowMatchesText(int row, const string16& lower_text); | 63 bool TextAtRowMatchesText(int row, const string16& lower_text); |
| 61 | 64 |
| 62 // Clears |current_text_| and resets |time_of_last_key_|. | 65 // Clears |current_text_| and resets |time_of_last_key_|. |
| 63 void ClearText(); | 66 void ClearText(); |
| 64 | 67 |
| 65 PrefixDelegate* prefix_delegate_; | 68 PrefixDelegate* prefix_delegate_; |
| 66 | 69 |
| 67 // Time OnTextInput() was last invoked. | 70 // Time OnTextInput() was last invoked. |
| 68 base::TimeTicks time_of_last_key_; | 71 base::TimeTicks time_of_last_key_; |
| 69 | 72 |
| 70 string16 current_text_; | 73 string16 current_text_; |
| 71 | 74 |
| 72 DISALLOW_COPY_AND_ASSIGN(PrefixSelector); | 75 DISALLOW_COPY_AND_ASSIGN(PrefixSelector); |
| 73 }; | 76 }; |
| 74 | 77 |
| 75 } // namespace views | 78 } // namespace views |
| 76 | 79 |
| 77 #endif // UI_VIEWS_CONTROLS_PREFIX_SELECTOR_H_ | 80 #endif // UI_VIEWS_CONTROLS_PREFIX_SELECTOR_H_ |
| OLD | NEW |