1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:37:34 +00:00

PixelPaint: Implement IconBag to organize icons

Implement IconBag method of organizing menubar icons from Browser.
This commit is contained in:
electrikmilk 2022-02-09 13:48:56 -05:00 committed by Andreas Kling
parent 29078d4d53
commit dece108f9a
6 changed files with 97 additions and 20 deletions

View file

@ -7,6 +7,7 @@
#pragma once
#include "Guide.h"
#include "IconBag.h"
#include "Image.h"
#include "ImageEditor.h"
#include "Layer.h"
@ -27,6 +28,8 @@
namespace PixelPaint {
extern IconBag g_icon_bag;
class MainWidget : public GUI::Widget {
C_OBJECT(MainWidget);