2023-09-13 18:55:34 +00:00
|
|
|
/*
|
2024-10-29 15:05:25 +00:00
|
|
|
* Copyright (c) 2023-2024, Tim Flynn <trflynn89@ladybird.org>
|
2023-09-13 18:55:34 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-07-17 05:54:53 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2024-11-09 17:50:33 +00:00
|
|
|
#import <Interface/LadybirdWebViewWindow.h>
|
2023-09-13 18:55:34 +00:00
|
|
|
|
|
|
|
@class LadybirdWebView;
|
|
|
|
@class Tab;
|
|
|
|
|
2024-10-29 15:05:25 +00:00
|
|
|
@interface Inspector : LadybirdWebViewWindow
|
2023-09-13 18:55:34 +00:00
|
|
|
|
|
|
|
- (instancetype)init:(Tab*)tab;
|
|
|
|
|
|
|
|
- (void)inspect;
|
|
|
|
- (void)reset;
|
|
|
|
|
2023-11-24 01:01:46 +00:00
|
|
|
- (void)selectHoveredElement;
|
|
|
|
|
2023-09-13 18:55:34 +00:00
|
|
|
@end
|