blob: 1085095746d093ed91ba01e005e0d3472d8098c4 (
plain)
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
|
// Copyright (c) 2012 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_UI_AUTOFILL_AUTOFILL_POPUP_VIEW_H_
#define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_VIEW_H_
#include "ui/gfx/native_widget_types.h"
namespace gfx {
class Rect;
}
namespace ui {
class KeyEvent;
}
namespace autofill {
class AutofillPopupController;
// The interface for creating and controlling a platform-dependent
// AutofillPopupView.
class AutofillPopupView {
public:
// The size of the border around the entire results popup, in pixels.
static const int kBorderThickness = 1;
// The minimum amount of padding between the Autofill name and subtext,
// in pixels.
static const size_t kNamePadding = 15;
// The amount of padding between icons in pixels.
static const int kIconPadding = 5;
// The amount of padding at the end of the popup in pixels.
static const int kEndPadding = 3;
// Height of the delete icon in pixels.
static const int kDeleteIconHeight = 16;
// Width of the delete icon in pixels.
static const int kDeleteIconWidth = 16;
// Height of the Autofill icons in pixels.
static const int kAutofillIconHeight = 16;
// Width of the Autofill icons in pixels.
static const int kAutofillIconWidth = 25;
// Displays the Autofill popup and fills it in with data from the controller.
virtual void Show() = 0;
// Hides the popup from view. This will cause the popup to be deleted.
// TODO(csharp): Make Hide a pure virtual function again, once hide_call_ is
// removed.
virtual void Hide();
// Invalidates the given row and redraw it.
virtual void InvalidateRow(size_t row) = 0;
// Refreshes the position of the popup.
virtual void UpdateBoundsAndRedrawPopup() = 0;
// Factory function for creating the view.
static AutofillPopupView* Create(AutofillPopupController* controller);
protected:
AutofillPopupView();
virtual ~AutofillPopupView();
private:
// Used to check that the hide function was called, to check that the class
// is only destroyed through the Hide function. Remove after Dev channel
// release.
bool hide_called_;
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_VIEW_H_
|