2020-02-24 22:48:42 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-02-24 22:48:42 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/StringBuilder.h>
|
|
|
|
#include <LibGUI/Action.h>
|
|
|
|
#include <LibGUI/ActionGroup.h>
|
|
|
|
#include <LibGUI/Model.h>
|
|
|
|
#include <LibGUI/MultiView.h>
|
|
|
|
#include <LibGUI/Window.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2021-02-20 01:03:39 +03:00
|
|
|
REGISTER_WIDGET(GUI, MultiView)
|
|
|
|
|
2020-02-24 22:48:42 +03:00
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
MultiView::MultiView()
|
|
|
|
{
|
|
|
|
set_active_widget(nullptr);
|
Userland+LibGUI: Add shorthand versions of the Margins constructor
This allows for typing [8] instead of [8, 8, 8, 8] to specify the same
margin on all edges, for example. The constructors follow CSS' style of
specifying margins. The added constructors are:
- Margins(int all): Sets the same margin on all edges.
- Margins(int vertical, int horizontal): Sets the first argument to top
and bottom margins, and the second argument to left and right margins.
- Margins(int top, int vertical, int bottom): Sets the first argument to
the top margin, the second argument to the left and right margins,
and the third argument to the bottom margin.
2021-08-17 03:11:38 +03:00
|
|
|
set_content_margins(2);
|
2020-05-01 03:09:04 +03:00
|
|
|
m_icon_view = add<IconView>();
|
2020-02-24 22:48:42 +03:00
|
|
|
m_table_view = add<TableView>();
|
2020-02-27 16:41:49 +03:00
|
|
|
m_columns_view = add<ColumnsView>();
|
|
|
|
|
2021-01-01 04:09:51 +03:00
|
|
|
for_each_view_implementation([&](auto& view) {
|
2021-01-01 04:10:30 +03:00
|
|
|
view.set_should_hide_unnecessary_scrollbars(true);
|
2021-01-01 04:09:51 +03:00
|
|
|
view.on_activation = [this](auto& index) {
|
|
|
|
if (on_activation)
|
|
|
|
on_activation(index);
|
|
|
|
};
|
|
|
|
view.on_selection_change = [this] {
|
|
|
|
if (on_selection_change)
|
|
|
|
on_selection_change();
|
|
|
|
};
|
|
|
|
view.on_context_menu_request = [this](auto& index, auto& event) {
|
|
|
|
if (on_context_menu_request)
|
|
|
|
on_context_menu_request(index, event);
|
|
|
|
};
|
|
|
|
view.on_drop = [this](auto& index, auto& event) {
|
|
|
|
if (on_drop)
|
|
|
|
on_drop(index, event);
|
|
|
|
};
|
|
|
|
});
|
2020-02-24 22:48:42 +03:00
|
|
|
|
|
|
|
build_actions();
|
2020-05-01 03:25:50 +03:00
|
|
|
set_view_mode(ViewMode::Icon);
|
2020-02-24 22:48:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
MultiView::~MultiView()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void MultiView::set_view_mode(ViewMode mode)
|
|
|
|
{
|
|
|
|
if (m_view_mode == mode)
|
|
|
|
return;
|
|
|
|
m_view_mode = mode;
|
|
|
|
update();
|
2020-05-01 03:09:04 +03:00
|
|
|
if (mode == ViewMode::Table) {
|
2020-02-24 22:48:42 +03:00
|
|
|
set_active_widget(m_table_view);
|
2020-05-01 03:25:50 +03:00
|
|
|
m_view_as_table_action->set_checked(true);
|
2020-02-24 22:48:42 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (mode == ViewMode::Columns) {
|
|
|
|
set_active_widget(m_columns_view);
|
2020-05-01 03:25:50 +03:00
|
|
|
m_view_as_columns_action->set_checked(true);
|
2020-02-24 22:48:42 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (mode == ViewMode::Icon) {
|
2020-05-01 03:09:04 +03:00
|
|
|
set_active_widget(m_icon_view);
|
2020-05-01 03:25:50 +03:00
|
|
|
m_view_as_icons_action->set_checked(true);
|
2020-02-24 22:48:42 +03:00
|
|
|
return;
|
|
|
|
}
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-02-24 22:48:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void MultiView::set_model(RefPtr<Model> model)
|
|
|
|
{
|
|
|
|
if (m_model == model)
|
|
|
|
return;
|
|
|
|
m_model = model;
|
|
|
|
for_each_view_implementation([&](auto& view) {
|
|
|
|
view.set_model(model);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void MultiView::set_model_column(int column)
|
|
|
|
{
|
2020-02-25 12:47:30 +03:00
|
|
|
if (m_model_column == column)
|
|
|
|
return;
|
|
|
|
m_model_column = column;
|
2020-05-01 03:09:04 +03:00
|
|
|
m_icon_view->set_model_column(column);
|
2020-02-24 22:48:42 +03:00
|
|
|
m_columns_view->set_model_column(column);
|
|
|
|
}
|
|
|
|
|
2021-04-05 12:57:47 +03:00
|
|
|
void MultiView::set_column_visible(int column_index, bool visible)
|
2020-02-24 22:48:42 +03:00
|
|
|
{
|
2021-04-05 12:57:47 +03:00
|
|
|
m_table_view->set_column_visible(column_index, visible);
|
2020-02-24 22:48:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void MultiView::build_actions()
|
|
|
|
{
|
2020-04-21 18:19:27 +03:00
|
|
|
m_view_as_icons_action = Action::create_checkable(
|
2021-07-24 22:22:30 +03:00
|
|
|
"Icon view", { Mod_Ctrl, KeyCode::Key_1 }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/icon-view.png"), [this](auto&) {
|
2020-02-24 22:48:42 +03:00
|
|
|
set_view_mode(ViewMode::Icon);
|
2021-07-24 22:22:30 +03:00
|
|
|
},
|
|
|
|
this);
|
2020-02-24 22:48:42 +03:00
|
|
|
|
2021-07-24 22:24:23 +03:00
|
|
|
m_view_as_table_action = Action::create_checkable(
|
|
|
|
"Table view", { Mod_Ctrl, KeyCode::Key_2 }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/table-view.png"), [this](auto&) {
|
|
|
|
set_view_mode(ViewMode::Table);
|
|
|
|
},
|
|
|
|
this);
|
|
|
|
|
2020-04-21 18:19:27 +03:00
|
|
|
m_view_as_columns_action = Action::create_checkable(
|
2021-07-24 22:22:30 +03:00
|
|
|
"Columns view", { Mod_Ctrl, KeyCode::Key_3 }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/columns-view.png"), [this](auto&) {
|
2020-02-24 22:48:42 +03:00
|
|
|
set_view_mode(ViewMode::Columns);
|
2021-07-24 22:22:30 +03:00
|
|
|
},
|
|
|
|
this);
|
2020-02-24 22:48:42 +03:00
|
|
|
|
|
|
|
m_view_type_action_group = make<ActionGroup>();
|
|
|
|
m_view_type_action_group->set_exclusive(true);
|
|
|
|
m_view_type_action_group->add_action(*m_view_as_icons_action);
|
2021-07-24 22:24:23 +03:00
|
|
|
m_view_type_action_group->add_action(*m_view_as_table_action);
|
2020-02-24 22:48:42 +03:00
|
|
|
m_view_type_action_group->add_action(*m_view_as_columns_action);
|
|
|
|
}
|
|
|
|
|
2020-12-28 22:14:17 +03:00
|
|
|
AbstractView::SelectionMode MultiView::selection_mode() const
|
2020-07-12 08:11:53 +03:00
|
|
|
{
|
2020-12-28 22:14:17 +03:00
|
|
|
return m_table_view->selection_mode();
|
2020-07-12 08:11:53 +03:00
|
|
|
}
|
|
|
|
|
2020-12-28 22:14:17 +03:00
|
|
|
void MultiView::set_selection_mode(AbstractView::SelectionMode selection_mode)
|
2020-07-12 08:11:53 +03:00
|
|
|
{
|
2020-12-28 22:14:17 +03:00
|
|
|
m_table_view->set_selection_mode(selection_mode);
|
|
|
|
m_icon_view->set_selection_mode(selection_mode);
|
|
|
|
m_columns_view->set_selection_mode(selection_mode);
|
2020-07-12 08:11:53 +03:00
|
|
|
}
|
|
|
|
|
2020-08-16 11:44:10 +03:00
|
|
|
void MultiView::set_key_column_and_sort_order(int column, SortOrder sort_order)
|
|
|
|
{
|
|
|
|
for_each_view_implementation([&](auto& view) {
|
|
|
|
view.set_key_column_and_sort_order(column, sort_order);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-02-24 22:48:42 +03:00
|
|
|
}
|