blob: 0b6a31e76a482702000ab13e5e5ef0c06a0890f3 [file] [log] [blame]
// 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_UI_VIEWS_COOKIE_INFO_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_COOKIE_INFO_VIEW_H_
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/controls/scroll_view.h"
namespace views {
class GridLayout;
class Textfield;
}
namespace net {
class CanonicalCookie;
}
///////////////////////////////////////////////////////////////////////////////
// CookieInfoView
//
// Responsible for displaying a tabular grid of Cookie information.
class CookieInfoView : public views::ScrollView {
public:
METADATA_HEADER(CookieInfoView);
CookieInfoView();
CookieInfoView(const CookieInfoView&) = delete;
CookieInfoView& operator=(const CookieInfoView&) = delete;
~CookieInfoView() override;
// Update the display from the specified CookieNode.
void SetCookie(const std::string& domain,
const net::CanonicalCookie& cookie_node);
// Clears the cookie display to indicate that no or multiple cookies are
// selected.
void ClearCookieDisplay();
// Enables or disables the cookie property text fields.
void EnableCookieDisplay(bool enabled);
void OnThemeChanged() override;
private:
enum class CookieProperty {
kName,
kContent,
kDomain,
kPath,
kSendFor,
kCreated,
kExpires,
};
// Layout helper routines.
views::Textfield* AddTextfieldRow(int layout_id,
views::GridLayout* layout,
int label_message_id);
void SetTextfieldColors();
std::unordered_map<CookieProperty, views::Textfield*> property_textfields_;
};
#endif // CHROME_BROWSER_UI_VIEWS_COOKIE_INFO_VIEW_H_