mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
22 lines
352 B
Objective-C
22 lines
352 B
Objective-C
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#import <System/Cocoa.h>
|
|
|
|
@class LadybirdWebView;
|
|
|
|
@interface Tab : NSWindow
|
|
|
|
- (void)tabWillClose;
|
|
|
|
- (void)openInspector:(id)sender;
|
|
- (void)onInspectorClosed;
|
|
|
|
@property (nonatomic, strong) LadybirdWebView* web_view;
|
|
|
|
@end
|