1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

HackStudio: Add TODO entries widget

This commit is contained in:
Federico Guerinoni 2021-05-22 14:14:49 +02:00 committed by Linus Groh
parent 26a7356e90
commit 935c7b2f4b
5 changed files with 134 additions and 0 deletions

View file

@ -0,0 +1,29 @@
/*
* Copyright (c) 2021, Federico Guerinoni <guerinoni.federico@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Button.h>
#include <LibGUI/TableView.h>
#include <LibGUI/TextBox.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;
};
}