ladybird/Userland/DevTools/HackStudio/ToDoEntriesWidget.h
Federico Guerinoni e0f1c237d2 HackStudio: Make TODO entries clickable
Now you can click a TODO entry to set focus on that position of that
file.
2021-06-23 19:00:11 +01:00

27 lines
474 B
C++

/*
* Copyright (c) 2021, Federico Guerinoni <guerinoni.federico@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/TableView.h>
#include <LibGUI/Widget.h>
namespace HackStudio {
class ToDoEntriesWidget final : public GUI::Widget {
C_OBJECT(ToDoEntriesWidget)
public:
virtual ~ToDoEntriesWidget() override { }
void refresh();
private:
explicit ToDoEntriesWidget();
RefPtr<GUI::TableView> m_result_view;
};
}