mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 17:40:27 +00:00
25 lines
382 B
Objective-C
25 lines
382 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;
|
|
@class Tab;
|
|
|
|
@interface Inspector : NSWindow
|
|
|
|
- (instancetype)init:(Tab*)tab;
|
|
|
|
- (void)inspect;
|
|
- (void)reset;
|
|
|
|
- (void)selectHoveredElement;
|
|
|
|
@property (nonatomic, strong) LadybirdWebView* web_view;
|
|
|
|
@end
|