1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
// Copyright (c) 2006-2008 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 CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_H_
#define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_H_
#include <atlbase.h>
#include <atlapp.h>
#include <atlcrack.h>
#include <atlmisc.h>
#include "base/win_util.h"
#include "chrome/browser/autocomplete/autocomplete.h"
#include "chrome/common/gfx/chrome_font.h"
#include "chrome/common/notification_registrar.h"
#include "chrome/views/view.h"
class AutocompleteEditModel;
class AutocompleteEditView;
class Profile;
class MirroringContext;
class SkBitmap;
class AutocompletePopupModel;
class AutocompletePopupView;
// TODO(pkasting): http://b/1343512 The names and contents of the classes in
// this file are temporary. I am in hack-and-slash mode right now.
#define AUTOCOMPLETEPOPUPVIEW_CLASSNAME L"Chrome_AutocompletePopupView"
// This class implements a popup window used to display autocomplete results.
class AutocompletePopupView
: public CWindowImpl<AutocompletePopupView, CWindow, CControlWinTraits> {
public:
DECLARE_WND_CLASS_EX(AUTOCOMPLETEPOPUPVIEW_CLASSNAME,
((win_util::GetWinVersion() < win_util::WINVERSION_XP) ?
0 : CS_DROPSHADOW), COLOR_WINDOW)
BEGIN_MSG_MAP(AutocompletePopupView)
MSG_WM_ERASEBKGND(OnEraseBkgnd)
MSG_WM_LBUTTONDOWN(OnLButtonDown)
MSG_WM_MBUTTONDOWN(OnMButtonDown)
MSG_WM_LBUTTONUP(OnLButtonUp)
MSG_WM_MBUTTONUP(OnMButtonUp)
MSG_WM_MOUSEACTIVATE(OnMouseActivate)
MSG_WM_MOUSELEAVE(OnMouseLeave)
MSG_WM_MOUSEMOVE(OnMouseMove)
MSG_WM_PAINT(OnPaint)
END_MSG_MAP()
AutocompletePopupView(AutocompletePopupModel* model,
const ChromeFont& font,
AutocompleteEditView* edit_view);
// Returns true if the popup is currently open.
bool is_open() const { return m_hWnd != NULL; }
// Invalidates one line of the autocomplete popup.
void InvalidateLine(size_t line);
// Redraws the popup window to match any changes in the result set; this may
// mean opening or closing the window.
void UpdatePopupAppearance();
// Called by the model when hover is enabled or disabled.
void OnHoverEnabledOrDisabled(bool disabled);
private:
// Caches GDI objects and information for drawing.
struct DrawLineInfo {
enum LineStatus {
NORMAL = 0,
HOVERED,
SELECTED,
MAX_STATUS_ENTRIES
};
explicit DrawLineInfo(const ChromeFont& font);
~DrawLineInfo();
static COLORREF AlphaBlend(COLORREF foreground,
COLORREF background,
BYTE alpha);
static const wchar_t ellipsis_str[];
ChromeFont regular_font; // Fonts used for rendering AutocompleteMatches.
ChromeFont bold_font;
int font_height; // Height (in pixels) of a line of text w/o
// padding.
int line_height; // Height (in pixels) of a line of text w/padding.
int ave_char_width; // Width (in pixels) of an average character of
// the regular font.
int ellipsis_width; // Width (in pixels) of the ellipsis_str.
// colors
COLORREF background_colors[MAX_STATUS_ENTRIES];
COLORREF text_colors[MAX_STATUS_ENTRIES];
COLORREF url_colors[MAX_STATUS_ENTRIES];
// brushes
HBRUSH brushes[MAX_STATUS_ENTRIES];
private:
static double LuminosityContrast(COLORREF color1, COLORREF color2);
static double Luminosity(COLORREF color);
};
// message handlers
LRESULT OnEraseBkgnd(HDC hdc) {
// We do all needed erasing ourselves in OnPaint, so the only thing that
// WM_ERASEBKGND will do is cause flicker. Disable it by just returning
// nonzero here ("erase completed") without doing anything.
return 1;
}
void OnLButtonDown(UINT keys, const CPoint& point);
void OnMButtonDown(UINT keys, const CPoint& point);
void OnLButtonUp(UINT keys, const CPoint& point);
void OnMButtonUp(UINT keys, const CPoint& point);
LRESULT OnMouseActivate(HWND window, UINT hit_test, UINT mouse_message);
void OnMouseLeave();
void OnMouseMove(UINT keys, const CPoint& point);
void OnPaint(HDC hdc);
// Called by On*ButtonUp() to do the actual work of handling a button
// release. Opens the item at the given coordinate, using the supplied
// disposition.
void OnButtonUp(const CPoint& point, WindowOpenDisposition disposition);
// Gives the topmost y coordinate within |line|, which should be within the
// range of valid lines.
int LineTopPixel(size_t line) const;
// Converts the given y-coordinate to a line. Due to drawing slop (window
// borders, etc.), |y| might be within the window but outside the range of
// pixels which correspond to lines; in this case the result will be clamped,
// i.e., the top and bottom lines will be treated as extending to the top and
// bottom edges of the window, respectively.
size_t PixelToLine(int y) const;
// Draws a light border around the inside of the window with the given client
// rectangle and DC.
void DrawBorder(const RECT& rc, HDC dc);
// Draws a single run of text with a particular style. Handles both LTR and
// RTL text as well as eliding. Returns the width, in pixels, of the string
// as it was actually displayed.
int DrawString(HDC dc,
int x,
int y,
int max_x,
const wchar_t* text,
int length,
int style,
const DrawLineInfo::LineStatus status,
const MirroringContext* context,
bool text_direction_is_rtl) const;
// Draws a string from the autocomplete controller which can have specially
// marked "match" portions.
void DrawMatchFragments(HDC dc,
const std::wstring& text,
const ACMatchClassifications& classifications,
int x,
int y,
int max_x,
DrawLineInfo::LineStatus status) const;
// Draws one line of the text in the box.
void DrawEntry(HDC dc,
const RECT& client_rect,
size_t line,
DrawLineInfo::LineStatus status,
bool all_descriptions_empty,
bool starred) const;
// Draws the star at the specified location
void DrawStar(HDC dc, int x, int y) const;
AutocompletePopupModel* model_;
AutocompleteEditView* edit_view_;
// Cached GDI information for drawing.
DrawLineInfo line_info_;
// Bitmap for the star. This is owned by the ResourceBundle.
SkBitmap* star_;
// A context used for mirroring regions.
scoped_ptr<MirroringContext> mirroring_context_;
// When hovered_line_ is kNoMatch, this holds the screen coordinates of the
// mouse position when hover tracking was turned off. If the mouse moves to a
// point over the popup that has different coordinates, hover tracking will be
// re-enabled. When hovered_line_ is a valid line, the value here is
// out-of-date and should be ignored.
CPoint last_hover_coordinates_;
DISALLOW_COPY_AND_ASSIGN(AutocompletePopupView);
};
class AutocompletePopupModel : public NotificationObserver {
public:
AutocompletePopupModel(const ChromeFont& font,
AutocompleteEditView* edit_view,
AutocompleteEditModel* edit_model,
Profile* profile);
~AutocompletePopupModel();
// Invoked when the profile has changed.
void SetProfile(Profile* profile);
// Starts a new query running. These parameters are passed through to the
// autocomplete controller; see comments there.
void StartAutocomplete(const std::wstring& text,
const std::wstring& desired_tld,
bool prevent_inline_autocomplete,
bool prefer_keyword);
// Closes the window and cancels any pending asynchronous queries.
void StopAutocomplete();
// Returns true if the popup is currently open.
bool is_open() const { return view_->is_open(); }
// Returns the AutocompleteController used by this popup.
AutocompleteController* autocomplete_controller() const {
return controller_.get();
}
const AutocompleteResult& result() const {
return controller_->result();
}
size_t hovered_line() const {
return hovered_line_;
}
// Call to change the hovered line. |line| should be within the range of
// valid lines (to enable hover) or kNoMatch (to disable hover).
void SetHoveredLine(size_t line);
size_t selected_line() const {
return selected_line_;
}
// Call to change the selected line. This will update all state and repaint
// the necessary parts of the window, as well as updating the edit with the
// new temporary text. |line| should be within the range of valid lines.
// |reset_to_default| is true when the selection is being reset back to the
// default match, and thus there is no temporary text (and no
// |manually_selected_match_|).
// NOTE: This assumes the popup is open, and thus both old and new values for
// the selected line should not be kNoMatch.
void SetSelectedLine(size_t line, bool reset_to_default);
// Called when the user hits escape after arrowing around the popup. This
// will change the selected line back to the default match and redraw.
void ResetToDefaultMatch();
// Returns the URL for the selected match. If an update is in progress,
// "selected" means "default in the latest matches". If there are no
// matches, returns the empty string.
//
// If |transition_type| is non-NULL, it will be set to the appropriate
// transition type for the selected entry (TYPED or GENERATED).
//
// If |is_history_what_you_typed_match| is non-NULL, it will be set based on
// the selected entry's is_history_what_you_typed value.
//
// If |alternate_nav_url| is non-NULL, it will be set to the alternate
// navigation URL for |url| if one exists, or left unchanged otherwise. See
// comments on AutocompleteResult::GetAlternateNavURL().
std::wstring URLsForCurrentSelection(
PageTransition::Type* transition,
bool* is_history_what_you_typed_match,
std::wstring* alternate_nav_url) const;
// This is sort of a hybrid between StartAutocomplete() and
// URLForCurrentSelection(). When the popup isn't open and the user hits
// enter, we want to get the default match for the user's input immediately,
// and not open the popup, continue running autocomplete, etc. Therefore,
// this does a query for only the synchronously available matches for the
// provided input parameters, sets |transition|,
// |is_history_what_you_typed_match|, and |alternate_nav_url| (if applicable)
// based on the default match, and returns its url. |transition|,
// |is_history_what_you_typed_match| and/or |alternate_nav_url| may be null,
// in which case they are not updated.
//
// If there are no matches for |text|, leaves the outparams unset and returns
// the empty string.
std::wstring URLsForDefaultMatch(const std::wstring& text,
const std::wstring& desired_tld,
PageTransition::Type* transition,
bool* is_history_what_you_typed_match,
std::wstring* alternate_nav_url);
// Gets the selected keyword or keyword hint for the given match. Returns
// true if |keyword| represents a keyword hint, or false if |keyword|
// represents a selected keyword. (|keyword| will always be set [though
// possibly to the empty string], and you cannot have both a selected keyword
// and a keyword hint simultaneously.)
bool GetKeywordForMatch(const AutocompleteMatch& match,
std::wstring* keyword) const;
// Returns a pointer to a heap-allocated AutocompleteLog containing the
// current input text, selected match, and result set. The caller is
// responsible for deleting the object.
AutocompleteLog* GetAutocompleteLog();
// Immediately updates and opens the popup if necessary, then moves the
// current selection down (|count| > 0) or up (|count| < 0), clamping to the
// first or last result if necessary. If |count| == 0, the selection will be
// unchanged, but the popup will still redraw and modify the text in the
// AutocompleteEditModel.
void Move(int count);
// Called when the user hits shift-delete. This should determine if the item
// can be removed from history, and if so, remove it and update the popup.
void TryDeletingCurrentItem();
// The token value for selected_line_, hover_line_ and functions dealing with
// a "line number" that indicates "no line".
static const size_t kNoMatch = -1;
private:
// NotificationObserver
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details);
scoped_ptr<AutocompletePopupView> view_;
AutocompleteEditModel* edit_model_;
scoped_ptr<AutocompleteController> controller_;
NotificationRegistrar registrar_;
// Profile for current tab.
Profile* profile_;
// The line that's currently hovered. If we're not drawing a hover rect,
// this will be kNoMatch, even if the cursor is over the popup contents.
size_t hovered_line_;
// The currently selected line. This is kNoMatch when nothing is selected,
// which should only be true when the popup is closed.
size_t selected_line_;
// The match the user has manually chosen, if any.
AutocompleteResult::Selection manually_selected_match_;
// A hack for URLsForDefaultMatch() that makes the code in Observe() do
// nothing.
bool inside_synchronous_query_;
DISALLOW_COPY_AND_ASSIGN(AutocompletePopupModel);
};
#endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_H_
|