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

Side by Side Diff: chrome/browser/autocomplete/autocomplete_popup_model.h

Issue 6731036: Enabled pressing TAB to cycle through the Omnibox results. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 4 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_MODEL_H_ 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_MODEL_H_
6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_MODEL_H_ 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_MODEL_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "chrome/browser/autocomplete/autocomplete.h" 10 #include "chrome/browser/autocomplete/autocomplete.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 } 46 }
47 47
48 // Call to change the hovered line. |line| should be within the range of 48 // Call to change the hovered line. |line| should be within the range of
49 // valid lines (to enable hover) or kNoMatch (to disable hover). 49 // valid lines (to enable hover) or kNoMatch (to disable hover).
50 void SetHoveredLine(size_t line); 50 void SetHoveredLine(size_t line);
51 51
52 size_t selected_line() const { 52 size_t selected_line() const {
53 return selected_line_; 53 return selected_line_;
54 } 54 }
55 55
56 bool keyword_selected() const {
57 return keyword_selected_;
58 }
59
56 // Call to change the selected line. This will update all state and repaint 60 // Call to change the selected line. This will update all state and repaint
57 // the necessary parts of the window, as well as updating the edit with the 61 // the necessary parts of the window, as well as updating the edit with the
58 // new temporary text. |line| will be clamped to the range of valid lines. 62 // new temporary text. |line| will be clamped to the range of valid lines.
59 // |reset_to_default| is true when the selection is being reset back to the 63 // |reset_to_default| is true when the selection is being reset back to the
60 // default match, and thus there is no temporary text (and no 64 // default match, and thus there is no temporary text (and no
61 // |manually_selected_match_|). If |force| is true then the selected line will 65 // |manually_selected_match_|). If |force| is true then the selected line will
62 // be updated forcibly even if the |line| is same as the current selected 66 // be updated forcibly even if the |line| is same as the current selected
63 // line. 67 // line.
64 // NOTE: This assumes the popup is open, and thus both old and new values for 68 // NOTE: This assumes the popup is open, and thus both old and new values for
65 // the selected line should not be kNoMatch. 69 // the selected line should not be kNoMatch.
66 void SetSelectedLine(size_t line, bool reset_to_default, bool force); 70 void SetSelectedLine(size_t line, bool reset_to_default, bool force);
67 71
68 // Called when the user hits escape after arrowing around the popup. This 72 // Called when the user hits escape after arrowing around the popup. This
69 // will change the selected line back to the default match and redraw. 73 // will change the selected line back to the default match and redraw.
70 void ResetToDefaultMatch(); 74 void ResetToDefaultMatch();
71 75
72 // Gets the selected keyword or keyword hint for the given match. If the match
73 // is already keyword, then the keyword will be returned directly. Otherwise,
74 // it returns GetKeywordForText(match.fill_into_edit, keyword).
75 bool GetKeywordForMatch(const AutocompleteMatch& match,
76 string16* keyword) const;
77
78 // Gets the selected keyword or keyword hint for the given text. Returns
79 // true if |keyword| represents a keyword hint, or false if |keyword|
80 // represents a selected keyword. (|keyword| will always be set [though
81 // possibly to the empty string], and you cannot have both a selected keyword
82 // and a keyword hint simultaneously.)
83 bool GetKeywordForText(const string16& text, string16* keyword) const;
84
85 // Immediately updates and opens the popup if necessary, then moves the 76 // Immediately updates and opens the popup if necessary, then moves the
86 // current selection down (|count| > 0) or up (|count| < 0), clamping to the 77 // current selection down (|count| > 0) or up (|count| < 0), clamping to the
87 // first or last result if necessary. If |count| == 0, the selection will be 78 // first or last result if necessary. If |count| == 0, the selection will be
88 // unchanged, but the popup will still redraw and modify the text in the 79 // unchanged, but the popup will still redraw and modify the text in the
89 // AutocompleteEditModel. 80 // AutocompleteEditModel.
90 void Move(int count); 81 void Move(int count);
91 82
83 // If the selected line has both a normal match and a keyword match, this can
84 // be used to choose which to select. It is an error to call this when the
85 // selected line does not have both matches (or there is no selection).
86 void SelectKeyword(bool selected);
sky 2011/08/01 16:02:15 Using selected as the name to a function call Sele
87
92 // Called when the user hits shift-delete. This should determine if the item 88 // Called when the user hits shift-delete. This should determine if the item
93 // can be removed from history, and if so, remove it and update the popup. 89 // can be removed from history, and if so, remove it and update the popup.
94 void TryDeletingCurrentItem(); 90 void TryDeletingCurrentItem();
95 91
96 // If |match| is from an extension, returns the extension icon; otherwise 92 // If |match| is from an extension, returns the extension icon; otherwise
97 // returns NULL. 93 // returns NULL.
98 const SkBitmap* GetIconIfExtensionMatch(const AutocompleteMatch& match) const; 94 const SkBitmap* GetIconIfExtensionMatch(const AutocompleteMatch& match) const;
99 95
100 // The match the user has manually chosen, if any. 96 // The match the user has manually chosen, if any.
101 const AutocompleteResult::Selection& manually_selected_match() const { 97 const AutocompleteResult::Selection& manually_selected_match() const {
(...skipping 17 matching lines...) Expand all
119 Profile* profile_; 115 Profile* profile_;
120 116
121 // The line that's currently hovered. If we're not drawing a hover rect, 117 // The line that's currently hovered. If we're not drawing a hover rect,
122 // this will be kNoMatch, even if the cursor is over the popup contents. 118 // this will be kNoMatch, even if the cursor is over the popup contents.
123 size_t hovered_line_; 119 size_t hovered_line_;
124 120
125 // The currently selected line. This is kNoMatch when nothing is selected, 121 // The currently selected line. This is kNoMatch when nothing is selected,
126 // which should only be true when the popup is closed. 122 // which should only be true when the popup is closed.
127 size_t selected_line_; 123 size_t selected_line_;
128 124
125 // If the selected line has both a normal match and a keyword match, this
126 // determines whether the normal match (if false) or the keyword match
127 // (if true) is selected.
128 bool keyword_selected_;
129
129 // The match the user has manually chosen, if any. 130 // The match the user has manually chosen, if any.
130 AutocompleteResult::Selection manually_selected_match_; 131 AutocompleteResult::Selection manually_selected_match_;
131 132
132 DISALLOW_COPY_AND_ASSIGN(AutocompletePopupModel); 133 DISALLOW_COPY_AND_ASSIGN(AutocompletePopupModel);
133 }; 134 };
134 135
135 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_MODEL_H_ 136 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_MODEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698