2019-06-07 12:47:19 +03:00
|
|
|
#include <LibCore/CConfigFile.h>
|
2019-12-24 22:57:54 +03:00
|
|
|
#include <LibDraw/Palette.h>
|
2019-12-23 22:24:26 +03:00
|
|
|
#include <LibDraw/SystemTheme.h>
|
2019-06-07 12:47:19 +03:00
|
|
|
#include <WindowServer/WSCompositor.h>
|
|
|
|
#include <WindowServer/WSEventLoop.h>
|
2019-01-18 07:41:15 +03:00
|
|
|
#include <WindowServer/WSScreen.h>
|
2019-01-16 18:03:50 +03:00
|
|
|
#include <WindowServer/WSWindowManager.h>
|
2019-03-01 18:16:23 +03:00
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
2019-01-16 18:03:50 +03:00
|
|
|
|
2019-02-17 02:13:47 +03:00
|
|
|
int main(int, char**)
|
2019-01-16 18:03:50 +03:00
|
|
|
{
|
2020-01-17 13:12:06 +03:00
|
|
|
if (pledge("stdio video thread shared_buffer accept rpath wpath cpath unix proc exec fattr", nullptr) < 0) {
|
2020-01-11 23:25:03 +03:00
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-03-01 18:16:23 +03:00
|
|
|
struct sigaction act;
|
|
|
|
memset(&act, 0, sizeof(act));
|
|
|
|
act.sa_flags = SA_NOCLDWAIT;
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
int rc = sigaction(SIGCHLD, &act, nullptr);
|
|
|
|
if (rc < 0) {
|
|
|
|
perror("sigaction");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-12-23 22:24:26 +03:00
|
|
|
auto wm_config = CConfigFile::get_for_app("WindowManager");
|
|
|
|
auto theme_name = wm_config->read_entry("Theme", "Name", "Default");
|
|
|
|
|
|
|
|
auto theme = load_system_theme(String::format("/res/themes/%s.ini", theme_name.characters()));
|
|
|
|
ASSERT(theme);
|
|
|
|
set_system_theme(*theme);
|
2019-12-29 02:47:49 +03:00
|
|
|
auto palette = PaletteImpl::create_with_shared_buffer(*theme);
|
2019-12-23 22:24:26 +03:00
|
|
|
|
2019-04-14 06:23:37 +03:00
|
|
|
WSEventLoop loop;
|
2019-05-25 19:26:23 +03:00
|
|
|
|
2020-01-17 13:12:06 +03:00
|
|
|
if (pledge("stdio video thread shared_buffer accept rpath wpath cpath proc exec", nullptr) < 0) {
|
2020-01-11 23:25:03 +03:00
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-05-25 19:26:23 +03:00
|
|
|
WSScreen screen(wm_config->read_num_entry("Screen", "Width", 1024),
|
2019-06-07 12:47:19 +03:00
|
|
|
wm_config->read_num_entry("Screen", "Height", 768));
|
2019-05-24 20:32:46 +03:00
|
|
|
WSCompositor::the();
|
2019-12-24 22:57:54 +03:00
|
|
|
auto wm = WSWindowManager::construct(*palette);
|
2020-01-08 15:19:31 +03:00
|
|
|
auto mm = WSMenuManager::construct();
|
2019-01-16 18:03:50 +03:00
|
|
|
|
|
|
|
dbgprintf("Entering WindowServer main loop.\n");
|
2019-07-17 12:09:09 +03:00
|
|
|
loop.exec();
|
2019-01-16 18:03:50 +03:00
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|