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

LibGUI: Remove some header dependencies from Application.h

This commit is contained in:
Andreas Kling 2020-02-15 01:18:12 +01:00
parent 93e9c2732b
commit dcb0766d3f
4 changed files with 16 additions and 10 deletions

View file

@ -189,4 +189,9 @@ void Application::set_palette(const Palette& palette)
m_palette = palette.impl();
}
Gfx::Palette Application::palette() const
{
return Palette(*m_palette);
}
}

View file

@ -26,20 +26,17 @@
#pragma once
#include <AK/Badge.h>
#include <AK/HashMap.h>
#include <AK/OwnPtr.h>
#include <LibCore/Forward.h>
#include <LibGUI/Shortcut.h>
#include <LibGfx/Forward.h>
#include <LibGfx/Palette.h>
namespace GUI {
class Action;
class KeyEvent;
class MenuBar;
class Window;
class WindowServerConnection;
class Application {
public:
@ -68,8 +65,8 @@ public:
const String& invoked_as() const { return m_invoked_as; }
const Vector<String>& args() const { return m_args; }
Palette palette() const { return Palette(*m_palette); }
void set_palette(const Palette&);
Gfx::Palette palette() const;
void set_palette(const Gfx::Palette&);
void set_system_palette(SharedBuffer&);