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
|
// Copyright (c) 2009 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_VIEW_MAC_H_
#define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_VIEW_MAC_H_
#import <Cocoa/Cocoa.h>
#include <string>
#include "app/gfx/font.h"
#include "base/basictypes.h"
#include "base/scoped_ptr.h"
#include "base/scoped_nsobject.h"
#include "chrome/browser/autocomplete/autocomplete.h"
#include "chrome/browser/autocomplete/autocomplete_popup_view.h"
#include "webkit/glue/window_open_disposition.h"
class AutocompletePopupModel;
class AutocompleteEditModel;
class AutocompleteEditViewMac;
@class AutocompleteMatrixTarget;
class Profile;
// Implements AutocompletePopupView using a raw NSWindow containing an
// NSTableView.
//
// TODO(rohitrao): This class is set up in a way that makes testing hard.
// Refactor and write unittests. http://crbug.com/9977
class AutocompletePopupViewMac : public AutocompletePopupView {
public:
AutocompletePopupViewMac(AutocompleteEditViewMac* edit_view,
AutocompleteEditModel* edit_model,
AutocompletePopupPositioner* positioner,
Profile* profile,
NSTextField* field);
virtual ~AutocompletePopupViewMac();
// Implement the AutocompletePopupView interface.
virtual bool IsOpen() const;
virtual void InvalidateLine(size_t line) {
// TODO(shess): Verify that there is no need to implement this.
// This is currently used in two places in the model:
//
// When setting the selected line, the selected line is
// invalidated, then the selected line is changed, then the new
// selected line is invalidated, then PaintUpdatesNow() is called.
// For us PaintUpdatesNow() should be sufficient.
//
// Same thing happens when changing the hovered line, except with
// no call to PaintUpdatesNow(). Since this code does not
// currently support special display of the hovered line, there's
// nothing to do here.
//
// deanm indicates that this is an anti-flicker optimization,
// which we probably cannot utilize (and may not need) so long as
// we're using NSTableView to implement the popup contents. We
// may need to move away from NSTableView to implement hover,
// though.
}
virtual void UpdatePopupAppearance();
// This is only called by model in SetSelectedLine() after updating
// everything. Popup should already be visible.
virtual void PaintUpdatesNow();
// Returns the popup's model.
virtual AutocompletePopupModel* GetModel();
// Updates model_'s sense of selected line from the UI before
// calling edit_view_'s AcceptInput(). Used by internal Objective-C
// helper object.
void AcceptInput();
// Called when the user middle-clicks an item. Opens the hovered
// item in a background tab.
void OnMiddleClick();
// Return the text to show for the match, based on the match's
// contents and description. Result will be in |font|, with the
// boldfaced version used for matches.
static NSAttributedString* MatchText(const AutocompleteMatch& match,
gfx::Font& font,
float cellWidth);
// Helper for MatchText() to allow sharing code between the contents
// and description cases. Returns NSMutableAttributedString as a
// convenience for MatchText().
static NSMutableAttributedString* DecorateMatchedString(
const std::wstring &matchString,
const AutocompleteMatch::ACMatchClassifications &classifications,
NSColor* textColor, gfx::Font& font);
private:
// Create the popup_ instance if needed.
void CreatePopupIfNeeded();
scoped_ptr<AutocompletePopupModel> model_;
AutocompleteEditViewMac* edit_view_;
AutocompletePopupPositioner* positioner_; // owned by toolbar controller
NSTextField* field_; // owned by tab controller
scoped_nsobject<AutocompleteMatrixTarget> matrix_target_;
// TODO(shess): Before checkin review implementation to make sure
// that popup_'s object hierarchy doesn't keep references to
// destructed objects.
scoped_nsobject<NSWindow> popup_;
DISALLOW_COPY_AND_ASSIGN(AutocompletePopupViewMac);
};
#endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_POPUP_VIEW_MAC_H_
|