2020-08-09 14:28:36 -03:00
|
|
|
/*
|
2020-08-10 15:44:36 -03:00
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
2020-08-09 14:28:36 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-09 14:28:36 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibGfx/ClassicWindowTheme.h>
|
|
|
|
|
#include <LibGfx/WindowTheme.h>
|
|
|
|
|
|
|
|
|
|
namespace Gfx {
|
|
|
|
|
|
|
|
|
|
WindowTheme& WindowTheme::current()
|
|
|
|
|
{
|
|
|
|
|
static ClassicWindowTheme theme;
|
|
|
|
|
return theme;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|