OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_GUEST_USER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_GUEST_USER_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_GUEST_USER_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_GUEST_USER_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
| 9 #include "chrome/browser/chromeos/login/user_input.h" |
9 #include "views/accelerator.h" | 10 #include "views/accelerator.h" |
10 #include "views/controls/button/native_button.h" | 11 #include "views/controls/button/native_button.h" |
11 #include "views/controls/textfield/textfield.h" | 12 #include "views/controls/textfield/textfield.h" |
12 #include "views/view.h" | 13 #include "views/view.h" |
13 | 14 |
14 namespace chromeos { | 15 namespace chromeos { |
15 | 16 |
16 class UserController; | 17 class UserController; |
17 | 18 |
18 // This view is for controls window of Guest mode pod that allows user to | 19 // This view is for controls window of Guest mode pod that allows user to |
19 // get temporary profile and use it for browsing. Contains only one Sign-in | 20 // get temporary profile and use it for browsing. Contains only one Sign-in |
20 // button and handles different common keyboard shortcuts. | 21 // button and handles different common keyboard shortcuts. |
21 class GuestUserView : public views::View { | 22 class GuestUserView : public UserInput, |
| 23 public views::ButtonListener, |
| 24 public views::View { |
22 public: | 25 public: |
23 explicit GuestUserView(UserController* uc); | 26 explicit GuestUserView(UserController* uc); |
24 | 27 |
25 void RecreateFields(); | 28 void RecreateFields(); |
26 | 29 |
27 void FocusSignInButton(); | 30 void FocusSignInButton(); |
28 | 31 |
29 // Overridden from views::View: | 32 // Overridden from views::View: |
30 virtual bool AcceleratorPressed(const views::Accelerator& accelerator); | 33 virtual bool AcceleratorPressed(const views::Accelerator& accelerator); |
31 | 34 |
| 35 // Overridden from views::ButtonListener. |
| 36 virtual void ButtonPressed(views::Button* sender, const views::Event& event); |
| 37 |
| 38 // Overridden from UserInput: |
| 39 virtual void EnableInputControls(bool enabled); |
| 40 virtual void ClearAndFocusControls(); |
| 41 virtual void ClearAndFocusPassword(); |
| 42 virtual gfx::Rect GetMainInputScreenBounds() const; |
| 43 virtual bool UseCustomBoundsForThrobber(const gfx::Size& throbber, |
| 44 gfx::Rect* bounds); |
| 45 |
32 private: | 46 private: |
33 // Overridden from views::View: | 47 // Overridden from views::View: |
34 virtual void OnLocaleChanged(); | 48 virtual void OnLocaleChanged(); |
35 virtual void ViewHierarchyChanged(bool is_add, | 49 virtual void ViewHierarchyChanged(bool is_add, |
36 views::View* parent, | 50 views::View* parent, |
37 views::View* child); | 51 views::View* child); |
38 virtual void Layout(); | 52 virtual void Layout(); |
39 | 53 |
40 // Button to start login. | 54 // Button to start login. |
41 views::NativeButton* submit_button_; | 55 views::NativeButton* submit_button_; |
42 | 56 |
43 UserController* user_controller_; | 57 UserController* user_controller_; |
44 | 58 |
45 views::Accelerator accel_enable_accessibility_; | 59 views::Accelerator accel_enable_accessibility_; |
46 views::Accelerator accel_login_off_the_record_; | 60 views::Accelerator accel_login_off_the_record_; |
47 views::Accelerator accel_previous_pod_by_arrow_; | 61 views::Accelerator accel_previous_pod_by_arrow_; |
48 views::Accelerator accel_previous_pod_by_tab_; | 62 views::Accelerator accel_previous_pod_by_tab_; |
49 views::Accelerator accel_next_pod_by_arrow_; | 63 views::Accelerator accel_next_pod_by_arrow_; |
50 views::Accelerator accel_next_pod_by_tab_; | 64 views::Accelerator accel_next_pod_by_tab_; |
51 | 65 |
52 DISALLOW_COPY_AND_ASSIGN(GuestUserView); | 66 DISALLOW_COPY_AND_ASSIGN(GuestUserView); |
53 }; | 67 }; |
54 | 68 |
55 } // chromeos | 69 } // chromeos |
56 | 70 |
57 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_GUEST_USER_VIEW_H_ | 71 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_GUEST_USER_VIEW_H_ |
OLD | NEW |