1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsPrintDialog_h__
7 #define nsPrintDialog_h__
9 #include "nsIPrintDialogService.h"
12 #include "nsIWindowWatcher.h"
16 class nsIPrintSettings
;
17 class nsIDialogParamBlock
;
19 class nsPrintDialogServiceWin final
: public nsIPrintDialogService
{
21 nsPrintDialogServiceWin();
24 NS_DECL_NSIPRINTDIALOGSERVICE
27 virtual ~nsPrintDialogServiceWin();
29 nsresult
DoDialog(mozIDOMWindowProxy
* aParent
,
30 nsIDialogParamBlock
* aParamBlock
, nsIPrintSettings
* aPS
,
31 const char* aChromeURL
);
33 nsCOMPtr
<nsIWindowWatcher
> mWatcher
;
36 NS_DEFINE_STATIC_IID_ACCESSOR(nsPrintDialogServiceWin
,
37 NS_IPRINTDIALOGSERVICE_IID
)