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

Maps: Add toolbar and frame border to map widget

This commit is contained in:
Bastiaan van der Plaat 2023-09-03 19:57:29 +02:00 committed by Jelle Raaijmakers
parent b5f91e3365
commit 048e8d7744
3 changed files with 54 additions and 26 deletions

View file

@ -8,12 +8,12 @@
#pragma once
#include <AK/Queue.h>
#include <LibGUI/Frame.h>
#include <LibGUI/Painter.h>
#include <LibGUI/Widget.h>
#include <LibProtocol/Request.h>
#include <LibProtocol/RequestClient.h>
class MapWidget final : public GUI::Widget {
class MapWidget : public GUI::Frame {
C_OBJECT(MapWidget);
public: