mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
Everywhere: Move the Ladybird folder to UI
This commit is contained in:
committed by
Andreas Kling
parent
93712b24bf
commit
db47cc41f8
Notes:
github-actions[bot]
2024-11-10 11:51:45 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/db47cc41f80 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2256 Reviewed-by: https://github.com/sideshowbarker
22
UI/AppKit/Interface/SearchPanel.h
Normal file
22
UI/AppKit/Interface/SearchPanel.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/Optional.h>
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
@interface SearchPanel : NSStackView
|
||||
|
||||
- (void)find:(id)selector;
|
||||
- (void)findNextMatch:(id)selector;
|
||||
- (void)findPreviousMatch:(id)selector;
|
||||
- (void)useSelectionForFind:(id)selector;
|
||||
- (void)onFindInPageResult:(size_t)current_match_index
|
||||
totalMatchCount:(Optional<size_t> const&)total_match_count;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user