2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
2022-02-26 10:50:04 -07:00
|
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2019-03-29 04:00:07 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-02-16 09:17:49 +01:00
|
|
|
#include <AK/HashMap.h>
|
2020-02-06 20:33:02 +01:00
|
|
|
#include <LibGUI/AbstractTableView.h>
|
2019-03-29 04:00:07 +01:00
|
|
|
|
2020-02-02 15:07:41 +01:00
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
|
|
class TreeView : public AbstractTableView {
|
|
|
|
|
C_OBJECT(TreeView)
|
2019-03-29 04:00:07 +01:00
|
|
|
public:
|
2022-02-26 10:50:04 -07:00
|
|
|
virtual ~TreeView() override = default;
|
2019-03-29 04:00:07 +01:00
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
virtual void scroll_into_view(ModelIndex const&, bool scroll_horizontally, bool scroll_vertically) override;
|
2019-03-29 04:00:07 +01:00
|
|
|
|
2019-12-13 23:36:36 +01:00
|
|
|
virtual int item_count() const override;
|
2022-04-01 20:58:27 +03:00
|
|
|
virtual void toggle_index(ModelIndex const&) override;
|
2019-12-13 23:36:36 +01:00
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void expand_tree(ModelIndex const& root = {});
|
|
|
|
|
void collapse_tree(ModelIndex const& root = {});
|
2020-05-21 13:36:08 +02:00
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void expand_all_parents_of(ModelIndex const&);
|
2020-09-18 18:38:27 +02:00
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
Function<void(ModelIndex const&, bool const)> on_toggle;
|
2020-07-07 07:12:12 -04:00
|
|
|
|
2020-10-27 20:33:30 +01:00
|
|
|
void set_should_fill_selected_rows(bool fill) { m_should_fill_selected_rows = fill; }
|
|
|
|
|
bool should_fill_selected_rows() const { return m_should_fill_selected_rows; }
|
|
|
|
|
|
2021-03-11 10:35:40 -05:00
|
|
|
virtual int vertical_padding() const override { return m_vertical_padding; }
|
|
|
|
|
|
2021-07-10 17:11:04 +02:00
|
|
|
virtual Gfx::IntRect content_rect(ModelIndex const&) const override;
|
|
|
|
|
virtual Gfx::IntRect paint_invalidation_rect(ModelIndex const& index) const override { return content_rect(index); }
|
|
|
|
|
|
2021-08-08 09:52:15 +00:00
|
|
|
virtual int minimum_column_width(int column) override;
|
|
|
|
|
|
2019-03-29 04:00:07 +01:00
|
|
|
protected:
|
2020-02-23 12:07:13 +01:00
|
|
|
TreeView();
|
2019-09-21 16:06:43 +02:00
|
|
|
|
2020-02-02 15:07:41 +01:00
|
|
|
virtual void paint_event(PaintEvent&) override;
|
|
|
|
|
virtual void doubleclick_event(MouseEvent&) override;
|
|
|
|
|
virtual void keydown_event(KeyEvent&) override;
|
2020-08-27 17:47:19 +02:00
|
|
|
|
2019-03-30 03:27:25 +01:00
|
|
|
virtual void did_update_selection() override;
|
2020-11-26 11:10:14 +03:30
|
|
|
virtual void model_did_update(unsigned flags) override;
|
2020-08-27 18:36:31 +02:00
|
|
|
virtual void move_cursor(CursorMovement, SelectionUpdate) override;
|
2019-03-29 04:00:07 +01:00
|
|
|
|
|
|
|
|
private:
|
2022-04-01 20:58:27 +03:00
|
|
|
virtual ModelIndex index_at_event_position(Gfx::IntPoint const&, bool& is_toggle) const override;
|
2019-12-13 23:36:36 +01:00
|
|
|
|
2020-08-26 20:34:07 +02:00
|
|
|
int row_height() const { return 16; }
|
2019-03-29 14:46:53 +01:00
|
|
|
int max_item_width() const { return frame_inner_rect().width(); }
|
2019-03-29 18:10:36 +01:00
|
|
|
int indent_width_in_pixels() const { return 16; }
|
2019-03-29 14:46:53 +01:00
|
|
|
int icon_size() const { return 16; }
|
2019-03-30 01:42:16 +01:00
|
|
|
int icon_spacing() const { return 2; }
|
2019-03-29 20:18:15 +01:00
|
|
|
int toggle_size() const { return 9; }
|
2019-03-30 01:42:16 +01:00
|
|
|
int text_padding() const { return 2; }
|
2020-03-02 21:36:01 +01:00
|
|
|
int tree_column_x_offset() const;
|
2019-12-13 23:36:36 +01:00
|
|
|
virtual void update_column_sizes() override;
|
2021-03-18 22:37:52 -04:00
|
|
|
virtual void auto_resize_column(int column) override;
|
2019-03-29 14:46:53 +01:00
|
|
|
|
2019-03-29 17:30:27 +01:00
|
|
|
template<typename Callback>
|
|
|
|
|
void traverse_in_paint_order(Callback) const;
|
|
|
|
|
|
2019-03-29 14:46:53 +01:00
|
|
|
struct MetadataForIndex;
|
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
MetadataForIndex& ensure_metadata_for_index(ModelIndex const&) const;
|
|
|
|
|
void set_open_state_of_all_in_subtree(ModelIndex const& root, bool open);
|
2019-03-29 14:46:53 +01:00
|
|
|
|
2019-07-24 08:42:55 +02:00
|
|
|
mutable HashMap<void*, NonnullOwnPtr<MetadataForIndex>> m_view_metadata;
|
2019-03-29 18:10:36 +01:00
|
|
|
|
2020-02-06 11:56:38 +01:00
|
|
|
RefPtr<Gfx::Bitmap> m_expand_bitmap;
|
|
|
|
|
RefPtr<Gfx::Bitmap> m_collapse_bitmap;
|
2020-10-27 20:33:30 +01:00
|
|
|
|
|
|
|
|
bool m_should_fill_selected_rows { false };
|
2021-03-11 10:35:40 -05:00
|
|
|
int m_vertical_padding { 6 };
|
2019-03-29 04:00:07 +01:00
|
|
|
};
|
2020-02-02 15:07:41 +01:00
|
|
|
|
|
|
|
|
}
|