blob: 98803b304c31602bdbd69641f7af77ec27eebf52 [file] [log] [blame]
// 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.
#ifndef CHROME_BROWSER_UI_CONTENT_SETTINGS_CONTENT_SETTING_IMAGE_MODEL_H_
#define CHROME_BROWSER_UI_CONTENT_SETTINGS_CONTENT_SETTING_IMAGE_MODEL_H_
#include <memory>
#include <vector>
#include "base/macros.h"
#include "base/strings/string16.h"
#include "build/build_config.h"
#include "chrome/browser/ui/content_settings/content_setting_bubble_model.h"
#include "chrome/browser/ui/content_settings/content_setting_bubble_model_delegate.h"
#include "components/content_settings/core/common/content_settings_types.h"
#include "ui/gfx/image/image.h"
namespace content {
class WebContents;
}
namespace gfx {
struct VectorIcon;
}
// This model provides data (icon ids and tooltip) for the content setting icons
// that are displayed in the location bar.
class ContentSettingImageModel {
public:
// The type of the content setting image model. This enum is used in
// histograms and thus is append-only.
enum class ImageType {
COOKIES = 0,
IMAGES = 1,
JAVASCRIPT = 2,
PPAPI_BROKER = 3,
PLUGINS = 4,
POPUPS = 5,
GEOLOCATION = 6,
MIXEDSCRIPT = 7,
PROTOCOL_HANDLERS = 8,
MEDIASTREAM = 9,
ADS = 10,
AUTOMATIC_DOWNLOADS = 11,
MIDI_SYSEX = 12,
SOUND = 13,
FRAMEBUST = 14,
CLIPBOARD_READ = 15,
NUM_IMAGE_TYPES
};
virtual ~ContentSettingImageModel() {}
// Generates a vector of all image models to be used within one window.
static std::vector<std::unique_ptr<ContentSettingImageModel>>
GenerateContentSettingImageModels();
// Returns the corresponding index into the above vector for the given
// ContentSettingsType. For testing.
static size_t GetContentSettingImageModelIndexForTesting(
ImageType image_type);
// Factory method.
static std::unique_ptr<ContentSettingImageModel> CreateForContentType(
ImageType image_type);
// Notifies this model that its setting might have changed and it may need to
// update its visibility, icon and tooltip.
virtual void UpdateFromWebContents(content::WebContents* web_contents) = 0;
// Creates the model for the bubble that will be attached to this image.
// The bubble model is owned by the caller.
ContentSettingBubbleModel* CreateBubbleModel(
ContentSettingBubbleModel::Delegate* delegate,
content::WebContents* web_contents,
Profile* profile);
// Whether the animation should be run for the given |web_contents|.
virtual bool ShouldRunAnimation(content::WebContents* web_contents) = 0;
// Remembers that the animation has already run for the given |web_contents|,
// so that we do not restart it when the parent view is updated.
virtual void SetAnimationHasRun(content::WebContents* web_contents) = 0;
bool is_visible() const { return is_visible_; }
#if defined(OS_MACOSX)
// Calls UpdateFromWebContents() and returns true if the icon has changed.
bool UpdateFromWebContentsAndCheckIfIconChanged(
content::WebContents* web_contents);
#endif
gfx::Image GetIcon(SkColor icon_color) const;
// Returns the resource ID of a string to show when the icon appears, or 0 if
// we don't wish to show anything.
int explanatory_string_id() const { return explanatory_string_id_; }
const base::string16& get_tooltip() const { return tooltip_; }
ImageType image_type() const { return image_type_; }
protected:
explicit ContentSettingImageModel(ImageType type);
// Internal implementation by subclasses of bubble model creation.
virtual ContentSettingBubbleModel* CreateBubbleModelImpl(
ContentSettingBubbleModel::Delegate* delegate,
content::WebContents* web_contents,
Profile* profile) = 0;
void set_icon(const gfx::VectorIcon& icon, const gfx::VectorIcon& badge) {
icon_ = &icon;
icon_badge_ = &badge;
}
void set_visible(bool visible) { is_visible_ = visible; }
void set_explanatory_string_id(int text_id) {
explanatory_string_id_ = text_id;
}
void set_tooltip(const base::string16& tooltip) { tooltip_ = tooltip; }
private:
bool is_visible_;
const gfx::VectorIcon* icon_;
const gfx::VectorIcon* icon_badge_;
int explanatory_string_id_;
base::string16 tooltip_;
const ImageType image_type_;
DISALLOW_COPY_AND_ASSIGN(ContentSettingImageModel);
};
// A subclass for an image model tied to a single content type.
class ContentSettingSimpleImageModel : public ContentSettingImageModel {
public:
ContentSettingSimpleImageModel(ImageType type,
ContentSettingsType content_type);
// ContentSettingImageModel implementation.
ContentSettingBubbleModel* CreateBubbleModelImpl(
ContentSettingBubbleModel::Delegate* delegate,
content::WebContents* web_contents,
Profile* profile) override;
bool ShouldRunAnimation(content::WebContents* web_contents) override;
void SetAnimationHasRun(content::WebContents* web_contents) override;
ContentSettingsType content_type() { return content_type_; }
private:
ContentSettingsType content_type_;
DISALLOW_COPY_AND_ASSIGN(ContentSettingSimpleImageModel);
};
// Image model for subresource filter icons in the location bar.
class ContentSettingSubresourceFilterImageModel
: public ContentSettingImageModel {
public:
ContentSettingSubresourceFilterImageModel();
void UpdateFromWebContents(content::WebContents* web_contents) override;
ContentSettingBubbleModel* CreateBubbleModelImpl(
ContentSettingBubbleModel::Delegate* delegate,
content::WebContents* web_contents,
Profile* profile) override;
bool ShouldRunAnimation(content::WebContents* web_contents) override;
void SetAnimationHasRun(content::WebContents* web_contents) override;
private:
DISALLOW_COPY_AND_ASSIGN(ContentSettingSubresourceFilterImageModel);
};
class ContentSettingFramebustBlockImageModel : public ContentSettingImageModel {
public:
ContentSettingFramebustBlockImageModel();
void UpdateFromWebContents(content::WebContents* web_contents) override;
ContentSettingBubbleModel* CreateBubbleModelImpl(
ContentSettingBubbleModel::Delegate* delegate,
content::WebContents* web_contents,
Profile* profile) override;
bool ShouldRunAnimation(content::WebContents* web_contents) override;
void SetAnimationHasRun(content::WebContents* web_contents) override;
private:
DISALLOW_COPY_AND_ASSIGN(ContentSettingFramebustBlockImageModel);
};
#endif // CHROME_BROWSER_UI_CONTENT_SETTINGS_CONTENT_SETTING_IMAGE_MODEL_H_