2020-07-02 12:12:16 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibGUI/BoxLayout.h>
|
|
|
|
#include <LibGUI/Button.h>
|
|
|
|
#include <LibGUI/MessageBox.h>
|
2020-07-28 06:09:19 -04:00
|
|
|
#include <LibGUI/ProcessChooser.h>
|
|
|
|
#include <LibGUI/RunningProcessesModel.h>
|
2020-07-02 12:12:16 +02:00
|
|
|
#include <LibGUI/SortingProxyModel.h>
|
|
|
|
#include <LibGUI/TableView.h>
|
|
|
|
|
2020-07-28 06:09:19 -04:00
|
|
|
namespace GUI {
|
2020-07-02 12:12:16 +02:00
|
|
|
|
2020-07-28 06:09:19 -04:00
|
|
|
ProcessChooser::ProcessChooser(const StringView& window_title, const StringView& button_label, const Gfx::Bitmap* window_icon, GUI::Window* parent_window)
|
2020-07-02 12:12:16 +02:00
|
|
|
: Dialog(parent_window)
|
2020-07-28 06:09:19 -04:00
|
|
|
, m_window_title(window_title)
|
|
|
|
, m_button_label(button_label)
|
|
|
|
, m_window_icon(window_icon)
|
2020-07-02 12:12:16 +02:00
|
|
|
{
|
2020-07-28 06:09:19 -04:00
|
|
|
set_title(m_window_title);
|
2020-07-02 12:12:16 +02:00
|
|
|
|
2020-07-28 06:09:19 -04:00
|
|
|
if (m_window_icon)
|
|
|
|
set_icon(m_window_icon);
|
|
|
|
else if (parent_window)
|
|
|
|
set_icon(parent_window->icon());
|
|
|
|
|
2020-08-15 16:32:11 +02:00
|
|
|
resize(300, 340);
|
|
|
|
center_on_screen();
|
2020-07-02 12:12:16 +02:00
|
|
|
|
|
|
|
auto& widget = set_main_widget<GUI::Widget>();
|
|
|
|
widget.set_fill_with_background_color(true);
|
|
|
|
widget.set_layout<GUI::VerticalBoxLayout>();
|
2020-07-28 06:09:19 -04:00
|
|
|
widget.layout()->set_margins({ 0, 0, 0, 2 });
|
|
|
|
|
2020-07-02 12:12:16 +02:00
|
|
|
auto& table_view = widget.add<GUI::TableView>();
|
2020-07-28 06:09:19 -04:00
|
|
|
auto sorting_model = GUI::SortingProxyModel::create(RunningProcessesModel::create());
|
2020-07-04 19:22:30 +02:00
|
|
|
sorting_model->set_sort_role(GUI::Model::Role::Display);
|
2020-07-28 06:09:19 -04:00
|
|
|
sorting_model->set_key_column_and_sort_order(RunningProcessesModel::Column::PID, GUI::SortOrder::Descending);
|
2020-07-04 19:22:30 +02:00
|
|
|
table_view.set_model(sorting_model);
|
2020-07-28 06:09:19 -04:00
|
|
|
|
2020-07-02 12:12:16 +02:00
|
|
|
auto& button_container = widget.add<GUI::Widget>();
|
|
|
|
button_container.set_preferred_size(0, 30);
|
|
|
|
button_container.set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed);
|
|
|
|
button_container.set_layout<GUI::HorizontalBoxLayout>();
|
2020-07-28 06:09:19 -04:00
|
|
|
button_container.layout()->set_margins({ 0, 0, 4, 0 });
|
|
|
|
button_container.layout()->add_spacer();
|
|
|
|
|
|
|
|
auto& select_button = button_container.add<GUI::Button>(m_button_label);
|
|
|
|
select_button.set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fixed);
|
|
|
|
select_button.set_preferred_size(80, 24);
|
|
|
|
select_button.on_click = [&](auto) {
|
2020-07-02 12:12:16 +02:00
|
|
|
if (table_view.selection().is_empty()) {
|
2020-07-28 06:09:19 -04:00
|
|
|
GUI::MessageBox::show(this, "No process selected!", m_window_title, GUI::MessageBox::Type::Error);
|
2020-07-02 12:12:16 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto index = table_view.selection().first();
|
|
|
|
auto pid_as_variant = table_view.model()->data(index, GUI::Model::Role::Custom);
|
|
|
|
m_pid = pid_as_variant.as_i32();
|
|
|
|
done(ExecOK);
|
|
|
|
};
|
|
|
|
auto& cancel_button = button_container.add<GUI::Button>("Cancel");
|
2020-07-28 06:09:19 -04:00
|
|
|
cancel_button.set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fixed);
|
|
|
|
cancel_button.set_preferred_size(80, 24);
|
2020-07-02 12:12:16 +02:00
|
|
|
cancel_button.on_click = [this](auto) {
|
|
|
|
done(ExecCancel);
|
|
|
|
};
|
|
|
|
|
|
|
|
table_view.model()->update();
|
2020-08-14 22:48:33 +05:30
|
|
|
|
|
|
|
m_refresh_timer = add<Core::Timer>();
|
|
|
|
|
|
|
|
m_refresh_timer->start(m_refresh_interval); // Start the timer to update the processes
|
|
|
|
m_refresh_timer->on_timeout = [&table_view] {
|
|
|
|
auto previous_selected_pid = -1; // Store the selection index to not to clear the selection upon update.
|
|
|
|
if (!table_view.selection().is_empty()) {
|
|
|
|
auto pid_as_variant = table_view.model()->data(table_view.selection().first(), GUI::Model::Role::Custom);
|
|
|
|
previous_selected_pid = pid_as_variant.as_i32();
|
|
|
|
}
|
|
|
|
|
|
|
|
table_view.model()->update();
|
|
|
|
|
|
|
|
if (previous_selected_pid == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto model = table_view.model();
|
|
|
|
auto row_count = model->row_count();
|
|
|
|
auto column_index = 1; // Corresponds to PID column in the table_view.
|
|
|
|
for (int row_index = 0; row_index < row_count; ++row_index) {
|
|
|
|
auto cell_index = model->index(row_index, column_index);
|
|
|
|
auto pid_as_variant = model->data(cell_index, GUI::Model::Role::Custom);
|
|
|
|
if (previous_selected_pid == pid_as_variant.as_i32()) {
|
|
|
|
table_view.selection().set(cell_index); // Set only if PIDs are matched.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2020-07-02 12:12:16 +02:00
|
|
|
}
|
|
|
|
|
2020-07-28 06:09:19 -04:00
|
|
|
ProcessChooser::~ProcessChooser()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-07-02 12:12:16 +02:00
|
|
|
}
|