serenity/Ladybird/AppKit/UI/TaskManager.h
Timothy Flynn 3ab5ecb671 Ladybird/AppKit: Implement a simple TaskManager window
Unlike the Inspector window, this is owned by the ApplicationDelegate as
there should be only a single task manager for the entire application.
2024-04-12 09:08:16 +02:00

20 lines
298 B
Objective-C

/*
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#import <System/Cocoa.h>
@class LadybirdWebView;
@interface TaskManager : NSWindow
- (instancetype)init;
@property (nonatomic, strong) LadybirdWebView* web_view;
@end