Chromium Code Reviews| Index: chrome/browser/chromeos/ui/request_pin_view.h |
| diff --git a/chrome/browser/chromeos/ui/request_pin_view.h b/chrome/browser/chromeos/ui/request_pin_view.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..05cae6f08186e9d6e321118ec6ed9fc1ac4465f6 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/ui/request_pin_view.h |
| @@ -0,0 +1,126 @@ |
| +// Copyright (c) 2016 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_CHROMEOS_UI_REQUEST_PIN_VIEW_H_ |
| +#define CHROME_BROWSER_CHROMEOS_UI_REQUEST_PIN_VIEW_H_ |
| + |
| +#include <memory> |
| +#include <string> |
| + |
| +#include "base/callback.h" |
| +#include "base/compiler_specific.h" |
| +#include "base/macros.h" |
| +#include "base/memory/weak_ptr.h" |
| +#include "base/strings/string16.h" |
| +#include "ui/views/controls/textfield/textfield_controller.h" |
| +#include "ui/views/view.h" |
| +#include "ui/views/window/dialog_delegate.h" |
| + |
| +namespace views { |
| +class Label; |
| +} |
| + |
| +namespace chromeos { |
| + |
| +class PassphraseTextfield; |
| + |
| +enum RequestPinCodeType { PIN, PUK, UNCHANGED }; |
| + |
| +enum RequestPinErrorType { |
| + NONE, |
| + INVALID_PIN, |
| + INVALID_PUK, |
| + MAX_ATTEMPTS_EXCEEDED, |
| + UNKNOWN_ERROR |
| +}; |
| + |
| +// A dialog box for requesting PIN code. |
| +class RequestPinView : public views::DialogDelegateView, |
| + public views::TextfieldController { |
| + public: |
| + // Used to send the PIN/PUK entered by the user in the textfield to the |
| + // extension that asked for the code. |
| + using RequestPinCallback = base::Callback<void(const base::string16&)>; |
| + |
| + // Creates the view, having in the header the |extension_name|, asking for |
| + // PIN or PUK depending on |code_type|. UNCHANGED value in |code_type| is not |
| + // accepted here. The |attempts_left| specifies the number of attempts user |
| + // has to try the code. When zero the textfield is disabled and user cannot |
| + // provide any input. When null, the user is allowed to provide the input and |
| + // no information about the attepts left is displayed in the view. The |
| + // |callback| is used to send the value of the PIN/PUK the user entered. |
|
stevenjb
2016/08/11 01:58:55
Also here, separate the input parameter descriptio
igorcov1
2016/08/11 16:15:23
Done.
|
| + RequestPinView(const std::string& extension_name, |
| + RequestPinCodeType code_type, |
| + std::unique_ptr<int> attempts_left, |
| + const RequestPinCallback& callback); |
| + ~RequestPinView() override; |
| + |
| + // views::TextfieldController |
| + void ContentsChanged(views::Textfield* sender, |
| + const base::string16& new_contents) override; |
| + |
| + // views::DialogDelegateView |
| + bool Cancel() override; |
| + bool Accept() override; |
| + base::string16 GetWindowTitle() const override; |
| + ui::ModalType GetModalType() const override; |
| + views::View* GetInitiallyFocusedView() override; |
| + bool IsDialogButtonEnabled(ui::DialogButton button) const override; |
| + |
| + // Returns whether the view is locked while waiting the extension to process |
| + // the user input data. |
| + bool IsLocked(); |
| + |
| + // Set the new callback to be used when user will provide the input. The old |
| + // callback should be null or disposable at this point. |
| + void SetCallback(const RequestPinCallback& callback); |
| + |
| + // The |code_type| specifies whether the user is asked to enter PIN or PUK. |
| + // If UNCHANGED value is provided, the dialog will display the same value that |
| + // was last set. |error_type| is the error template to be displayed in red in |
| + // the dialog if not NONE. |attempts_left| is included in the view as the |
| + // number of attepts user can have to enter correct code. |accept_input| |
| + // specifies whether the textfield is enabled. If disabled the user is unable |
| + // to provide input. |
|
stevenjb
2016/08/11 01:58:55
Here too.
igorcov1
2016/08/11 16:15:23
Done.
|
| + void SetDialogParameters(RequestPinCodeType code_type, |
| + RequestPinErrorType error_type, |
| + std::unique_ptr<int> attempts_left, |
| + const bool accept_input); |
| + |
| + // Set the name of extension that is using this view. The name is included in |
| + // the header text displayed by the view. |
| + void SetExtensionName(const std::string& extension_name); |
| + |
| + views::Textfield* textfield_for_testing() { return textfield_; } |
| + views::Label* error_label_for_testing() { return error_label_; } |
| + |
| + private: |
| + // This initializes the view, with all the UI components. |
| + void Init(); |
| + void SetAcceptInput(bool accept_input); |
| + void SetErrorMessage(RequestPinErrorType error_type, |
| + std::unique_ptr<int> attempts_left); |
| + // Updates the header text (header_label_) based on values from window_title_ |
| + // and code_type_. |
| + void UpdateHeaderText(); |
| + |
| + RequestPinCallback callback_; |
| + base::string16 window_title_; |
| + views::Label* header_label_ = nullptr; |
| + base::string16 code_type_; |
| + views::Textfield* textfield_ = nullptr; |
| + views::Label* error_label_ = nullptr; |
| + |
| + // Flag to know when user submitted input and the view is locked, waiting for |
| + // changes from outside. |
| + bool locked_ = false; |
| + |
| + base::WeakPtrFactory<RequestPinView> weak_ptr_factory_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(RequestPinView); |
| +}; |
| + |
| +} // namespace chromeos |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_UI_REQUEST_PIN_VIEW_H_ |