mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 18:57:34 +00:00
MacPDF: Introduce MacPDFWindowController
I'd like to add a sidebar, and NSSplitViewItem apparently isn't accessibly in .xib files without contortions. So I want to move to creating the window in code, and this is a step towards that. No behavior change.
This commit is contained in:
parent
d6dff83397
commit
67f6baead0
4 changed files with 45 additions and 2 deletions
21
Meta/Lagom/Contrib/MacPDF/MacPDFWindowController.h
Normal file
21
Meta/Lagom/Contrib/MacPDF/MacPDFWindowController.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "CocoaWrapper.h"
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@class MacPDFDocument;
|
||||
|
||||
@interface MacPDFWindowController : NSWindowController
|
||||
|
||||
- (instancetype)initWithDocument:(MacPDFDocument*)document;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
Loading…
Add table
Add a link
Reference in a new issue