2008-01-21 06:47:25 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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-30 02:40:16 +03:00
|
|
|
|
2008-01-21 06:47:25 +03:00
|
|
|
#ifndef nsPrintDialog_h__
|
|
|
|
#define nsPrintDialog_h__
|
2006-11-30 02:40:16 +03:00
|
|
|
|
2008-01-21 06:47:25 +03:00
|
|
|
#include "nsIPrintDialogService.h"
|
2006-11-30 02:40:16 +03:00
|
|
|
|
2008-01-21 06:47:25 +03:00
|
|
|
class nsIPrintSettings;
|
2006-11-30 02:40:16 +03:00
|
|
|
|
2010-02-12 01:39:33 +03: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;
|
|
|
|
|
2008-01-21 06:47:25 +03:00
|
|
|
class nsPrintDialogServiceGTK : public nsIPrintDialogService
|
2006-11-30 02:40:16 +03:00
|
|
|
{
|
2014-06-24 20:36:44 +04:00
|
|
|
virtual ~nsPrintDialogServiceGTK();
|
|
|
|
|
2006-11-30 02:40:16 +03:00
|
|
|
public:
|
2008-01-21 06:47:25 +03:00
|
|
|
nsPrintDialogServiceGTK();
|
2006-11-30 02:40:16 +03:00
|
|
|
|
2008-01-21 06:47:25 +03:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2016-08-08 03:54:47 +03:00
|
|
|
NS_IMETHOD Init() override;
|
|
|
|
NS_IMETHOD Show(nsPIDOMWindowOuter *aParent, nsIPrintSettings *aSettings,
|
|
|
|
nsIWebBrowserPrint *aWebBrowserPrint) override;
|
|
|
|
NS_IMETHOD ShowPageSetup(nsPIDOMWindowOuter *aParent,
|
|
|
|
nsIPrintSettings *aSettings) override;
|
2008-01-21 06:47:25 +03:00
|
|
|
};
|
2008-01-17 13:11:00 +03:00
|
|
|
|
2008-01-21 06:47:25 +03:00
|
|
|
#endif
|