blob: 27110b5d0308b659f72afe3664077cd07ff6191d [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_CONFIRM_BUBBLE_VIEWS_H_
#define CHROME_BROWSER_UI_VIEWS_CONFIRM_BUBBLE_VIEWS_H_
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "ui/views/controls/link_listener.h"
#include "ui/views/window/dialog_delegate.h"
class ConfirmBubbleModel;
// A dialog (with the standard Title/(x)/[OK]/[Cancel] UI elements), as well as
// a message Label and optional Link. The dialog ultimately appears like this:
// +------------------------+
// | Title (x) |
// | Label |
// | Link [OK] [Cancel] |
// +------------------------+
//
// TODO(msw): Remove this class or merge it with DialogDelegateView.
class ConfirmBubbleViews : public views::DialogDelegateView,
public views::LinkListener {
public:
explicit ConfirmBubbleViews(ConfirmBubbleModel* model);
protected:
virtual ~ConfirmBubbleViews();
// views::DialogDelegate implementation.
virtual base::string16 GetDialogButtonLabel(
ui::DialogButton button) const override;
virtual bool IsDialogButtonEnabled(ui::DialogButton button) const override;
virtual views::View* CreateExtraView() override;
virtual bool Cancel() override;
virtual bool Accept() override;
// views::WidgetDelegate implementation.
virtual ui::ModalType GetModalType() const override;
virtual base::string16 GetWindowTitle() const override;
// views::LinkListener implementation.
virtual void LinkClicked(views::Link* source, int event_flags) override;
private:
// The model to customize this bubble view.
scoped_ptr<ConfirmBubbleModel> model_;
views::Link* link_;
DISALLOW_COPY_AND_ASSIGN(ConfirmBubbleViews);
};
#endif // CHROME_BROWSER_UI_VIEWS_CONFIRM_BUBBLE_VIEWS_H_