gecko-dev/widget/cocoa/nsPrintDialogX.h
Jonathan Watt 4cf78a2ed9 Bug 1552785. Remove macOS print dialog UI for selecting frameset behavior. r=mstange
The 85 pixel change in y-axis offset is the distance between the "Print
Background Images" checkbox and (removed) "Each Frame on Separate Pages" radio
button.

Differential Revision: https://phabricator.services.mozilla.com/D33379

--HG--
extra : rebase_source : ca0aa5291f1631a40fba18e22cf609a0768cbdb3
2019-05-14 17:04:37 +01:00

63 lines
1.7 KiB
Objective-C

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#ifndef nsPrintDialog_h_
#define nsPrintDialog_h_
#include "nsIPrintDialogService.h"
#include "nsCOMPtr.h"
#include "nsCocoaUtils.h"
#import <Cocoa/Cocoa.h>
class nsIPrintSettings;
class nsIStringBundle;
class nsPrintDialogServiceX : public nsIPrintDialogService {
public:
nsPrintDialogServiceX();
NS_DECL_ISUPPORTS
NS_IMETHOD Init() override;
NS_IMETHOD Show(nsPIDOMWindowOuter* aParent, nsIPrintSettings* aSettings,
nsIWebBrowserPrint* aWebBrowserPrint) override;
NS_IMETHOD ShowPageSetup(nsPIDOMWindowOuter* aParent, nsIPrintSettings* aSettings) override;
protected:
virtual ~nsPrintDialogServiceX();
};
@interface PrintPanelAccessoryView : NSView {
nsIPrintSettings* mSettings;
nsIStringBundle* mPrintBundle;
NSButton* mPrintSelectionOnlyCheckbox;
NSButton* mShrinkToFitCheckbox;
NSButton* mPrintBGColorsCheckbox;
NSButton* mPrintBGImagesCheckbox;
NSPopUpButton* mHeaderLeftList;
NSPopUpButton* mHeaderCenterList;
NSPopUpButton* mHeaderRightList;
NSPopUpButton* mFooterLeftList;
NSPopUpButton* mFooterCenterList;
NSPopUpButton* mFooterRightList;
}
- (id)initWithSettings:(nsIPrintSettings*)aSettings;
- (void)exportSettings;
@end
@interface PrintPanelAccessoryController : NSViewController <NSPrintPanelAccessorizing>
- (id)initWithSettings:(nsIPrintSettings*)aSettings;
- (void)exportSettings;
@end
#endif // nsPrintDialog_h_