blob: 789f1364dd6894c21e40b529c0488bb8fd9ec1c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// 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_VIEWS_JS_MODAL_DIALOG_VIEWS_H_
#define CHROME_BROWSER_UI_VIEWS_JS_MODAL_DIALOG_VIEWS_H_
#pragma once
#include "chrome/browser/ui/app_modal_dialogs/js_modal_dialog.h"
#include <string>
#include "chrome/browser/ui/app_modal_dialogs/native_app_modal_dialog.h"
#include "ui/base/message_box_flags.h"
#include "views/window/dialog_delegate.h"
namespace views {
class MessageBoxView;
}
class JSModalDialogViews : public NativeAppModalDialog,
public views::DialogDelegate {
public:
explicit JSModalDialogViews(JavaScriptAppModalDialog* parent);
virtual ~JSModalDialogViews();
// Overridden from NativeAppModalDialog:
virtual int GetAppModalDialogButtons() const OVERRIDE;
virtual void ShowAppModalDialog() OVERRIDE;
virtual void ActivateAppModalDialog() OVERRIDE;
virtual void CloseAppModalDialog() OVERRIDE;
virtual void AcceptAppModalDialog() OVERRIDE;
virtual void CancelAppModalDialog() OVERRIDE;
// Overridden from views::DialogDelegate:
virtual int GetDefaultDialogButton() const OVERRIDE;
virtual int GetDialogButtons() const OVERRIDE;
virtual string16 GetWindowTitle() const OVERRIDE;
virtual void WindowClosing() OVERRIDE;
virtual void DeleteDelegate() OVERRIDE;
virtual bool Cancel() OVERRIDE;
virtual bool Accept() OVERRIDE;
virtual std::wstring GetDialogButtonLabel(
ui::MessageBoxFlags::DialogButton button) const OVERRIDE;
// Overridden from views::WidgetDelegate:
virtual bool IsModal() const OVERRIDE;
virtual views::View* GetContentsView() OVERRIDE;
virtual views::View* GetInitiallyFocusedView() OVERRIDE;
virtual void OnClose() OVERRIDE;
virtual views::Widget* GetWidget() OVERRIDE;
virtual const views::Widget* GetWidget() const OVERRIDE;
private:
// A pointer to the AppModalDialog that owns us.
JavaScriptAppModalDialog* parent_;
// The message box view whose commands we handle.
views::MessageBoxView* message_box_view_;
DISALLOW_COPY_AND_ASSIGN(JSModalDialogViews);
};
#endif // CHROME_BROWSER_UI_VIEWS_JS_MODAL_DIALOG_VIEWS_H_
|