1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-15 11:51:00 +00:00
serenity/Meta/Lagom/Contrib/MacPDF/MacPDFDocument.h

27 lines
468 B
Objective-C

/*
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
// Several AK types conflict with MacOS types.
#define FixedPoint FixedPointMacOS
#import <Cocoa/Cocoa.h>
#undef FixedPoint
#import "MacPDFView.h"
NS_ASSUME_NONNULL_BEGIN
@interface MacPDFDocument : NSDocument <MacPDFViewDelegate>
{
IBOutlet MacPDFView* _pdfView;
}
- (IBAction)showGoToPageDialog:(id)sender;
@end
NS_ASSUME_NONNULL_END