]> git.saurik.com Git - wxWidgets.git/blame - include/wx/region.h
Make an image block beore writing it, if there's no data in the block
[wxWidgets.git] / include / wx / region.h
CommitLineData
99d80019
JS
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
34138703
JS
12#ifndef _WX_REGION_H_BASE_
13#define _WX_REGION_H_BASE_
c801d85f 14
c87beb79
VZ
15#include "wx/colour.h"
16
4055ed82 17#if defined(__WXPALMOS__)
c87beb79 18 #include "wx/palmos/region.h"
ffecfa5a 19#elif defined(__WXMSW__)
c87beb79 20 #include "wx/msw/region.h"
1be7a35c 21#elif defined(__WXGTK20__)
c87beb79 22 #include "wx/gtk/region.h"
1be7a35c
MR
23#elif defined(__WXGTK__)
24 #include "wx/gtk1/region.h"
c87beb79
VZ
25#elif defined(__WXMOTIF__) || defined(__WXX11__)
26 #include "wx/x11/region.h"
d32cad2c 27#elif defined(__WXMGL__)
c87beb79 28 #include "wx/mgl/region.h"
34138703 29#elif defined(__WXMAC__)
c87beb79 30 #include "wx/mac/region.h"
e64df9bc 31#elif defined(__WXCOCOA__)
c87beb79 32 #include "wx/cocoa/region.h"
1777b9bb 33#elif defined(__WXPM__)
c87beb79 34 #include "wx/os2/region.h"
c801d85f
KB
35#endif
36
37#endif
34138703 38 // _WX_REGION_H_BASE_