mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
e0f1c237d2
Now you can click a TODO entry to set focus on that position of that file.
27 lines
474 B
C++
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;
|
|
};
|
|
|
|
}
|