// Copyright (c) 2009 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/settings_contents_view.h" #include #include #include #include "app/combobox_model.h" #include "app/l10n_util.h" #include "app/resource_bundle.h" #include "base/basictypes.h" #include "base/string_util.h" #include "chrome/browser/chromeos/cros_network_library.h" #include "chrome/browser/chromeos/password_dialog_view.h" #include "chrome/common/pref_member.h" #include "chrome/common/pref_names.h" #include "grit/chromium_strings.h" #include "grit/generated_resources.h" #include "views/background.h" #include "views/controls/button/checkbox.h" #include "views/controls/combobox/combobox.h" #include "views/controls/slider/slider.h" #include "views/grid_layout.h" #include "views/standard_layout.h" #include "views/window/window.h" using views::GridLayout; using views::ColumnSet; namespace { //////////////////////////////////////////////////////////////////////////////// // WifiNetworkComboModel // The Combobox model for the list of wifi networks class WifiNetworkComboModel : public ComboboxModel { public: WifiNetworkComboModel(); virtual int GetItemCount(); virtual std::wstring GetItemAt(int index); bool HasWifiNetworks(); const WifiNetwork& GetWifiNetworkAt(int index); private: WifiNetworkVector wifi_networks_; DISALLOW_COPY_AND_ASSIGN(WifiNetworkComboModel); }; WifiNetworkComboModel::WifiNetworkComboModel() { wifi_networks_ = CrosNetworkLibrary::Get()->GetWifiNetworks(); } int WifiNetworkComboModel::GetItemCount() { // Item count is always 1 more than number of networks. // If there are no networks, then we show a message stating that. // If there are networks, the first item is empty. return static_cast(wifi_networks_.size()) + 1; } std::wstring WifiNetworkComboModel::GetItemAt(int index) { if (index == 0) { return wifi_networks_.empty() ? l10n_util::GetString(IDS_STATUSBAR_NO_NETWORKS_MESSAGE) : ASCIIToWide(""); } // If index is greater than one, we get the corresponding network, which is // in the wifi_networks_ list in [index-1] position. return ASCIIToWide(wifi_networks_[index-1].ssid); } bool WifiNetworkComboModel::HasWifiNetworks() { return !wifi_networks_.empty(); } const WifiNetwork& WifiNetworkComboModel::GetWifiNetworkAt(int index) { return wifi_networks_[index-1]; } //////////////////////////////////////////////////////////////////////////////// // NetworkSection // Network section for wifi settings class NetworkSection : public OptionsPageView, public views::Combobox::Listener, public PasswordDialogDelegate, public CrosNetworkLibrary::Observer { public: explicit NetworkSection(Profile* profile); virtual ~NetworkSection(); // Overridden from views::Combobox::Listener: virtual void ItemChanged(views::Combobox* sender, int prev_index, int new_index); // PasswordDialogDelegate implementation. virtual bool OnPasswordDialogCancel(); virtual bool OnPasswordDialogAccept(const std::string& ssid, const string16& password); // CrosNetworkLibrary::Observer implementation. virtual void NetworkChanged(CrosNetworkLibrary* obj); protected: // OptionsPageView overrides: virtual void InitControlLayout(); virtual void InitContents(); private: // The View that contains the contents of the section. views::View* contents_; // Controls for this section: views::Combobox* wifi_ssid_combobox_; // Used to store the index (in combobox) of the currently connected wifi. int last_selected_wifi_ssid_index_; // The activated wifi network. WifiNetwork activated_wifi_network_; // The wifi ssid models. WifiNetworkComboModel wifi_ssid_model_; DISALLOW_COPY_AND_ASSIGN(NetworkSection); }; //////////////////////////////////////////////////////////////////////////////// // NetworkSection NetworkSection::NetworkSection(Profile* profile) : OptionsPageView(profile), contents_(NULL), wifi_ssid_combobox_(NULL), last_selected_wifi_ssid_index_(0) { CrosNetworkLibrary::Get()->AddObserver(this); } NetworkSection::~NetworkSection() { CrosNetworkLibrary::Get()->RemoveObserver(this); } void NetworkSection::ItemChanged(views::Combobox* sender, int prev_index, int new_index) { if (new_index == prev_index) return; // Don't allow switching to the first item (which is empty). if (new_index == 0) { wifi_ssid_combobox_->SetSelectedItem(prev_index); return; } if (!wifi_ssid_model_.HasWifiNetworks()) return; last_selected_wifi_ssid_index_ = prev_index; activated_wifi_network_ = wifi_ssid_model_.GetWifiNetworkAt(new_index); // Connect to wifi here. Open password page if appropriate. if (activated_wifi_network_.encrypted) { views::Window* window = views::Window::CreateChromeWindow( NULL, gfx::Rect(), new PasswordDialogView(this, activated_wifi_network_.ssid)); window->SetIsAlwaysOnTop(true); window->Show(); } else { CrosNetworkLibrary::Get()->ConnectToWifiNetwork(activated_wifi_network_, string16()); } } bool NetworkSection::OnPasswordDialogCancel() { // Change combobox to previous setting. wifi_ssid_combobox_->SetSelectedItem(last_selected_wifi_ssid_index_); return true; } bool NetworkSection::OnPasswordDialogAccept(const std::string& ssid, const string16& password) { CrosNetworkLibrary::Get()->ConnectToWifiNetwork(activated_wifi_network_, password); return true; } void NetworkSection::NetworkChanged(CrosNetworkLibrary* obj) { if (wifi_ssid_model_.HasWifiNetworks()) { for (int i = 1; i < wifi_ssid_model_.GetItemCount(); i++) { if (wifi_ssid_model_.GetWifiNetworkAt(i).ssid == obj->wifi_ssid()) { last_selected_wifi_ssid_index_ = i; if (wifi_ssid_combobox_) wifi_ssid_combobox_->SetSelectedItem(i); return; } } } } void NetworkSection::InitControlLayout() { GridLayout* layout = new GridLayout(this); SetLayoutManager(layout); int single_column_layout_id = 0; ColumnSet* column_set = layout->AddColumnSet(single_column_layout_id); column_set->AddColumn(GridLayout::LEADING, GridLayout::LEADING, 0, GridLayout::USE_PREF, 0, 0); int inset_column_layout_id = 1; column_set = layout->AddColumnSet(inset_column_layout_id); column_set->AddPaddingColumn(0, kUnrelatedControlHorizontalSpacing); column_set->AddColumn(GridLayout::FILL, GridLayout::LEADING, 1, GridLayout::USE_PREF, 0, 0); layout->StartRow(0, single_column_layout_id); views::Label* title_label = new views::Label( l10n_util::GetString(IDS_OPTIONS_SETTINGS_SECTION_TITLE_NETWORK)); ResourceBundle& rb = ResourceBundle::GetSharedInstance(); gfx::Font title_font = rb.GetFont(ResourceBundle::BaseFont).DeriveFont(0, gfx::Font::BOLD); title_label->SetFont(title_font); layout->AddView(title_label); layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); layout->StartRow(0, inset_column_layout_id); InitContents(); layout->AddView(contents_); } void NetworkSection::InitContents() { contents_ = new views::View; GridLayout* layout = new GridLayout(contents_); contents_->SetLayoutManager(layout); wifi_ssid_combobox_ = new views::Combobox(&wifi_ssid_model_); wifi_ssid_combobox_->SetSelectedItem(last_selected_wifi_ssid_index_); wifi_ssid_combobox_->set_listener(this); int single_column_view_set_id = 0; ColumnSet* column_set = layout->AddColumnSet(single_column_view_set_id); column_set->AddColumn(GridLayout::FILL, GridLayout::CENTER, 1, GridLayout::USE_PREF, 0, 0); layout->StartRow(0, single_column_view_set_id); layout->AddView(wifi_ssid_combobox_); layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); } //////////////////////////////////////////////////////////////////////////////// // TouchpadSection class TouchpadSection : public OptionsPageView, public views::ButtonListener, public views::SliderListener { public: explicit TouchpadSection(Profile* profile); virtual ~TouchpadSection() {} // Overridden from views::ButtonListener: virtual void ButtonPressed(views::Button* sender, const views::Event& event); // Overridden from views::SliderListener: virtual void SliderValueChanged(views::Slider* sender); protected: // OptionsPageView overrides: virtual void InitControlLayout(); virtual void InitContents(); virtual void NotifyPrefChanged(const std::wstring* pref_name); private: // The View that contains the contents of the section. views::View* contents_; // Controls for this section: views::Checkbox* enable_tap_to_click_checkbox_; views::Checkbox* enable_vert_edge_scroll_checkbox_; views::Slider* speed_factor_slider_; views::Slider* sensitivity_slider_; // Preferences for this section: BooleanPrefMember tap_to_click_enabled_; BooleanPrefMember vert_edge_scroll_enabled_; IntegerPrefMember speed_factor_; IntegerPrefMember sensitivity_; DISALLOW_COPY_AND_ASSIGN(TouchpadSection); }; TouchpadSection::TouchpadSection(Profile* profile) : OptionsPageView(profile), contents_(NULL), enable_tap_to_click_checkbox_(NULL), enable_vert_edge_scroll_checkbox_(NULL), speed_factor_slider_(NULL), sensitivity_slider_(NULL) { } void TouchpadSection::ButtonPressed( views::Button* sender, const views::Event& event) { if (sender == enable_tap_to_click_checkbox_) { bool enabled = enable_tap_to_click_checkbox_->checked(); UserMetricsRecordAction(enabled ? L"Options_TapToClickCheckbox_Enable" : L"Options_TapToClickCheckbox_Disable", profile()->GetPrefs()); tap_to_click_enabled_.SetValue(enabled); } else if (sender == enable_vert_edge_scroll_checkbox_) { bool enabled = enable_vert_edge_scroll_checkbox_->checked(); UserMetricsRecordAction(enabled ? L"Options_VertEdgeScrollCheckbox_Enable" : L"Options_VertEdgeScrollCheckbox_Disable", profile()->GetPrefs()); vert_edge_scroll_enabled_.SetValue(enabled); } } void TouchpadSection::SliderValueChanged(views::Slider* sender) { if (sender == speed_factor_slider_) { double value = speed_factor_slider_->value(); UserMetricsRecordAction(L"Options_SpeedFactorSlider_Changed", profile()->GetPrefs()); speed_factor_.SetValue(value); } else if (sender == sensitivity_slider_) { double value = sensitivity_slider_->value(); UserMetricsRecordAction(L"Options_SensitivitySlider_Changed", profile()->GetPrefs()); sensitivity_.SetValue(value); } } void TouchpadSection::InitControlLayout() { GridLayout* layout = new GridLayout(this); SetLayoutManager(layout); int single_column_layout_id = 0; ColumnSet* column_set = layout->AddColumnSet(single_column_layout_id); column_set->AddColumn(GridLayout::LEADING, GridLayout::LEADING, 0, GridLayout::USE_PREF, 0, 0); int inset_column_layout_id = 1; column_set = layout->AddColumnSet(inset_column_layout_id); column_set->AddPaddingColumn(0, kUnrelatedControlHorizontalSpacing); column_set->AddColumn(GridLayout::FILL, GridLayout::LEADING, 1, GridLayout::USE_PREF, 0, 0); layout->StartRow(0, single_column_layout_id); views::Label* title_label = new views::Label( l10n_util::GetString(IDS_OPTIONS_SETTINGS_SECTION_TITLE_TOUCHPAD)); ResourceBundle& rb = ResourceBundle::GetSharedInstance(); gfx::Font title_font = rb.GetFont(ResourceBundle::BaseFont).DeriveFont(0, gfx::Font::BOLD); title_label->SetFont(title_font); layout->AddView(title_label); layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); layout->StartRow(0, inset_column_layout_id); InitContents(); layout->AddView(contents_); } void TouchpadSection::InitContents() { contents_ = new views::View; GridLayout* layout = new GridLayout(contents_); contents_->SetLayoutManager(layout); enable_tap_to_click_checkbox_ = new views::Checkbox(l10n_util::GetString( IDS_OPTIONS_SETTINGS_TAP_TO_CLICK_ENABLED_DESCRIPTION)); enable_tap_to_click_checkbox_->set_listener(this); enable_tap_to_click_checkbox_->SetMultiLine(true); enable_vert_edge_scroll_checkbox_ = new views::Checkbox(l10n_util::GetString( IDS_OPTIONS_SETTINGS_VERT_EDGE_SCROLL_ENABLED_DESCRIPTION)); enable_vert_edge_scroll_checkbox_->set_listener(this); enable_vert_edge_scroll_checkbox_->SetMultiLine(true); // Create speed factor slider with values between 1 and 10 step 1 speed_factor_slider_ = new views::Slider(1, 10, 1, static_cast( views::Slider::STYLE_DRAW_VALUE | views::Slider::STYLE_UPDATE_ON_RELEASE), this); // Create sensitivity slider with values between 1 and 10 step 1 sensitivity_slider_ = new views::Slider(1, 10, 1, static_cast( views::Slider::STYLE_DRAW_VALUE | views::Slider::STYLE_UPDATE_ON_RELEASE), this); int single_column_view_set_id = 0; ColumnSet* column_set = layout->AddColumnSet(single_column_view_set_id); column_set->AddColumn(GridLayout::FILL, GridLayout::CENTER, 1, GridLayout::USE_PREF, 0, 0); int double_column_view_set_id = 1; column_set = layout->AddColumnSet(double_column_view_set_id); column_set->AddColumn(GridLayout::FILL, GridLayout::CENTER, 0, GridLayout::USE_PREF, 0, 0); column_set->AddPaddingColumn(0, kRelatedControlHorizontalSpacing); column_set->AddColumn(GridLayout::FILL, GridLayout::CENTER, 1, GridLayout::USE_PREF, 0, 0); layout->StartRow(0, double_column_view_set_id); layout->AddView(new views::Label( l10n_util::GetString(IDS_OPTIONS_SETTINGS_SENSITIVITY_DESCRIPTION))); layout->AddView(sensitivity_slider_); layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); layout->StartRow(0, double_column_view_set_id); layout->AddView(new views::Label( l10n_util::GetString(IDS_OPTIONS_SETTINGS_SPEED_FACTOR_DESCRIPTION))); layout->AddView(speed_factor_slider_); layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); layout->StartRow(0, single_column_view_set_id); layout->AddView(enable_tap_to_click_checkbox_); layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); layout->StartRow(0, single_column_view_set_id); layout->AddView(enable_vert_edge_scroll_checkbox_); layout->AddPaddingRow(0, kUnrelatedControlVerticalSpacing); // Init member prefs so we can update the controls if prefs change. tap_to_click_enabled_.Init(prefs::kTapToClickEnabled, profile()->GetPrefs(), this); vert_edge_scroll_enabled_.Init(prefs::kVertEdgeScrollEnabled, profile()->GetPrefs(), this); speed_factor_.Init(prefs::kTouchpadSpeedFactor, profile()->GetPrefs(), this); sensitivity_.Init(prefs::kTouchpadSensitivity, profile()->GetPrefs(), this); } void TouchpadSection::NotifyPrefChanged(const std::wstring* pref_name) { if (!pref_name || *pref_name == prefs::kTapToClickEnabled) { bool enabled = tap_to_click_enabled_.GetValue(); enable_tap_to_click_checkbox_->SetChecked(enabled); } if (!pref_name || *pref_name == prefs::kVertEdgeScrollEnabled) { bool enabled = vert_edge_scroll_enabled_.GetValue(); enable_vert_edge_scroll_checkbox_->SetChecked(enabled); } if (!pref_name || *pref_name == prefs::kTouchpadSpeedFactor) { double value = speed_factor_.GetValue(); speed_factor_slider_->SetValue(value); } if (!pref_name || *pref_name == prefs::kTouchpadSensitivity) { double value = sensitivity_.GetValue(); sensitivity_slider_->SetValue(value); } } } // namespace //////////////////////////////////////////////////////////////////////////////// // SettingsContentsView //////////////////////////////////////////////////////////////////////////////// // SettingsContentsView, OptionsPageView implementation: void SettingsContentsView::InitControlLayout() { GridLayout* layout = CreatePanelGridLayout(this); SetLayoutManager(layout); int single_column_view_set_id = 0; ColumnSet* column_set = layout->AddColumnSet(single_column_view_set_id); column_set->AddColumn(GridLayout::FILL, GridLayout::FILL, 1, GridLayout::USE_PREF, 0, 0); layout->StartRow(0, single_column_view_set_id); layout->AddView(new NetworkSection(profile())); layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); layout->StartRow(0, single_column_view_set_id); layout->AddView(new TouchpadSection(profile())); layout->AddPaddingRow(0, kRelatedControlVerticalSpacing); }