1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:17:34 +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

@ -19,6 +19,7 @@
#include "Project.h"
#include "ProjectFile.h"
#include "TerminalWrapper.h"
#include "ToDoEntriesWidget.h"
#include <LibGUI/ActionGroup.h>
#include <LibGUI/Scrollbar.h>
#include <LibGUI/Splitter.h>
@ -143,6 +144,7 @@ private:
RefPtr<TerminalWrapper> m_terminal_wrapper;
RefPtr<Locator> m_locator;
RefPtr<FindInFilesWidget> m_find_in_files_widget;
RefPtr<ToDoEntriesWidget> m_todo_entries_widget;
RefPtr<DebugInfoWidget> m_debug_info_widget;
RefPtr<DisassemblyWidget> m_disassembly_widget;
RefPtr<Threading::Thread> m_debugger_thread;