mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:07:45 +00:00
MacPDF: Rename LagomPDFDocument to MacPDFDocument
This commit is contained in:
parent
f99771d46f
commit
76f0a09b5e
6 changed files with 10 additions and 10 deletions
27
Meta/Lagom/Contrib/MacPDF/MacPDFDocument.h
Normal file
27
Meta/Lagom/Contrib/MacPDF/MacPDFDocument.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* 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
|
Loading…
Add table
Add a link
Reference in a new issue