forked from nwjs/nw.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautofill_popup_view.h
63 lines (44 loc) · 1.67 KB
/
autofill_popup_view.h
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
// 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 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;
// 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.
virtual void Hide() = 0;
// 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:
virtual ~AutofillPopupView() {}
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_VIEW_H_