HackStudio: Embed a Terminal widget below the text editor

This will be very useful for running (and interacting with) programs
after we build them. :^)
This commit is contained in:
Andreas Kling 2019-10-21 20:17:32 +02:00
commit 43ccb28852
Notes: sideshowbarker 2024-07-19 11:35:33 +09:00
4 changed files with 120 additions and 4 deletions

View file

@ -0,0 +1,16 @@
#pragma once
#include <LibGUI/GWidget.h>
class TerminalWidget;
class TerminalWrapper final : public GWidget {
C_OBJECT(TerminalWrapper)
public:
virtual ~TerminalWrapper() override;
private:
explicit TerminalWrapper(GWidget* parent);
RefPtr<TerminalWidget> m_terminal_widget;
};