mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 18:32:28 -05:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Widget.h>
|
|
|
|
namespace GUI {
|
|
|
|
class Breadcrumbbar : public GUI::Widget {
|
|
C_OBJECT(Breadcrumbbar);
|
|
|
|
public:
|
|
virtual ~Breadcrumbbar() override;
|
|
|
|
void clear_segments();
|
|
void append_segment(String text, const Gfx::Bitmap* icon = nullptr, String data = {}, String tooltip = {});
|
|
|
|
size_t segment_count() const { return m_segments.size(); }
|
|
String segment_data(size_t index) const { return m_segments[index].data; }
|
|
|
|
void set_selected_segment(Optional<size_t> index);
|
|
Optional<size_t> selected_segment() const { return m_selected_segment; }
|
|
|
|
Function<void(size_t index)> on_segment_click;
|
|
Function<void(size_t index, DropEvent&)> on_segment_drop;
|
|
Function<void(size_t index, DragEvent&)> on_segment_drag_enter;
|
|
Function<void(MouseEvent& event)> on_doubleclick;
|
|
|
|
private:
|
|
Breadcrumbbar();
|
|
|
|
struct Segment {
|
|
RefPtr<const Gfx::Bitmap> icon;
|
|
String text;
|
|
String data;
|
|
WeakPtr<GUI::Button> button;
|
|
};
|
|
|
|
Vector<Segment> m_segments;
|
|
Optional<size_t> m_selected_segment;
|
|
|
|
virtual void doubleclick_event(GUI::MouseEvent&) override;
|
|
};
|
|
|
|
}
|