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

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
parent 5b30aa8b02
commit 43ccb28852
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;
};