Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3169)

Unified Diff: chrome/browser/tab_contents/spellchecker_submenu_observer.cc

Issue 8363042: Refactor the "spell-checker options" submenu. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/tab_contents/spellchecker_submenu_observer.cc
===================================================================
--- chrome/browser/tab_contents/spellchecker_submenu_observer.cc (revision 0)
+++ chrome/browser/tab_contents/spellchecker_submenu_observer.cc (revision 0)
@@ -0,0 +1,185 @@
+// Copyright (c) 2011 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/tab_contents/spellchecker_submenu_observer.h"
+
+#include "base/logging.h"
+#include "chrome/app/chrome_command_ids.h"
+#include "chrome/browser/browser_process.h"
+#include "chrome/browser/prefs/pref_member.h"
+#include "chrome/browser/prefs/pref_service.h"
+#include "chrome/browser/spellchecker/spellcheck_host.h"
+#include "chrome/browser/spellchecker/spellchecker_platform_engine.h"
+#include "chrome/browser/tab_contents/render_view_context_menu.h"
+#include "chrome/common/pref_names.h"
+#include "chrome/common/spellcheck_messages.h"
+#include "content/browser/renderer_host/render_view_host.h"
+#include "grit/generated_resources.h"
+#include "ui/base/l10n/l10n_util.h"
+#include "ui/base/models/simple_menu_model.h"
+
+SpellCheckerSubMenuObserver::SpellCheckerSubMenuObserver(
+ RenderViewContextMenuProxy* proxy,
+ ui::SimpleMenuModel::Delegate* delegate,
+ int group)
+ : proxy_(proxy),
+ submenu_model_(delegate),
+ spellcheck_enabled_(false),
+ language_group_(group),
+ language_selected_(0) {
+ DCHECK(proxy_);
+}
+
+SpellCheckerSubMenuObserver::~SpellCheckerSubMenuObserver() {
+}
+
+void SpellCheckerSubMenuObserver::InitMenu(const ContextMenuParams& params) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+
+ //
Avi (use Gerrit) 2011/10/27 12:40:03 intended blank comment?
Hironori Bono 2011/10/28 07:14:09 Done.
+ spellcheck_enabled_ = params.spellcheck_enabled;
+
+ // Add Spell Check languages to sub menu.
+ Profile* profile = proxy_->GetProfile();
+ language_selected_ =
+ SpellCheckHost::GetSpellCheckLanguages(profile, &languages_);
+ DCHECK(languages_.size() <
+ IDC_SPELLCHECK_LANGUAGES_LAST - IDC_SPELLCHECK_LANGUAGES_FIRST);
+ const std::string app_locale = g_browser_process->GetApplicationLocale();
+ for (size_t i = 0; i < languages_.size(); ++i) {
+ string16 display_name(
+ l10n_util::GetDisplayNameForLocale(languages_[i], app_locale, true));
+ submenu_model_.AddRadioItem(IDC_SPELLCHECK_LANGUAGES_FIRST + i,
+ display_name,
+ language_group_);
+ }
+
+ // Add item in the sub menu to pop up the fonts and languages options menu.
+ submenu_model_.AddSeparator();
+ submenu_model_.AddItemWithStringId(
+ IDC_CONTENT_CONTEXT_LANGUAGE_SETTINGS,
+ IDS_CONTENT_CONTEXT_LANGUAGE_SETTINGS);
+
+ // Add 'Check the spelling of this field' item in the sub menu.
+ submenu_model_.AddCheckItem(
+ IDC_CHECK_SPELLING_OF_THIS_FIELD,
+ l10n_util::GetStringUTF16(
+ IDS_CONTENT_CONTEXT_CHECK_SPELLING_OF_THIS_FIELD));
+
+ // Add option for showing the spelling panel if the platform spellchecker
+ // supports it.
+ if (SpellCheckerPlatform::SpellCheckerAvailable() &&
+ SpellCheckerPlatform::SpellCheckerProvidesPanel()) {
+ submenu_model_.AddCheckItem(
+ IDC_SPELLPANEL_TOGGLE,
+ l10n_util::GetStringUTF16(
+ SpellCheckerPlatform::SpellingPanelVisible() ?
+ IDS_CONTENT_CONTEXT_HIDE_SPELLING_PANEL :
+ IDS_CONTENT_CONTEXT_SHOW_SPELLING_PANEL));
+ }
+
+ proxy_->AddSubMenu(
+ IDC_SPELLCHECK_MENU,
+ l10n_util::GetStringUTF16(IDS_CONTENT_CONTEXT_SPELLCHECK_MENU),
+ &submenu_model_);
+}
+
+bool SpellCheckerSubMenuObserver::IsCommandIdSupported(int command_id) {
+ // Allow Spell Check language items on sub menu for text area context menu.
+ if (command_id >= IDC_SPELLCHECK_LANGUAGES_FIRST &&
+ command_id < IDC_SPELLCHECK_LANGUAGES_LAST) {
+ return true;
+ }
+
+ switch (command_id) {
+ case IDC_CONTENT_CONTEXT_LANGUAGE_SETTINGS:
+ // Return false so RenderViewContextMenu can handle this item because it
+ // is hard for this class to handle it.
+ return false;
+
+ case IDC_CHECK_SPELLING_OF_THIS_FIELD:
+ case IDC_SPELLPANEL_TOGGLE:
+ case IDC_SPELLCHECK_MENU:
+ return true;
+ }
+
+ return false;
+}
+
+bool SpellCheckerSubMenuObserver::IsCommandIdChecked(int command_id) {
+ DCHECK(IsCommandIdSupported(command_id));
+
+ if (command_id >= IDC_SPELLCHECK_LANGUAGES_FIRST &&
+ command_id < IDC_SPELLCHECK_LANGUAGES_LAST) {
+ return language_selected_ == command_id - IDC_SPELLCHECK_LANGUAGES_FIRST;
+ }
+
+ // Check box for 'Check the Spelling of this field'.
+ if (command_id == IDC_CHECK_SPELLING_OF_THIS_FIELD) {
+ Profile* profile = proxy_->GetProfile();
+ if (!profile || !profile->GetPrefs()->GetBoolean(prefs::kEnableSpellCheck))
+ return false;
+ return spellcheck_enabled_;
+ }
+
+ return false;
+}
+
+bool SpellCheckerSubMenuObserver::IsCommandIdEnabled(int command_id) {
+ DCHECK(IsCommandIdSupported(command_id));
+
+ Profile* profile = proxy_->GetProfile();
+ if (!profile)
+ return false;
+
+ const PrefService* pref = profile->GetPrefs();
+ if (command_id >= IDC_SPELLCHECK_LANGUAGES_FIRST &&
+ command_id < IDC_SPELLCHECK_LANGUAGES_LAST) {
+ return pref->GetBoolean(prefs::kEnableSpellCheck);
+ }
+
+ switch (command_id) {
+ case IDC_CHECK_SPELLING_OF_THIS_FIELD:
+ return pref->GetBoolean(prefs::kEnableSpellCheck);
+
+ case IDC_SPELLPANEL_TOGGLE:
+ return true;
+
+ case IDC_SPELLCHECK_MENU:
+ return true;
+ }
+
+ return false;
+}
+
+void SpellCheckerSubMenuObserver::ExecuteCommand(int command_id) {
+ DCHECK(IsCommandIdSupported(command_id));
+
+ // Check to see if one of the spell check language ids have been clicked.
+ if (command_id >= IDC_SPELLCHECK_LANGUAGES_FIRST &&
+ command_id < IDC_SPELLCHECK_LANGUAGES_LAST) {
+ Profile* profile = proxy_->GetProfile();
+ const size_t language = command_id - IDC_SPELLCHECK_LANGUAGES_FIRST;
+ if (profile && language < languages_.size()) {
+ StringPrefMember dictionary_language;
+ dictionary_language.Init(prefs::kSpellCheckDictionary,
+ profile->GetPrefs(),
+ NULL);
+ dictionary_language.SetValue(languages_[language]);
+ }
+ return;
+ }
+
+ RenderViewHost* rvh = proxy_->GetRenderViewHost();
+ switch (command_id) {
+ case IDC_CHECK_SPELLING_OF_THIS_FIELD:
+ rvh->Send(new SpellCheckMsg_ToggleSpellCheck(rvh->routing_id()));
+ break;
+
+ case IDC_SPELLPANEL_TOGGLE:
+ rvh->Send(new SpellCheckMsg_ToggleSpellPanel(
+ rvh->routing_id(), SpellCheckerPlatform::SpellingPanelVisible()));
+ break;
+ }
+}
Property changes on: chrome\browser\tab_contents\spellchecker_submenu_observer.cc
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698