// Copyright (c) 2010 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. cr.define('options', function() { var OptionsPage = options.OptionsPage; // // BrowserOptions class // Encapsulated handling of browser options page. // function BrowserOptions() { OptionsPage.call(this, 'browser', templateData.browserPage, 'browserPage'); } cr.addSingletonGetter(BrowserOptions); BrowserOptions.prototype = { // Inherit BrowserOptions from OptionsPage. __proto__: options.OptionsPage.prototype, /** * Initialize BrowserOptions page. */ initializePage: function() { // Call base class implementation to start preference initialization. OptionsPage.prototype.initializePage.call(this); // Wire up controls. var self = this; $('startupPages').onchange = function(event) { self.updateRemoveButtonState_(); }; $('startupAddButton').onclick = function(event) { OptionsPage.showOverlay('addStartupPageOverlay'); }; $('startupRemoveButton').onclick = function(event) { self.removeSelectedStartupPages_(); }; $('startupUseCurrentButton').onclick = function(event) { chrome.send('setStartupPagesToCurrentPages'); }; $('defaultSearchManageEnginesButton').onclick = function(event) { OptionsPage.showPageByName('searchEngines'); }; if (!cr.isChromeOS) { $('defaultBrowserUseAsDefaultButton').onclick = function(event) { chrome.send('becomeDefaultBrowser'); }; } // Initialize control enabled states. Preferences.getInstance().addEventListener('session.restore_on_startup', cr.bind(this.updateCustomStartupPageControlStates_, this)); Preferences.getInstance().addEventListener('homepage_is_newtabpage', cr.bind(this.updateHomepageFieldState_, this)); this.updateCustomStartupPageControlStates_(); this.updateHomepageFieldState_(); // Remove Windows-style accelerators from button labels. // TODO(stuartmorgan): Remove this once the strings are updated. $('startupAddButton').textContent = localStrings.getStringWithoutAccelerator('startupAddButton'); $('startupRemoveButton').textContent = localStrings.getStringWithoutAccelerator('startupRemoveButton'); }, /** * Update the Default Browsers section based on the current state. * @private * @param {string} statusString Description of the current default state. * @param {boolean} isDefault Whether or not the browser is currently * default. */ updateDefaultBrowserState_: function(statusString, isDefault) { var label = $('defaultBrowserState'); label.textContent = statusString; if (isDefault) { label.classList.add('current'); } else { label.classList.remove('current'); } $('defaultBrowserUseAsDefaultButton').disabled = isDefault; }, /** * Clears the search engine popup. * @private */ clearSearchEngines_: function() { $('defaultSearchEngine').textContent = ''; }, /** * Updates the search engine popup with the given entries. * @param {Array} engines List of available search engines. * @param {Integer} defaultValue The value of the current default engine. */ updateSearchEngines_: function(engines, defaultValue) { this.clearSearchEngines_(); engineSelect = $('defaultSearchEngine'); engineCount = engines.length; var defaultIndex = -1; for (var i = 0; i < engineCount; i++) { var engine = engines[i]; var option = new Option(engine['name'], engine['index']); if (defaultValue == option.value) defaultIndex = i; engineSelect.appendChild(option); } if (defaultIndex >= 0) engineSelect.selectedIndex = defaultIndex; }, /** * Clears the startup page list. * @private */ clearStartupPages_: function() { $('startupPages').textContent = ''; }, /** * Returns true if the custom startup page control block should * be enabled. * @private * @returns {boolean} Whether the startup page controls should be * enabled. */ shouldEnableCustomStartupPageControls_: function(pages) { return $('startupShowPagesButton').checked; }, /** * Updates the startup pages list with the given entries. * @private * @param {Array} pages List of startup pages. */ updateStartupPages_: function(pages) { // TODO(stuartmorgan): Replace