// 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. #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_H_ #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_H_ #include #include #include #include "base/memory/scoped_ptr.h" #include "base/stl_util.h" #include "chrome/common/extensions/api/extension_action/action_info.h" #include "third_party/skia/include/core/SkColor.h" class GURL; namespace content { class BrowserContext; } namespace extensions { class Extension; class IconImage; } namespace gfx { class Canvas; class Image; class ImageSkia; class Rect; class Size; } // ExtensionAction encapsulates the state of a browser action or page action. // Instances can have both global and per-tab state. If a property does not have // a per-tab value, the global value is used instead. class ExtensionAction { public: // The action that the UI should take after the ExtensionAction is clicked. enum ShowAction { ACTION_NONE, ACTION_SHOW_POPUP, // We don't need a SHOW_CONTEXT_MENU because that's handled separately in // the UI. }; // Use this ID to indicate the default state for properties that take a tab_id // parameter. static const int kDefaultTabId; // Max size (both dimensions) for page actions. static const int kPageActionIconMaxSize; ExtensionAction(const extensions::Extension& extension, extensions::ActionInfo::Type action_type, const extensions::ActionInfo& manifest_data); ~ExtensionAction(); // extension id const std::string& extension_id() const { return extension_id_; } // What kind of action is this? extensions::ActionInfo::Type action_type() const { return action_type_; } // action id -- only used with legacy page actions API std::string id() const { return id_; } void set_id(const std::string& id) { id_ = id; } // Set the url which the popup will load when the user clicks this action's // icon. Setting an empty URL will disable the popup for a given tab. void SetPopupUrl(int tab_id, const GURL& url); // Use HasPopup() to see if a popup should be displayed. bool HasPopup(int tab_id) const; // Get the URL to display in a popup. GURL GetPopupUrl(int tab_id) const; // Set this action's title on a specific tab. void SetTitle(int tab_id, const std::string& title) { SetValue(&title_, tab_id, title); } // If tab |tab_id| has a set title, return it. Otherwise, return // the default title. std::string GetTitle(int tab_id) const { return GetValue(&title_, tab_id); } // Icons are a bit different because the default value can be set to either a // bitmap or a path. However, conceptually, there is only one default icon. // Setting the default icon using a path clears the bitmap and vice-versa. // To retrieve the icon for the extension action, use // ExtensionActionIconFactory. // Set this action's icon bitmap on a specific tab. void SetIcon(int tab_id, const gfx::Image& image); // Tries to parse |*icon| from a dictionary {"19": imageData19, "38": // imageData38}, returning false if a value is corrupt. static bool ParseIconFromCanvasDictionary(const base::DictionaryValue& dict, gfx::ImageSkia* icon); // Gets the icon that has been set using |SetIcon| for the tab. gfx::Image GetExplicitlySetIcon(int tab_id) const; // Sets the icon for a tab, in a way that can't be read by the extension's // javascript. Multiple icons can be set at the same time; some icon with the // highest priority will be used. void DeclarativeSetIcon(int tab_id, int priority, const gfx::Image& icon); void UndoDeclarativeSetIcon(int tab_id, int priority, const gfx::Image& icon); const ExtensionIconSet* default_icon() const { return default_icon_.get(); } // Set this action's badge text on a specific tab. void SetBadgeText(int tab_id, const std::string& text) { SetValue(&badge_text_, tab_id, text); } // Get the badge text for a tab, or the default if no badge text was set. std::string GetBadgeText(int tab_id) const { return GetValue(&badge_text_, tab_id); } // Set this action's badge text color on a specific tab. void SetBadgeTextColor(int tab_id, SkColor text_color) { SetValue(&badge_text_color_, tab_id, text_color); } // Get the text color for a tab, or the default color if no text color // was set. SkColor GetBadgeTextColor(int tab_id) const { return GetValue(&badge_text_color_, tab_id); } // Set this action's badge background color on a specific tab. void SetBadgeBackgroundColor(int tab_id, SkColor color) { SetValue(&badge_background_color_, tab_id, color); } // Get the badge background color for a tab, or the default if no color // was set. SkColor GetBadgeBackgroundColor(int tab_id) const { return GetValue(&badge_background_color_, tab_id); } // Set this action's badge visibility on a specific tab. Returns true if // the visibility has changed. bool SetIsVisible(int tab_id, bool value); // The declarative appearance overrides a default appearance but is overridden // by an appearance set directly on the tab. void DeclarativeShow(int tab_id); void UndoDeclarativeShow(int tab_id); const gfx::Image GetDeclarativeIcon(int tab_id) const; // Get the badge visibility for a tab, or the default badge visibility // if none was set. // Gets the visibility of |tab_id|. Returns the first of: a specific // visibility set on the tab; a declarative visibility set on the tab; the // default visibility set for all tabs; or |false|. Don't return this // result to an extension's background page because the declarative state can // leak information about hosts the extension doesn't have permission to // access. bool GetIsVisible(int tab_id) const { if (const bool* tab_is_visible = FindOrNull(&is_visible_, tab_id)) return *tab_is_visible; if (ContainsKey(declarative_show_count_, tab_id)) return true; if (const bool* default_is_visible = FindOrNull(&is_visible_, kDefaultTabId)) return *default_is_visible; return false; } // Remove all tab-specific state. void ClearAllValuesForTab(int tab_id); // Lazily loads and returns the default icon image, if one exists for the // action. extensions::IconImage* LoadDefaultIconImage( const extensions::Extension& extension, content::BrowserContext* browser_context); // Returns the image to use as the default icon for the action. Can only be // called after LoadDefaultIconImage(). gfx::Image GetDefaultIconImage() const; // Determine whether or not the ExtensionAction has a value set for the given // |tab_id| for each property. bool HasPopupUrl(int tab_id) const; bool HasTitle(int tab_id) const; bool HasBadgeText(int tab_id) const; bool HasBadgeBackgroundColor(int tab_id) const; bool HasBadgeTextColor(int tab_id) const; bool HasIsVisible(int tab_id) const; bool HasIcon(int tab_id) const; void SetDefaultIconForTest(scoped_ptr default_icon); private: // Populates the action from the |extension| and |manifest_data|, filling in // any missing values (like title or icons) as possible. void Populate(const extensions::Extension& extension, const extensions::ActionInfo& manifest_data); // Returns width of the current icon for tab_id. // TODO(tbarzic): The icon selection is done in ExtensionActionIconFactory. // We should probably move this there too. int GetIconWidth(int tab_id) const; template struct ValueTraits { static T CreateEmpty() { return T(); } }; template void SetValue(std::map* map, int tab_id, const T& val) { (*map)[tab_id] = val; } template static const typename Map::mapped_type* FindOrNull( const Map* map, const typename Map::key_type& key) { typename Map::const_iterator iter = map->find(key); if (iter == map->end()) return NULL; return &iter->second; } template T GetValue(const std::map* map, int tab_id) const { if (const T* tab_value = FindOrNull(map, tab_id)) { return *tab_value; } else if (const T* default_value = FindOrNull(map, kDefaultTabId)) { return *default_value; } else { return ValueTraits::CreateEmpty(); } } // The id for the extension this action belongs to (as defined in the // extension manifest). const std::string extension_id_; // The name of the extension. const std::string extension_name_; const extensions::ActionInfo::Type action_type_; // Each of these data items can have both a global state (stored with the key // kDefaultTabId), or tab-specific state (stored with the tab_id as the key). std::map popup_url_; std::map title_; std::map icon_; std::map badge_text_; std::map badge_background_color_; std::map badge_text_color_; std::map is_visible_; // Declarative state exists for two reasons: First, we need to hide it from // the extension's background/event page to avoid leaking data from hosts the // extension doesn't have permission to access. Second, the action's state // gets both reset and given its declarative values in response to a // WebContentsObserver::DidNavigateMainFrame event, and there's no way to set // those up to be called in the right order. // Maps tab_id to the number of active (applied-but-not-reverted) // declarativeContent.ShowPageAction actions. std::map declarative_show_count_; // declarative_icon_[tab_id][declarative_rule_priority] is a vector of icon // images that are currently in effect std::map > > declarative_icon_; // ExtensionIconSet containing paths to bitmaps from which default icon's // image representations will be selected. scoped_ptr default_icon_; // The default icon image, if |default_icon_| exists. // Lazily initialized via LoadDefaultIconImage(). scoped_ptr default_icon_image_; // The id for the ExtensionAction, for example: "RssPageAction". This is // needed for compat with an older version of the page actions API. std::string id_; DISALLOW_COPY_AND_ASSIGN(ExtensionAction); }; template<> struct ExtensionAction::ValueTraits { static int CreateEmpty() { return -1; } }; #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_H_