1// LAF OS Library
2// Copyright (c) 2019-2021 Igara Studio S.A.
3// Copyright (c) 2012-2017 David Capello
4//
5// This file is released under the terms of the MIT license.
6// Read LICENSE.txt for more information.
7
8#ifndef OS_H_INCLUDED
9#define OS_H_INCLUDED
10#pragma once
11
12#include "gfx/point.h"
13#include "gfx/rect.h"
14#include "gfx/region.h"
15#include "gfx/size.h"
16#include "os/capabilities.h"
17#include "os/draw_text.h"
18#include "os/error.h"
19#include "os/event.h"
20#include "os/event_queue.h"
21#include "os/font.h"
22#include "os/font_manager.h"
23#include "os/font_style.h"
24#include "os/font_style_set.h"
25#include "os/keys.h"
26#include "os/logger.h"
27#include "os/menus.h"
28#include "os/native_cursor.h"
29#include "os/native_dialogs.h"
30#include "os/paint.h"
31#include "os/pointer_type.h"
32#include "os/ref.h"
33#include "os/screen.h"
34#include "os/shortcut.h"
35#include "os/surface.h"
36#include "os/surface_format.h"
37#include "os/system.h"
38#include "os/typeface.h"
39#include "os/window.h"
40#include "os/window_spec.h"
41
42#endif
43