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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
// Copyright 2013 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.
#include "chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h"
#include "base/bind.h"
#include "base/values.h"
#include "content/public/browser/web_ui.h"
namespace chromeos {
FirstRunHandler::FirstRunHandler()
: is_initialized_(false),
is_finalizing_(false) {
}
bool FirstRunHandler::IsInitialized() {
return is_initialized_;
}
void FirstRunHandler::SetBackgroundVisible(bool visible) {
web_ui()->CallJavascriptFunction("cr.FirstRun.setBackgroundVisible",
base::FundamentalValue(visible));
}
void FirstRunHandler::AddRectangularHole(int x, int y, int width, int height) {
web_ui()->CallJavascriptFunction("cr.FirstRun.addRectangularHole",
base::FundamentalValue(x),
base::FundamentalValue(y),
base::FundamentalValue(width),
base::FundamentalValue(height));
}
void FirstRunHandler::AddRoundHole(int x, int y, float radius) {
web_ui()->CallJavascriptFunction("cr.FirstRun.addRoundHole",
base::FundamentalValue(x),
base::FundamentalValue(y),
base::FundamentalValue(radius));
}
void FirstRunHandler::RemoveBackgroundHoles() {
web_ui()->CallJavascriptFunction("cr.FirstRun.removeHoles");
}
void FirstRunHandler::ShowStepPositioned(const std::string& name,
const StepPosition& position) {
web_ui()->CallJavascriptFunction("cr.FirstRun.showStep",
base::StringValue(name),
*position.AsValue());
}
void FirstRunHandler::ShowStepPointingTo(const std::string& name,
int x,
int y,
int offset) {
scoped_ptr<base::Value> null(base::Value::CreateNullValue());
base::ListValue point_with_offset;
point_with_offset.AppendInteger(x);
point_with_offset.AppendInteger(y);
point_with_offset.AppendInteger(offset);
web_ui()->CallJavascriptFunction("cr.FirstRun.showStep",
base::StringValue(name),
*null,
point_with_offset);
}
void FirstRunHandler::HideCurrentStep() {
web_ui()->CallJavascriptFunction("cr.FirstRun.hideCurrentStep");
}
void FirstRunHandler::Finalize() {
is_finalizing_ = true;
web_ui()->CallJavascriptFunction("cr.FirstRun.finalize");
}
bool FirstRunHandler::IsFinalizing() {
return is_finalizing_;
}
void FirstRunHandler::RegisterMessages() {
web_ui()->RegisterMessageCallback("initialized",
base::Bind(&FirstRunHandler::HandleInitialized, base::Unretained(this)));
web_ui()->RegisterMessageCallback("nextButtonClicked",
base::Bind(&FirstRunHandler::HandleNextButtonClicked,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("helpButtonClicked",
base::Bind(&FirstRunHandler::HandleHelpButtonClicked,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("stepShown",
base::Bind(&FirstRunHandler::HandleStepShown,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("stepHidden",
base::Bind(&FirstRunHandler::HandleStepHidden,
base::Unretained(this)));
web_ui()->RegisterMessageCallback("finalized",
base::Bind(&FirstRunHandler::HandleFinalized,
base::Unretained(this)));
}
void FirstRunHandler::HandleInitialized(const base::ListValue* args) {
is_initialized_ = true;
if (delegate())
delegate()->OnActorInitialized();
}
void FirstRunHandler::HandleNextButtonClicked(const base::ListValue* args) {
std::string step_name;
CHECK(args->GetString(0, &step_name));
if (delegate())
delegate()->OnNextButtonClicked(step_name);
}
void FirstRunHandler::HandleHelpButtonClicked(const base::ListValue* args) {
if (delegate())
delegate()->OnHelpButtonClicked();
}
void FirstRunHandler::HandleStepShown(const base::ListValue* args) {
std::string step_name;
CHECK(args->GetString(0, &step_name));
if (delegate())
delegate()->OnStepShown(step_name);
}
void FirstRunHandler::HandleStepHidden(const base::ListValue* args) {
std::string step_name;
CHECK(args->GetString(0, &step_name));
if (delegate())
delegate()->OnStepHidden(step_name);
}
void FirstRunHandler::HandleFinalized(const base::ListValue* args) {
is_finalizing_ = false;
if (delegate())
delegate()->OnActorFinalized();
}
} // namespace chromeos
|