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

Terminal: Give the terminal widget a sunken container look.

This blends perfectly with the new window frames. :^)
This commit is contained in:
Andreas Kling 2019-05-11 02:27:06 +02:00
parent c9951bbe60
commit 565f073796
2 changed files with 21 additions and 14 deletions

View file

@ -5,13 +5,13 @@
#include <AK/Vector.h>
#include <SharedGraphics/GraphicsBitmap.h>
#include <SharedGraphics/Rect.h>
#include <LibGUI/GWidget.h>
#include <LibGUI/GFrame.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CTimer.h>
class Font;
class Terminal final : public GWidget {
class Terminal final : public GFrame {
public:
explicit Terminal(int ptm_fd);
virtual ~Terminal() override;