gecko-dev/widget/gtk/nsPrintDialogGTK.h

40 lines
1.1 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2012-05-21 11:12:37 +00:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2006-11-29 23:40:16 +00:00
#ifndef nsPrintDialog_h__
#define nsPrintDialog_h__
2006-11-29 23:40:16 +00:00
#include "nsIPrintDialogService.h"
2006-11-29 23:40:16 +00:00
class nsIPrintSettings;
2006-11-29 23:40:16 +00:00
// Copy the print pages enum here because not all versions
// have SELECTION, which we will use
typedef enum
{
_GTK_PRINT_PAGES_ALL,
_GTK_PRINT_PAGES_CURRENT,
_GTK_PRINT_PAGES_RANGES,
_GTK_PRINT_PAGES_SELECTION
} _GtkPrintPages;
class nsPrintDialogServiceGTK : public nsIPrintDialogService
2006-11-29 23:40:16 +00:00
{
virtual ~nsPrintDialogServiceGTK();
2006-11-29 23:40:16 +00:00
public:
nsPrintDialogServiceGTK();
2006-11-29 23:40:16 +00:00
NS_DECL_ISUPPORTS
NS_IMETHODIMP Init() override;
NS_IMETHODIMP Show(nsPIDOMWindowOuter *aParent, nsIPrintSettings *aSettings,
nsIWebBrowserPrint *aWebBrowserPrint) override;
NS_IMETHODIMP ShowPageSetup(nsPIDOMWindowOuter *aParent,
nsIPrintSettings *aSettings) override;
};
#endif