1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_METRO_DRIVER_METRO_DIALOG_BOX_H_
6 #define CHROME_BROWSER_UI_METRO_DRIVER_METRO_DIALOG_BOX_H_
8 #include <windows.ui.popups.h>
11 #include "base/logging.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/win/metro.h"
15 // Provides functionality to display a dialog box
16 class MetroDialogBox
: public winui::Popups::IUICommandInvokedHandler
{
18 struct DialogBoxInfo
{
20 base::string16 content
;
21 base::string16 button1_label
;
22 base::string16 button2_label
;
23 base::win::MetroDialogButtonPressedHandler button1_handler
;
24 base::win::MetroDialogButtonPressedHandler button2_handler
;
30 // Displays the dialog box.
31 void Show(const DialogBoxInfo
& dialog_box_info
);
33 // Dismisses the dialog box.
36 // IUICommandInvokedHandler implementation.
37 // Dummy implementation of IUnknown. This is fine as the lifetime of this
38 // class is tied to the lifetime of the ChromeAppView instance.
39 virtual HRESULT STDMETHODCALLTYPE
QueryInterface(REFIID iid
, void** object
) {
40 DVLOG(1) << __FUNCTION__
;
45 virtual ULONG STDMETHODCALLTYPE
AddRef(void) {
46 DVLOG(1) << __FUNCTION__
;
50 virtual ULONG STDMETHODCALLTYPE
Release(void) {
51 DVLOG(1) << __FUNCTION__
;
55 virtual HRESULT STDMETHODCALLTYPE
Invoke(winui::Popups::IUICommand
* command
);
58 // The actual dialog box.
59 mswr::ComPtr
<winui::Popups::IMessageDialog
> dialog_box_
;
60 DialogBoxInfo dialog_box_info_
;
63 #endif // CHROME_BROWSER_UI_METRO_DRIVER_METRO_DIALOG_BOX_H_