]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/region.h
Fixed ReadLine missing last character from text files with no final newline.
[wxWidgets.git] / include / wx / region.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/region.h
3// Purpose: Base header for wxRegion
4// Author: Julian Smart
5// Modified by:
6// Created:
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows Licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_REGION_H_BASE_
13#define _WX_REGION_H_BASE_
14
15#include "wx/colour.h"
16
17enum wxRegionContain
18{
19 wxOutRegion = 0,
20 wxPartRegion = 1,
21 wxInRegion = 2
22};
23
24#if defined(__WXPALMOS__)
25 #include "wx/palmos/region.h"
26#elif defined(__WXMSW__)
27 #include "wx/msw/region.h"
28#elif defined(__WXGTK20__)
29 #include "wx/gtk/region.h"
30#elif defined(__WXGTK__)
31 #include "wx/gtk1/region.h"
32#elif defined(__WXMOTIF__) || defined(__WXX11__)
33 #include "wx/x11/region.h"
34#elif defined(__WXMGL__)
35 #include "wx/mgl/region.h"
36#elif defined(__WXDFB__)
37 #include "wx/dfb/region.h"
38#elif defined(__WXMAC__)
39 #include "wx/mac/region.h"
40#elif defined(__WXCOCOA__)
41 #include "wx/cocoa/region.h"
42#elif defined(__WXPM__)
43 #include "wx/os2/region.h"
44#endif
45
46#endif
47 // _WX_REGION_H_BASE_