gecko-dev/widget/cocoa/nsPrintDialogX.h
Nicholas Nethercote bab6d17ebf Bug 1293117 (part 4) - Change many NS_IMETHODIMP occurrences to NS_IMETHOD. r=froydnj.
This patch makes the following changes on many in-class methods.

- NS_IMETHODIMP F() override;      --> NS_IMETHOD F() override;
- NS_IMETHODIMP F() override {...} --> NS_IMETHOD F() override {...}
- NS_IMETHODIMP F() final;         --> NS_IMETHOD F() final;
- NS_IMETHODIMP F() final {...}    --> NS_IMETHOD F() final {...}

Using NS_IMETHOD is the preferred way of marking in-class virtual methods.
Although these transformations add an explicit |virtual|, they are safe --
there's an implicit |virtual| anyway because |override| and |final| only work
with virtual methods.

--HG--
extra : rebase_source : 386ee4e4ea2ecd8d5001efabc3ac87b4d6c0659f
2016-08-08 10:54:47 +10:00

69 lines
1.8 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;
NSButtonCell* mAsLaidOutRadio;
NSButtonCell* mSelectedFrameRadio;
NSButtonCell* mSeparateFramesRadio;
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_