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
|
// Copyright (c) 2012 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/chromeos/bluetooth/bluetooth_pairing_dialog.h"
#include "base/json/json_writer.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/browser_dialogs.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/generated_resources.h"
#include "device/bluetooth/bluetooth_device.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/geometry/size.h"
using content::WebContents;
using content::WebUIMessageHandler;
namespace chromeos {
namespace {
// Default width/height ratio of screen size.
const int kDefaultWidth = 480;
const int kDefaultHeight = 280;
} // namespace
///////////////////////////////////////////////////////////////////////////////
// BluetoothPairingDialog, public:
BluetoothPairingDialog::BluetoothPairingDialog(
gfx::NativeWindow parent_window,
const device::BluetoothDevice* device)
: parent_window_(parent_window) {
device_data_.SetString("address", device->GetAddress());
device_data_.SetString("name", device->GetName());
device_data_.SetBoolean("paired", device->IsPaired());
device_data_.SetBoolean("connected", device->IsConnected());
}
BluetoothPairingDialog::~BluetoothPairingDialog() {
}
void BluetoothPairingDialog::Show() {
// Bluetooth settings are currently stored on the device, accessible for
// everyone who uses the machine. As such we can use the active user profile.
chrome::ShowWebDialog(parent_window_,
ProfileManager::GetActiveUserProfile(),
this);
}
///////////////////////////////////////////////////////////////////////////////
// LoginWebDialog, protected:
ui::ModalType BluetoothPairingDialog::GetDialogModalType() const {
return ui::MODAL_TYPE_SYSTEM;
}
base::string16 BluetoothPairingDialog::GetDialogTitle() const {
return l10n_util::GetStringUTF16(
IDS_OPTIONS_SETTINGS_BLUETOOTH_ADD_DEVICE_TITLE);
}
GURL BluetoothPairingDialog::GetDialogContentURL() const {
return GURL(chrome::kChromeUIBluetoothPairingURL);
}
void BluetoothPairingDialog::GetWebUIMessageHandlers(
std::vector<WebUIMessageHandler*>* handlers) const {
}
void BluetoothPairingDialog::GetDialogSize(gfx::Size* size) const {
size->SetSize(kDefaultWidth, kDefaultHeight);
}
std::string BluetoothPairingDialog::GetDialogArgs() const {
std::string data;
base::JSONWriter::Write(&device_data_, &data);
return data;
}
void BluetoothPairingDialog::OnDialogClosed(const std::string& json_retval) {
delete this;
}
void BluetoothPairingDialog::OnCloseContents(WebContents* source,
bool* out_close_dialog) {
if (out_close_dialog)
*out_close_dialog = true;
}
bool BluetoothPairingDialog::ShouldShowDialogTitle() const {
return true;
}
bool BluetoothPairingDialog::HandleContextMenu(
const content::ContextMenuParams& params) {
// Disable context menu.
return true;
}
} // namespace chromeos
|