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:
parent
26a7356e90
commit
935c7b2f4b
5 changed files with 134 additions and 0 deletions
29
Userland/DevTools/HackStudio/ToDoEntriesWidget.h
Normal file
29
Userland/DevTools/HackStudio/ToDoEntriesWidget.h
Normal 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;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue