mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
24 lines
383 B
Objective-C
24 lines
383 B
Objective-C
/*
|
|
* Copyright (c) 2023-2024, Tim Flynn <trflynn89@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <Interface/LadybirdWebViewWindow.h>
|
|
|
|
@class LadybirdWebView;
|
|
@class Tab;
|
|
|
|
@interface Inspector : LadybirdWebViewWindow
|
|
|
|
- (instancetype)init:(Tab*)tab;
|
|
|
|
- (void)inspect;
|
|
- (void)reset;
|
|
|
|
- (void)selectHoveredElement;
|
|
|
|
@end
|