blob: c142a678cd6de9ec1efbf642e3cbf8494198b632 (
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
|
// Copyright (c) 2010 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_VIEWS_JSMESSAGE_BOX_DIALOG_H_
#define CHROME_BROWSER_VIEWS_JSMESSAGE_BOX_DIALOG_H_
#include "chrome/browser/js_modal_dialog.h"
#include <string>
#include "app/message_box_flags.h"
#include "chrome/browser/jsmessage_box_client.h"
#include "chrome/browser/views/modal_dialog_delegate.h"
class MessageBoxView;
class JavaScriptMessageBoxClient;
class JavaScriptMessageBoxDialog : public ModalDialogDelegate {
public:
JavaScriptMessageBoxDialog(JavaScriptAppModalDialog* parent,
const std::wstring& message_text,
const std::wstring& default_prompt_text,
bool display_suppress_checkbox);
virtual ~JavaScriptMessageBoxDialog();
// Overriden from ModalDialogDelegate:
virtual gfx::NativeWindow GetDialogRootWindow();
// Overriden from views::DialogDelegate:
virtual int GetDefaultDialogButton() const;
virtual int GetDialogButtons() const;
virtual std::wstring GetWindowTitle() const;
virtual void WindowClosing();
virtual void DeleteDelegate();
virtual bool Cancel();
virtual bool Accept();
virtual std::wstring GetDialogButtonLabel(
MessageBoxFlags::DialogButton button) const;
// Overriden from views::WindowDelegate:
virtual bool IsModal() const { return true; }
virtual views::View* GetContentsView();
virtual views::View* GetInitiallyFocusedView();
virtual void OnClose();
private:
JavaScriptMessageBoxClient* client() {
return parent_->client();
}
// A pointer to the AppModalDialog that owns us.
JavaScriptAppModalDialog* parent_;
// The message box view whose commands we handle.
MessageBoxView* message_box_view_;
DISALLOW_COPY_AND_ASSIGN(JavaScriptMessageBoxDialog);
};
#endif // CHROME_BROWSER_VIEWS_JSMESSAGE_BOX_DIALOG_H_
|