/* * Copyright (c) 2024, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #import @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 const&)total_match_count; @end