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 #include "chrome/browser/chromeos/login/wizard_controller.h" | 5 #include "chrome/browser/chromeos/login/wizard_controller.h" |
6 | 6 |
7 #include <gdk/gdk.h> | 7 #include <gdk/gdk.h> |
8 #include <signal.h> | 8 #include <signal.h> |
9 #include <sys/types.h> | 9 #include <sys/types.h> |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 #include "views/painter.h" | 29 #include "views/painter.h" |
30 #include "views/screen.h" | 30 #include "views/screen.h" |
31 #include "views/view.h" | 31 #include "views/view.h" |
32 #include "views/widget/widget_gtk.h" | 32 #include "views/widget/widget_gtk.h" |
33 | 33 |
34 namespace { | 34 namespace { |
35 | 35 |
36 const int kWizardScreenWidth = 700; | 36 const int kWizardScreenWidth = 700; |
37 const int kWizardScreenHeight = 416; | 37 const int kWizardScreenHeight = 416; |
38 | 38 |
39 const char kNetworkScreenName[] = "network"; | |
40 const char kLoginScreenName[] = "login"; | |
41 const char kAccountScreenName[] = "account"; | |
42 const char kUpdateScreenName[] = "update"; | |
43 | |
44 // Passing this parameter as a "first screen" initiates full OOBE flow. | |
45 const char kOutOfBoxScreenName[] = "oobe"; | |
46 | |
47 // RootView of the Widget WizardController creates. Contains the contents of the | 39 // RootView of the Widget WizardController creates. Contains the contents of the |
48 // WizardController. | 40 // WizardController. |
49 class ContentView : public views::View { | 41 class ContentView : public views::View { |
50 public: | 42 public: |
51 ContentView(bool paint_background, int window_x, int window_y, int screen_w, | 43 ContentView(bool paint_background, int window_x, int window_y, int screen_w, |
52 int screen_h) | 44 int screen_h) |
53 : window_x_(window_x), | 45 : window_x_(window_x), |
54 window_y_(window_y), | 46 window_y_(window_y), |
55 screen_w_(screen_w), | 47 screen_w_(screen_w), |
56 screen_h_(screen_h) { | 48 screen_h_(screen_h) { |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 int horizontal_diff = bounds.width() - size.width(); | 91 int horizontal_diff = bounds.width() - size.width(); |
100 int vertical_diff = bounds.height() - size.height(); | 92 int vertical_diff = bounds.height() - size.height(); |
101 bounds.Inset(horizontal_diff / 2, vertical_diff / 2); | 93 bounds.Inset(horizontal_diff / 2, vertical_diff / 2); |
102 } | 94 } |
103 | 95 |
104 return bounds; | 96 return bounds; |
105 } | 97 } |
106 | 98 |
107 } // namespace | 99 } // namespace |
108 | 100 |
| 101 const char WizardController::kNetworkScreenName[] = "network"; |
| 102 const char WizardController::kLoginScreenName[] = "login"; |
| 103 const char WizardController::kAccountScreenName[] = "account"; |
| 104 const char WizardController::kUpdateScreenName[] = "update"; |
| 105 |
| 106 // Passing this parameter as a "first screen" initiates full OOBE flow. |
| 107 const char WizardController::kOutOfBoxScreenName[] = "oobe"; |
| 108 |
109 // Initialize default controller. | 109 // Initialize default controller. |
110 // static | 110 // static |
111 WizardController* WizardController::default_controller_ = NULL; | 111 WizardController* WizardController::default_controller_ = NULL; |
112 | 112 |
113 /////////////////////////////////////////////////////////////////////////////// | 113 /////////////////////////////////////////////////////////////////////////////// |
114 // WizardController, public: | 114 // WizardController, public: |
115 WizardController::WizardController() | 115 WizardController::WizardController() |
116 : widget_(NULL), | 116 : widget_(NULL), |
117 background_widget_(NULL), | 117 background_widget_(NULL), |
118 background_view_(NULL), | 118 background_view_(NULL), |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 | 419 |
420 WizardController* controller = new WizardController(); | 420 WizardController* controller = new WizardController(); |
421 controller->ShowBackground(screen_bounds); | 421 controller->ShowBackground(screen_bounds); |
422 controller->Init(first_screen_name, screen_bounds, true); | 422 controller->Init(first_screen_name, screen_bounds, true); |
423 controller->Show(); | 423 controller->Show(); |
424 if (chromeos::CrosLibrary::Get()->EnsureLoaded()) | 424 if (chromeos::CrosLibrary::Get()->EnsureLoaded()) |
425 chromeos::CrosLibrary::Get()->GetLoginLibrary()->EmitLoginPromptReady(); | 425 chromeos::CrosLibrary::Get()->GetLoginLibrary()->EmitLoginPromptReady(); |
426 } | 426 } |
427 | 427 |
428 } // namespace browser | 428 } // namespace browser |
OLD | NEW |