mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
20 lines
395 B
Objective-C
20 lines
395 B
Objective-C
/*
|
|
* Copyright (c) 2024, Tim Flynn <trflynn89@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class LadybirdWebView;
|
|
|
|
@interface LadybirdWebViewWindow : NSWindow
|
|
|
|
- (instancetype)initWithWebView:(LadybirdWebView*)web_view
|
|
windowRect:(NSRect)window_rect;
|
|
|
|
@property (nonatomic, strong) LadybirdWebView* web_view;
|
|
|
|
@end
|