1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 15:37:47 +00:00

WindowServer: Move classes into WindowServer namespace

Also remove the leading WS from names and filenames.
This commit is contained in:
Andreas Kling 2020-02-06 20:03:37 +01:00
parent 5f4d81ff55
commit 73110e25a9
36 changed files with 1238 additions and 1119 deletions

View file

@ -24,13 +24,13 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "Compositor.h"
#include "EventLoop.h"
#include "Screen.h"
#include "WindowManager.h"
#include <LibCore/ConfigFile.h>
#include <LibGfx/Palette.h>
#include <LibGfx/SystemTheme.h>
#include <WindowServer/WSCompositor.h>
#include <WindowServer/WSEventLoop.h>
#include <WindowServer/WSScreen.h>
#include <WindowServer/WSWindowManager.h>
#include <signal.h>
#include <stdio.h>
@ -87,18 +87,18 @@ int main(int, char**)
Gfx::set_system_theme(*theme);
auto palette = Gfx::PaletteImpl::create_with_shared_buffer(*theme);
WSEventLoop loop;
WindowServer::EventLoop loop;
if (pledge("stdio video thread shared_buffer accept rpath wpath cpath proc exec", nullptr) < 0) {
perror("pledge");
return 1;
}
WSScreen screen(wm_config->read_num_entry("Screen", "Width", 1024),
WindowServer::Screen screen(wm_config->read_num_entry("Screen", "Width", 1024),
wm_config->read_num_entry("Screen", "Height", 768));
WSCompositor::the();
auto wm = WSWindowManager::construct(*palette);
auto mm = WSMenuManager::construct();
WindowServer::Compositor::the();
auto wm = WindowServer::WindowManager::construct(*palette);
auto mm = WindowServer::MenuManager::construct();
if (unveil("/tmp", "") < 0) {
perror("unveil");