blob: 5ecae0f7aed467c42f557f5b1685426b22286f34 [file] [log] [blame]
Ben Murdoch32409262013-08-07 11:04:47 +01001// Copyright 2013 The Chromium Authors. All rights reserved.
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ben Murdoch32409262013-08-07 11:04:47 +01005#ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_DELEGATE_H_
6#define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_DELEGATE_H_
Torne (Richard Coles)58218062012-11-14 11:43:16 +00007
Torne (Richard Coles)58218062012-11-14 11:43:16 +00008#include <vector>
9
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010010#include "base/strings/string16.h"
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000011#include "chrome/browser/ui/autofill/autofill_dialog_types.h"
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010012#include "components/autofill/content/browser/wallet/required_action.h"
Ben Murdocheb525c52013-07-10 11:40:50 +010013#include "components/autofill/core/browser/field_types.h"
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010014#include "ui/base/range/range.h"
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000015#include "ui/base/ui_base_types.h"
16#include "ui/gfx/image/image.h"
17#include "ui/gfx/native_widget_types.h"
18
19class Profile;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000020
21namespace content {
22class WebContents;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000023struct NativeWebKeyboardEvent;
24}
25
26namespace gfx {
27class Rect;
28}
29
30namespace ui {
31class ComboboxModel;
32class MenuModel;
Torne (Richard Coles)58218062012-11-14 11:43:16 +000033}
34
35namespace autofill {
36
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000037// This class defines the interface to the controller that the dialog view sees.
Ben Murdoch32409262013-08-07 11:04:47 +010038class AutofillDialogViewDelegate {
Torne (Richard Coles)58218062012-11-14 11:43:16 +000039 public:
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000040 // Strings -------------------------------------------------------------------
Torne (Richard Coles)58218062012-11-14 11:43:16 +000041
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000042 virtual string16 DialogTitle() const = 0;
43 virtual string16 AccountChooserText() const = 0;
44 virtual string16 SignInLinkText() const = 0;
45 virtual string16 EditSuggestionText() const = 0;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000046 virtual string16 CancelButtonText() const = 0;
47 virtual string16 ConfirmButtonText() const = 0;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000048 virtual string16 SaveLocallyText() const = 0;
Ben Murdochbb1529c2013-08-08 10:24:53 +010049 virtual string16 SaveLocallyTooltip() const = 0;
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010050 virtual string16 LegalDocumentsText() = 0;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000051
52 // State ---------------------------------------------------------------------
53
54 // Whether the user is known to be signed in.
55 virtual DialogSignedInState SignedInState() const = 0;
56
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010057 // Whether the dialog is in a not exactly well-defined state
58 // (while attempting to sign-in or retrieving the wallet data etc).
59 virtual bool ShouldShowSpinner() const = 0;
60
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000061 // Whether to show the checkbox to save data locally (in Autofill).
62 virtual bool ShouldOfferToSaveInChrome() const = 0;
63
64 // Returns the model for the account chooser. It will return NULL if the
65 // account chooser should not show a menu. In this case, clicking on the
66 // account chooser should initiate sign-in.
67 virtual ui::MenuModel* MenuModelForAccountChooser() = 0;
68
69 // Returns the icon that should be shown in the account chooser.
70 virtual gfx::Image AccountChooserImage() = 0;
71
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +010072 // Whether or not the details container should be showing currently.
73 virtual bool ShouldShowDetailArea() const = 0;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000074
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +010075 // Whether or not the progress bar in the button strip should be showing.
76 virtual bool ShouldShowProgressBar() const = 0;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000077
Ben Murdoch2385ea32013-08-06 11:01:04 +010078 // Returns the image that should be shown on the left of the button strip
79 // or an empty image if none should be shown.
80 virtual gfx::Image ButtonStripImage() const = 0;
81
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +010082 // Which dialog buttons should be visible.
83 virtual int GetDialogButtons() const = 0;
84
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000085 // Whether or not the |button| should be enabled.
86 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const = 0;
87
Ben Murdoch7dbb3d52013-07-17 14:55:54 +010088 // Returns a struct full of data concerning what overlay, if any, should be
89 // displayed on top of the dialog.
90 virtual DialogOverlayState GetDialogOverlay() const = 0;
91
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +010092 // Returns ranges to linkify in the text returned by |LegalDocumentsText()|.
93 virtual const std::vector<ui::Range>& LegalDocumentLinks() = 0;
94
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000095 // Detail inputs -------------------------------------------------------------
96
97 // Whether the section is currently active (i.e. should be shown).
98 virtual bool SectionIsActive(DialogSection section) const = 0;
99
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000100 // Returns the set of inputs the page has requested which fall under
101 // |section|.
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000102 virtual const DetailInputs& RequestedFieldsForSection(DialogSection section)
103 const = 0;
104
105 // Returns the combobox model for inputs of type |type|, or NULL if the input
106 // should be a text field.
107 virtual ui::ComboboxModel* ComboboxModelForAutofillType(
Ben Murdoch32409262013-08-07 11:04:47 +0100108 ServerFieldType type) = 0;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000109
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000110 // Returns the model for suggestions for fields that fall under |section|.
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100111 // This may return NULL, in which case no menu should be shown for that
112 // section.
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000113 virtual ui::MenuModel* MenuModelForSection(DialogSection section) = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000114
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100115 // Returns the label text used to describe the section (i.e. Billing).
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000116 virtual string16 LabelForSection(DialogSection section) const = 0;
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100117
118 // Returns the current state of suggestions for |section|.
119 virtual SuggestionState SuggestionStateForSection(DialogSection section) = 0;
120
121 // Should be called when the user starts editing of the section.
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000122 virtual void EditClickedForSection(DialogSection section) = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000123
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100124 // Should be called when the user cancels editing of the section.
125 virtual void EditCancelledForSection(DialogSection section) = 0;
126
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000127 // Returns an icon to be displayed along with the input for the given type.
128 // |user_input| is the current text in the textfield.
Ben Murdoch32409262013-08-07 11:04:47 +0100129 virtual gfx::Image IconForField(ServerFieldType type,
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000130 const string16& user_input) const = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000131
Torne (Richard Coles)a93a17c2013-05-15 11:34:50 +0100132 // Decides whether input of |value| is valid for a field of type |type|. If
133 // valid, the returned string will be empty. Otherwise it will contain an
134 // error message.
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100135 virtual string16 InputValidityMessage(DialogSection section,
Ben Murdoch32409262013-08-07 11:04:47 +0100136 ServerFieldType type,
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100137 const string16& value) = 0;
Torne (Richard Coles)a93a17c2013-05-15 11:34:50 +0100138
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000139
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000140 // Decides whether the combination of all |inputs| is valid, returns a
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100141 // map of field types to error strings.
142 virtual ValidityData InputsAreValid(
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100143 DialogSection section,
144 const DetailOutputMap& inputs,
145 ValidationType validation_type) = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000146
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000147 // Called when the user changes the contents of a text field or activates it
148 // (by focusing and then clicking it). |was_edit| is true when the function
149 // was called in response to the user editing the text field.
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100150 virtual void UserEditedOrActivatedInput(DialogSection section,
151 const DetailInput* input,
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000152 gfx::NativeView parent_view,
153 const gfx::Rect& content_bounds,
154 const string16& field_contents,
155 bool was_edit) = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000156
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000157 // The view forwards keypresses in text inputs. Returns true if there should
158 // be no further processing of the event.
159 virtual bool HandleKeyPressEventInInput(
160 const content::NativeWebKeyboardEvent& event) = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000161
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000162 // Called when focus has changed position within the view.
163 virtual void FocusMoved() = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000164
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000165 // Miscellany ----------------------------------------------------------------
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000166
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +0100167 // The image to show in the splash screen when the dialog is first shown. If
168 // no splash screen should be shown, this image will be empty.
169 virtual gfx::Image SplashPageImage() const = 0;
170
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000171 // Called when the view has been closed.
172 virtual void ViewClosed() = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000173
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000174 // Returns dialog notifications that the view should currently be showing in
175 // order from top to bottom.
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100176 virtual std::vector<DialogNotification> CurrentNotifications() = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000177
Ben Murdocheb525c52013-07-10 11:40:50 +0100178 // Returns Autocheckout steps that the view should currently be showing in
179 // order from first to last.
180 virtual std::vector<DialogAutocheckoutStep> CurrentAutocheckoutSteps()
181 const = 0;
182
Torne (Richard Coles)a93a17c2013-05-15 11:34:50 +0100183 // Begins or aborts the flow to sign into Wallet.
184 virtual void SignInLinkClicked() = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000185
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100186 // Called when a checkbox in the notification area has changed its state.
187 virtual void NotificationCheckboxStateChanged(DialogNotification::Type type,
188 bool checked) = 0;
189
190 // A legal document link has been clicked.
191 virtual void LegalDocumentLinkClicked(const ui::Range& range) = 0;
192
Ben Murdoch7dbb3d52013-07-17 14:55:54 +0100193 // A button in the dialog's overlay has been pressed.
194 virtual void OverlayButtonPressed() = 0;
195
Ben Murdochca12bfa2013-07-23 11:17:05 +0100196 // Called when the view has been cancelled. Returns true if the dialog should
197 // now close, or false to keep it open.
198 virtual bool OnCancel() = 0;
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000199
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100200 // Called when the view has been accepted. This could be to submit the payment
Ben Murdochca12bfa2013-07-23 11:17:05 +0100201 // info or to handle a required action. Returns true if the dialog should now
202 // close, or false to keep it open.
203 virtual bool OnAccept() = 0;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000204
205 // Returns the profile for this dialog.
206 virtual Profile* profile() = 0;
207
208 // The web contents that prompted the dialog.
Ben Murdochbb1529c2013-08-08 10:24:53 +0100209 virtual content::WebContents* GetWebContents() = 0;
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000210
211 protected:
Ben Murdoch32409262013-08-07 11:04:47 +0100212 virtual ~AutofillDialogViewDelegate();
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000213};
214
215} // namespace autofill
216
Ben Murdoch32409262013-08-07 11:04:47 +0100217#endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_VIEW_DELEGATE_H_