mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
411058b2a3
Color themes are loaded from .ini files in /res/themes/ The theme can be switched from the "Themes" section in the system menu. The basic mechanism is that WindowServer broadcasts a SharedBuffer with all of the color values of the current theme. Clients receive this with the response to their initial WindowServer::Greet handshake. When the theme is changed, WindowServer tells everyone by sending out an UpdateSystemTheme message with a new SharedBuffer to use. This does feel somewhat bloated somehow, but I'm sure we can iterate on it over time and improve things. To get one of the theme colors, use the Color(SystemColor) constructor: painter.fill_rect(rect, SystemColor::HoverHighlight); Some things don't work 100% right without a reboot. Specifically, when constructing a GWidget, it will set its own background and foreground colors based on the current SystemColor::Window and SystemColor::Text. The widget is then stuck with these values, and they don't update on system theme change, only on app restart. All in all though, this is pretty cool. Merry Christmas! :^)
94 lines
2.2 KiB
C++
94 lines
2.2 KiB
C++
#include <AK/kmalloc.h>
|
|
#include <Kernel/Syscall.h>
|
|
#include <SharedBuffer.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
RefPtr<SharedBuffer> SharedBuffer::create_with_size(int size)
|
|
{
|
|
void* data;
|
|
int shared_buffer_id = create_shared_buffer(size, &data);
|
|
if (shared_buffer_id < 0) {
|
|
perror("create_shared_buffer");
|
|
return nullptr;
|
|
}
|
|
return adopt(*new SharedBuffer(shared_buffer_id, size, data));
|
|
}
|
|
|
|
bool SharedBuffer::share_with(pid_t peer)
|
|
{
|
|
int ret = share_buffer_with(shared_buffer_id(), peer);
|
|
if (ret < 0) {
|
|
perror("share_buffer_with");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool SharedBuffer::share_globally()
|
|
{
|
|
int ret = share_buffer_globally(shared_buffer_id());
|
|
if (ret < 0) {
|
|
perror("share_buffer_globally");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
RefPtr<SharedBuffer> SharedBuffer::create_from_shared_buffer_id(int shared_buffer_id)
|
|
{
|
|
void* data = get_shared_buffer(shared_buffer_id);
|
|
if (data == (void*)-1) {
|
|
perror("get_shared_buffer");
|
|
return nullptr;
|
|
}
|
|
int size = get_shared_buffer_size(shared_buffer_id);
|
|
if (size < 0) {
|
|
perror("get_shared_buffer_size");
|
|
return nullptr;
|
|
}
|
|
return adopt(*new SharedBuffer(shared_buffer_id, size, data));
|
|
}
|
|
|
|
SharedBuffer::SharedBuffer(int shared_buffer_id, int size, void* data)
|
|
: m_shared_buffer_id(shared_buffer_id)
|
|
, m_size(size)
|
|
, m_data(data)
|
|
{
|
|
}
|
|
|
|
SharedBuffer::~SharedBuffer()
|
|
{
|
|
if (m_shared_buffer_id >= 0) {
|
|
int rc = release_shared_buffer(m_shared_buffer_id);
|
|
if (rc < 0) {
|
|
perror("release_shared_buffer");
|
|
}
|
|
}
|
|
}
|
|
|
|
void SharedBuffer::seal()
|
|
{
|
|
int rc = seal_shared_buffer(m_shared_buffer_id);
|
|
if (rc < 0) {
|
|
perror("seal_shared_buffer");
|
|
ASSERT_NOT_REACHED();
|
|
}
|
|
}
|
|
|
|
void SharedBuffer::set_volatile()
|
|
{
|
|
u32 rc = syscall(SC_set_shared_buffer_volatile, m_shared_buffer_id, true);
|
|
ASSERT(rc == 0);
|
|
}
|
|
|
|
bool SharedBuffer::set_nonvolatile()
|
|
{
|
|
u32 rc = syscall(SC_set_shared_buffer_volatile, m_shared_buffer_id, false);
|
|
if (rc == 0)
|
|
return true;
|
|
if (rc == 1)
|
|
return false;
|
|
ASSERT_NOT_REACHED();
|
|
}
|