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:
parent
5b30aa8b02
commit
43ccb28852
4 changed files with 120 additions and 4 deletions
16
DevTools/HackStudio/TerminalWrapper.h
Normal file
16
DevTools/HackStudio/TerminalWrapper.h
Normal 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue