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 nsIPrintDialogService_h__
7 #define nsIPrintDialogService_h__
9 #include "nsISupports.h"
11 class nsPIDOMWindowOuter
;
12 class nsIPrintSettings
;
13 class nsIWebBrowserPrint
;
16 * Interface to a print dialog accessed through the widget library.
19 #define NS_IPRINTDIALOGSERVICE_IID \
20 { 0x3715eb1a, 0xb314, 0x447c, \
21 { 0x95, 0x33, 0xd0, 0x6a, 0x6d, 0xa6, 0xa6, 0xf0 } }
27 class nsIPrintDialogService
: public nsISupports
30 NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPRINTDIALOGSERVICE_IID
)
33 * Initialize the service.
34 * @return NS_OK or a suitable error.
36 NS_IMETHOD
Init() = 0;
39 * Show the print dialog.
40 * @param aParent A DOM window the dialog will be parented to.
41 * @param aSettings On entry, this contains initial settings for the
42 * print dialog. On return, if the print operation should
43 * proceed then this contains settings for the print
45 * @param aWebBrowserPrint A nsIWebBrowserPrint object that can be used for
46 * retreiving the title of the printed document.
47 * @return NS_OK if the print operation should proceed
48 * @return NS_ERROR_ABORT if the user indicated not to proceed
49 * @return a suitable error for failures to show the print dialog.
51 NS_IMETHOD
Show(nsPIDOMWindowOuter
*aParent
, nsIPrintSettings
*aSettings
,
52 nsIWebBrowserPrint
*aWebBrowserPrint
) = 0;
55 * Show the page setup dialog. Note that there is no way to tell whether the
56 * user clicked OK or Cancel on the dialog.
57 * @param aParent A DOM window the dialog will be parented to.
58 * @param aSettings On entry, this contains initial settings for the
59 * page setup dialog. On return, this contains new default
61 * @return NS_OK if everything is OK.
62 * @return a suitable error for failures to show the page setup dialog.
64 NS_IMETHOD
ShowPageSetup(nsPIDOMWindowOuter
*aParent
, nsIPrintSettings
*aSettings
) = 0;
68 NS_DEFINE_STATIC_IID_ACCESSOR(nsIPrintDialogService
, NS_IPRINTDIALOGSERVICE_IID
)
70 #define NS_PRINTDIALOGSERVICE_CONTRACTID ("@mozilla.org/widget/printdialog-service;1")
72 #endif // nsIPrintDialogService_h__